/* * Author: * * Copyright (C) 2012 Author * * Released under GNU GPL. Read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_SPIN_SCALE_H #define INKSCAPE_UI_WIDGET_SPIN_SCALE_H #include #include #include #include #include "spinbutton.h" #include "attr-widget.h" namespace Inkscape { namespace UI { namespace Widget { /** * Wrap the gimpspinscale class * A combo widget with label, scale slider, spinbutton and adjustment */ class SpinScale : public Gtk::HBox, public AttrWidget { public: SpinScale(const char* label, double value, double lower, double upper, double step_inc, double climb_rate, int digits, const SPAttributeEnum a = SP_ATTR_INVALID, const char* tip_text = NULL); SpinScale(const char* label, #if WITH_GTKMM_3_0 Glib::RefPtr adj, #else Gtk::Adjustment *adj, #endif int digits, const SPAttributeEnum a = SP_ATTR_INVALID, const char* tip_text = NULL); virtual Glib::ustring get_as_attribute() const; virtual void set_from_attribute(SPObject*); // Shortcuts to _adjustment Glib::SignalProxy0 signal_value_changed(); double get_value() const; void set_value(const double); void set_focuswidget(GtkWidget *widget); void set_appearance(const gchar* appearance); #if WITH_GTKMM_3_0 const Glib::RefPtr get_adjustment() const; Glib::RefPtr get_adjustment(); #else const Gtk::Adjustment *get_adjustment() const; Gtk::Adjustment *get_adjustment(); #endif private: #if WITH_GTKMM_3_0 Glib::RefPtr _adjustment; #else Gtk::Adjustment *_adjustment; #endif GtkWidget *_spinscale; }; /** * Contains two SpinScales for controlling number-opt-number attributes. * * @see SpinScale */ class DualSpinScale : public Gtk::HBox, public AttrWidget { public: DualSpinScale(const char* label1, const char* label2, double value, double lower, double upper, double step_inc, double climb_rate, int digits, const SPAttributeEnum, char* tip_text1, char* tip_text2); virtual Glib::ustring get_as_attribute() const; virtual void set_from_attribute(SPObject*); sigc::signal& signal_value_changed(); const SpinScale& get_SpinScale1() const; SpinScale& get_SpinScale1(); const SpinScale& get_SpinScale2() const; SpinScale& get_SpinScale2(); //void remove_scale(); private: void link_toggled(); void update_linked(); sigc::signal _signal_value_changed; SpinScale _s1, _s2; Gtk::ToggleButton _link; }; } // namespace Widget } // namespace UI } // namespace Inkscape #endif // INKSCAPE_UI_WIDGET_SPIN_SCALE_H /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=c++:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :