Code

remove unnecessary cast + cosmetic changes.
authorjohanengelen <johanengelen@users.sourceforge.net>
Wed, 16 Jan 2008 20:28:24 +0000 (20:28 +0000)
committerjohanengelen <johanengelen@users.sourceforge.net>
Wed, 16 Jan 2008 20:28:24 +0000 (20:28 +0000)
src/ui/widget/registered-widget.cpp
src/ui/widget/registered-widget.h

index f471dc40d35d1d5f3caa5ec48be3861d3eed2965..4d0e05e98058b97ed73744b2258dc8f1a533b312 100644 (file)
@@ -41,8 +41,6 @@ namespace Inkscape {
 namespace UI {
 namespace Widget {
 
-//===================================================
-
 void
 RegisteredWdg::write_to_xml(const char * svgstr)
 {
@@ -70,7 +68,9 @@ RegisteredWdg::write_to_xml(const char * svgstr)
 }
 
 
-//====================================================
+/*#########################################
+ * Registered CHECKBUTTON
+ */
 
 RegisteredCheckButton::~RegisteredCheckButton()
 {
@@ -125,6 +125,11 @@ RegisteredCheckButton::on_toggled()
     _wr->setUpdating (false);
 }
 
+
+/*#########################################
+ * Registered UNITMENU
+ */
+
 RegisteredUnitMenu::RegisteredUnitMenu()
 : _label(0), _sel(0)
 {
@@ -173,6 +178,10 @@ RegisteredUnitMenu::on_changed()
 }
 
 
+/*#########################################
+ * Registered SCALARUNIT
+ */
+
 RegisteredScalarUnit::RegisteredScalarUnit()
 : _widget(0), _um(0)
 {
@@ -358,6 +367,11 @@ RegisteredColorPicker::on_changed (guint32 rgba)
     _wr->setUpdating (false);
 }
 
+
+/*#########################################
+ * Registered SUFFIXEDINTEGER
+ */
+
 RegisteredSuffixedInteger::RegisteredSuffixedInteger()
 : _label(0),
   setProgrammatically(false),
@@ -422,6 +436,11 @@ RegisteredSuffixedInteger::on_value_changed()
     _wr->setUpdating (false);
 }
 
+
+/*#########################################
+ * Registered RADIOBUTTONPAIR
+ */
+
 RegisteredRadioButtonPair::RegisteredRadioButtonPair()
 : _hbox(0),
    setProgrammatically(false)
@@ -487,6 +506,7 @@ RegisteredRadioButtonPair::on_value_changed()
     _wr->setUpdating (false);
 }
 
+
 /*#########################################
  * Registered POINT
  */
@@ -497,8 +517,8 @@ RegisteredPoint::~RegisteredPoint()
     _value_y_changed_connection.disconnect();
 }
 
-RegisteredPoint::RegisteredPoint ( const Glib::ustring& label, const Glib::ustring& tip, 
-                        const Glib::ustring& key, Registry& wr, Inkscape::XML::Node* repr_in, 
+RegisteredPoint::RegisteredPoint ( const Glib::ustring& label, const Glib::ustring& tip,
+                        const Glib::ustring& key, Registry& wr, Inkscape::XML::Node* repr_in,
                         SPDocument* doc_in )
     : RegisteredWidget<Point> (label, tip)
 {
@@ -532,6 +552,7 @@ RegisteredPoint::on_value_changed()
     _wr->setUpdating (false);
 }
 
+
 /*#########################################
  * Registered RANDOM
  */
@@ -542,7 +563,7 @@ RegisteredRandom::~RegisteredRandom()
     _reseeded_connection.disconnect();
 }
 
-RegisteredRandom::RegisteredRandom ( const Glib::ustring& label, const Glib::ustring& tip, 
+RegisteredRandom::RegisteredRandom ( const Glib::ustring& label, const Glib::ustring& tip,
                          const Glib::ustring& key, Registry& wr, Inkscape::XML::Node* repr_in,
                          SPDocument * doc_in )
     : RegisteredWidget<Random> (label, tip)
@@ -559,7 +580,7 @@ RegisteredRandom::RegisteredRandom ( const Glib::ustring& label, const Glib::ust
 void
 RegisteredRandom::setValue (double val, long startseed)
 {
-    static_cast<Scalar*>(this)->setValue (val);
+    Scalar::setValue (val);
     setStartSeed(startseed);
 }
 
index 900eaafbb7b0ddd0e71c443d9698282e47c6d8da..3d99aec5b42a689714453f6361f5331fd611848a 100644 (file)
@@ -205,8 +205,8 @@ public:
                 Registry& wr,
                 Inkscape::XML::Node* repr_in,
                 SPDocument *doc_in);
-    inline void init ( const Glib::ustring& label, 
-                       const Glib::ustring& key, 
+    inline void init ( const Glib::ustring& label,
+                       const Glib::ustring& key,
                        Registry& wr)
         { init(label, key, wr, NULL, NULL); };
 
@@ -266,19 +266,19 @@ class RegisteredColorPicker : public RegisteredWdg {
 public:
     RegisteredColorPicker();
     ~RegisteredColorPicker();
-    void init (const Glib::ustring& label, 
-            const Glib::ustring& title, 
-            const Glib::ustring& tip, 
-            const Glib::ustring& ckey, 
+    void init (const Glib::ustring& label,
+            const Glib::ustring& title,
+            const Glib::ustring& tip,
+            const Glib::ustring& ckey,
             const Glib::ustring& akey,
             Registry& wr,
             Inkscape::XML::Node* repr_in,
             SPDocument *doc_in);
-    inline void init ( const Glib::ustring& label, 
-                       const Glib::ustring& title, 
-                       const Glib::ustring& tip, 
-                       const Glib::ustring& ckey, 
-                       const Glib::ustring& akey, 
+    inline void init ( const Glib::ustring& label,
+                       const Glib::ustring& title,
+                       const Glib::ustring& tip,
+                       const Glib::ustring& ckey,
+                       const Glib::ustring& akey,
                        Registry& wr)
         { init(label, title, tip, ckey, akey, wr, NULL, NULL); };
 
@@ -298,22 +298,22 @@ class RegisteredSuffixedInteger : public RegisteredWdg {
 public:
     RegisteredSuffixedInteger();
     ~RegisteredSuffixedInteger();
-    void init (const Glib::ustring& label1, 
-               const Glib::ustring& label2, 
+    void init (const Glib::ustring& label1,
+               const Glib::ustring& label2,
                const Glib::ustring& key,
                Registry& wr,
                Inkscape::XML::Node* repr_in,
                SPDocument *doc_in);
-    inline void init ( const Glib::ustring& label1, 
-                       const Glib::ustring& label2, 
-                       const Glib::ustring& key, 
+    inline void init ( const Glib::ustring& label1,
+                       const Glib::ustring& label2,
+                       const Glib::ustring& key,
                        Registry& wr)
         { init(label1, label2, key, wr, NULL, NULL); };
 
     void setValue (int);
     Gtk::Label *_label;
     Gtk::HBox _hbox;
-    bool setProgrammatically; // true if the value was set by setValue, not changed by the user; 
+    bool setProgrammatically; // true if the value was set by setValue, not changed by the user;
                                 // if a callback checks it, it must reset it back to false
 
 protected:
@@ -328,28 +328,28 @@ class RegisteredRadioButtonPair : public RegisteredWdg {
 public:
     RegisteredRadioButtonPair();
     ~RegisteredRadioButtonPair();
-    void init (const Glib::ustring& label, 
-               const Glib::ustring& label1, 
-               const Glib::ustring& label2, 
-               const Glib::ustring& tip1, 
-               const Glib::ustring& tip2, 
+    void init (const Glib::ustring& label,
+               const Glib::ustring& label1,
+               const Glib::ustring& label2,
+               const Glib::ustring& tip1,
+               const Glib::ustring& tip2,
                const Glib::ustring& key,
                Registry& wr,
                Inkscape::XML::Node* repr_in,
                SPDocument *doc_in);
-    inline void init ( const Glib::ustring& label, 
-                       const Glib::ustring& label1, 
-                       const Glib::ustring& label2, 
-                       const Glib::ustring& tip1, 
-                       const Glib::ustring& tip2, 
-                       const Glib::ustring& key, 
+    inline void init ( const Glib::ustring& label,
+                       const Glib::ustring& label1,
+                       const Glib::ustring& label2,
+                       const Glib::ustring& tip1,
+                       const Glib::ustring& tip2,
+                       const Glib::ustring& key,
                        Registry& wr)
         { init(label, label1, label2, tip1, tip2, key, wr, NULL, NULL); };
 
     void setValue (bool second);
     Gtk::HBox *_hbox;
 
-    bool setProgrammatically; // true if the value was set by setValue, not changed by the user; 
+    bool setProgrammatically; // true if the value was set by setValue, not changed by the user;
                                     // if a callback checks it, it must reset it back to false
 protected:
     Gtk::RadioButton *_rb1, *_rb2;
@@ -361,9 +361,9 @@ protected:
 class RegisteredPoint : public RegisteredWidget<Point> {
 public:
     virtual ~RegisteredPoint();
-    RegisteredPoint ( const Glib::ustring& label, 
-                      const Glib::ustring& tip, 
-                      const Glib::ustring& key, 
+    RegisteredPoint ( const Glib::ustring& label,
+                      const Glib::ustring& tip,
+                      const Glib::ustring& key,
                       Registry& wr,
                       Inkscape::XML::Node* repr_in = NULL,
                       SPDocument *doc_in = NULL );
@@ -378,9 +378,9 @@ protected:
 class RegisteredRandom : public RegisteredWidget<Random> {
 public:
     virtual ~RegisteredRandom();
-    RegisteredRandom ( const Glib::ustring& label, 
-                       const Glib::ustring& tip, 
-                       const Glib::ustring& key, 
+    RegisteredRandom ( const Glib::ustring& label,
+                       const Glib::ustring& tip,
+                       const Glib::ustring& key,
                        Registry& wr,
                        Inkscape::XML::Node* repr_in = NULL,
                        SPDocument *doc_in = NULL);