Code

Super duper mega (fun!) commit: replaced encoding=utf-8 with fileencoding=utf-8 in...
[inkscape.git] / src / ui / dialog / transformation.h
index e64353f5a1e6bde0e5fb904b8177703a7dbef503..cf6d7244710f87846a018eb31f05c01a40697e76 100644 (file)
@@ -1,11 +1,10 @@
-/**
- * \brief Object Transformation dialog
- *
- * Author:
+/** @file
+ * @brief Transform dialog
+ */
+/* Author:
  *   Bryce W. Harrington <bryce@bryceharrington.org>
  *
  * Copyright (C) 2004, 2005 Authors
- *
  * Released under GNU GPL.  Read the file 'COPYING' for more information.
  */
 
 
 
 #include "ui/widget/panel.h"
-#include "application/application.h"
 #include "ui/widget/notebook-page.h"
 #include "ui/widget/scalar-unit.h"
 #include "ui/widget/imageicon.h"
 #include "ui/widget/button.h"
 
 
-using namespace Inkscape::UI::Widget;
-
 
 
 namespace Inkscape {
@@ -106,36 +102,36 @@ protected:
 
     Gtk::Notebook     _notebook;
 
-    NotebookPage      _page_move;
-    NotebookPage      _page_scale;
-    NotebookPage      _page_rotate;
-    NotebookPage      _page_skew;
-    NotebookPage      _page_transform;
-
-    UnitMenu          _units_move;
-    UnitMenu          _units_scale;
-    UnitMenu          _units_rotate;
-    UnitMenu          _units_skew;
-
-    ScalarUnit        _scalar_move_horizontal;
-    ScalarUnit        _scalar_move_vertical;
-    ScalarUnit        _scalar_scale_horizontal;
-    ScalarUnit        _scalar_scale_vertical;
-    ScalarUnit        _scalar_rotate;
-    ScalarUnit        _scalar_skew_horizontal;
-    ScalarUnit        _scalar_skew_vertical;
-
-    Scalar            _scalar_transform_a;
-    Scalar            _scalar_transform_b;
-    Scalar            _scalar_transform_c;
-    Scalar            _scalar_transform_d;
-    Scalar            _scalar_transform_e;
-    Scalar            _scalar_transform_f;
-
-    CheckButton  _check_move_relative;
-    CheckButton  _check_scale_proportional;
-    CheckButton  _check_apply_separately;
-    CheckButton  _check_replace_matrix;
+    UI::Widget::NotebookPage      _page_move;
+    UI::Widget::NotebookPage      _page_scale;
+    UI::Widget::NotebookPage      _page_rotate;
+    UI::Widget::NotebookPage      _page_skew;
+    UI::Widget::NotebookPage      _page_transform;
+
+    UI::Widget::UnitMenu          _units_move;
+    UI::Widget::UnitMenu          _units_scale;
+    UI::Widget::UnitMenu          _units_rotate;
+    UI::Widget::UnitMenu          _units_skew;
+
+    UI::Widget::ScalarUnit        _scalar_move_horizontal;
+    UI::Widget::ScalarUnit        _scalar_move_vertical;
+    UI::Widget::ScalarUnit        _scalar_scale_horizontal;
+    UI::Widget::ScalarUnit        _scalar_scale_vertical;
+    UI::Widget::ScalarUnit        _scalar_rotate;
+    UI::Widget::ScalarUnit        _scalar_skew_horizontal;
+    UI::Widget::ScalarUnit        _scalar_skew_vertical;
+
+    UI::Widget::Scalar            _scalar_transform_a;
+    UI::Widget::Scalar            _scalar_transform_b;
+    UI::Widget::Scalar            _scalar_transform_c;
+    UI::Widget::Scalar            _scalar_transform_d;
+    UI::Widget::Scalar            _scalar_transform_e;
+    UI::Widget::Scalar            _scalar_transform_f;
+
+    UI::Widget::CheckButton  _check_move_relative;
+    UI::Widget::CheckButton  _check_scale_proportional;
+    UI::Widget::CheckButton  _check_apply_separately;
+    UI::Widget::CheckButton  _check_replace_matrix;
 
     /**
      * Layout the GUI components, and prepare for use
@@ -148,12 +144,6 @@ protected:
 
     virtual void _apply();
     void presentPage(PageType page);
-
-    void onSelectionChanged(Inkscape::NSApplication::Application *inkscape,
-                            Inkscape::Selection *selection);
-    void onSelectionModified(Inkscape::NSApplication::Application *inkscape,
-                             Inkscape::Selection *selection,
-                             int unsigned flags);
     void onSwitchPage(GtkNotebookPage *page,
                     guint pagenum);
 
@@ -235,4 +225,4 @@ private:
   fill-column:99
   End:
 */
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :