diff options
Diffstat (limited to 'src/live_effects/effect.h')
| -rw-r--r-- | src/live_effects/effect.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/live_effects/effect.h b/src/live_effects/effect.h index de237b8bb..f3b315c0f 100644 --- a/src/live_effects/effect.h +++ b/src/live_effects/effect.h @@ -8,12 +8,13 @@ * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ -#include <glibmm/ustring.h> -#include <2geom/forward.h> +#include "effect-enum.h" +#include "parameter/bool.h" #include "ui/widget/registry.h" +#include <2geom/forward.h> +#include <glibmm/ustring.h> +#include <gtkmm/eventbox.h> #include <gtkmm/expander.h> -#include "parameter/bool.h" -#include "effect-enum.h" #define LPE_CONVERSION_TOLERANCE 0.01 // FIXME: find good solution for this. @@ -185,8 +186,10 @@ public: private: void onDefaultsExpanderChanged(Gtk::Expander * expander); - void setDefaultParam(Glib::ustring pref_path, Glib::ustring tooltip, Parameter *param, Gtk::Label *parameter_label, Gtk::Button *set , Gtk::Button *unset); - void unsetDefaultParam(Glib::ustring pref_path, Glib::ustring tooltip, Parameter *param, Gtk::Label *parameter_label, Gtk::Button *set , Gtk::Button *unset); + void setDefaultParam(Glib::ustring pref_path, Glib::ustring tooltip, Parameter *param, Gtk::Image *info, + Gtk::Button *set, Gtk::Button *unset); + void unsetDefaultParam(Glib::ustring pref_path, Glib::ustring tooltip, Parameter *param, Gtk::Image *info, + Gtk::Button *set, Gtk::Button *unset); bool provides_own_flash_paths; // if true, the standard flash path is suppressed bool is_ready; |
