summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/transformation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/dialog/transformation.h')
-rw-r--r--src/ui/dialog/transformation.h239
1 files changed, 239 insertions, 0 deletions
diff --git a/src/ui/dialog/transformation.h b/src/ui/dialog/transformation.h
new file mode 100644
index 000000000..68faeb45a
--- /dev/null
+++ b/src/ui/dialog/transformation.h
@@ -0,0 +1,239 @@
+/**
+ * \brief Object Transformation dialog
+ *
+ * Author:
+ * Bryce W. Harrington <bryce@bryceharrington.org>
+ *
+ * Copyright (C) 2004, 2005 Authors
+ *
+ * Released under GNU GPL. Read the file 'COPYING' for more information.
+ */
+
+#ifndef INKSCAPE_UI_DIALOG_TRANSFORMATION_H
+#define INKSCAPE_UI_DIALOG_TRANSFORMATION_H
+
+
+
+#include <gtkmm/notebook.h>
+#include <glibmm/i18n.h>
+
+
+
+#include "dialog.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 {
+namespace UI {
+namespace Dialog {
+
+
+
+
+class Transformation : public Dialog
+{
+
+public:
+
+ /**
+ * Create a new transform
+ */
+ Transformation();
+
+ /**
+ * Cleanup
+ */
+ virtual ~Transformation();
+
+
+ /**
+ * Factory method. Create an instance of this class/interface
+ */
+ static Transformation *create()
+ { return new Transformation(); }
+
+
+ /**
+ * Show the Move panel
+ */
+ void setPageMove()
+ { present(PAGE_MOVE); }
+
+
+ /**
+ * Show the Scale panel
+ */
+ void setPageScale()
+ { present(PAGE_SCALE); }
+
+
+ /**
+ * Show the Rotate panel
+ */
+ void setPageRotate()
+ { present(PAGE_ROTATE); }
+
+ /**
+ * Show the Skew panel
+ */
+ void setPageSkew()
+ { present(PAGE_SKEW); }
+
+ /**
+ * Show the Transform panel
+ */
+ void setPageTransform()
+ { present(PAGE_TRANSFORM); }
+
+
+ int getCurrentPage()
+ { return _notebook.get_current_page(); }
+
+ typedef enum {
+ PAGE_MOVE, PAGE_SCALE, PAGE_ROTATE, PAGE_SKEW, PAGE_TRANSFORM, PAGE_QTY
+ } PageType;
+
+ void updateSelection(PageType page, Inkscape::Selection *selection);
+
+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;
+
+ /**
+ * Layout the GUI components, and prepare for use
+ */
+ void layoutPageMove();
+ void layoutPageScale();
+ void layoutPageRotate();
+ void layoutPageSkew();
+ void layoutPageTransform();
+
+ virtual void _apply();
+ void present(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);
+
+ /**
+ * Callbacks for when a user changes values on the panels
+ */
+ void onMoveValueChanged();
+ void onMoveRelativeToggled();
+ void onScaleXValueChanged();
+ void onScaleYValueChanged();
+ void onRotateValueChanged();
+ void onSkewValueChanged();
+ void onTransformValueChanged();
+ void onReplaceMatrixToggled();
+ void onScaleProportionalToggled();
+
+ void onClear();
+
+ void onApplySeparatelyToggled();
+
+ /**
+ * Called when the selection is updated, to make
+ * the panel(s) show the new values.
+ * Editor---->dialog
+ */
+ void updatePageMove(Inkscape::Selection *);
+ void updatePageScale(Inkscape::Selection *);
+ void updatePageRotate(Inkscape::Selection *);
+ void updatePageSkew(Inkscape::Selection *);
+ void updatePageTransform(Inkscape::Selection *);
+
+ /**
+ * Called when the Apply button is pushed
+ * Dialog---->editor
+ */
+ void applyPageMove(Inkscape::Selection *);
+ void applyPageScale(Inkscape::Selection *);
+ void applyPageRotate(Inkscape::Selection *);
+ void applyPageSkew(Inkscape::Selection *);
+ void applyPageTransform(Inkscape::Selection *);
+
+private:
+
+ /**
+ * Copy constructor
+ */
+ Transformation(Transformation const &d);
+
+ /**
+ * Assignment operator
+ */
+ Transformation operator=(Transformation const &d);
+
+ Gtk::Button *applyButton;
+ Gtk::Button *resetButton;
+ Gtk::Button *cancelButton;
+};
+
+
+
+
+} // namespace Dialog
+} // namespace UI
+} // namespace Inkscape
+
+
+
+#endif //INKSCAPE_UI_DIALOG_TRANSFORMATION_H
+
+
+
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :