Lines Matching defs:Transformation
46 static void on_selection_changed(Inkscape::Selection *selection, Transformation *daad)
49 daad->updateSelection((Inkscape::UI::Dialog::Transformation::PageType)page, selection);
52 static void on_selection_modified(Inkscape::Selection *selection, Transformation *daad)
55 daad->updateSelection((Inkscape::UI::Dialog::Transformation::PageType)page, selection);
62 Transformation::Transformation()
84 _scalar_transform_a ("_A:", _("Transformation matrix element A")),
85 _scalar_transform_b ("_B:", _("Transformation matrix element B")),
86 _scalar_transform_c ("_C:", _("Transformation matrix element C")),
87 _scalar_transform_d ("_D:", _("Transformation matrix element D")),
88 _scalar_transform_e ("_E:", _("Transformation matrix element E")),
89 _scalar_transform_f ("_F:", _("Transformation matrix element F")),
122 _notebook.signal_switch_page().connect(sigc::mem_fun(*this, &Transformation::onSwitchPage));
128 _check_apply_separately.signal_toggled().connect(sigc::mem_fun(*this, &Transformation::onApplySeparatelyToggled));
145 resetButton->signal_clicked().connect(sigc::mem_fun(*this, &Transformation::onClear));
158 _desktopChangeConn = _deskTrack.connectDesktopChanged( sigc::mem_fun(*this, &Transformation::setDesktop) );
164 Transformation::~Transformation()
172 void Transformation::setTargetDesktop(SPDesktop *desktop)
183 void Transformation::presentPage(Transformation::PageType page)
198 void Transformation::layoutPageMove()
231 .connect(sigc::mem_fun(*this, &Transformation::onMoveValueChanged));
242 .connect(sigc::mem_fun(*this, &Transformation::onMoveValueChanged));
254 .connect(sigc::mem_fun(*this, &Transformation::onMoveRelativeToggled));
257 void Transformation::layoutPageScale()
284 .connect(sigc::mem_fun(*this, &Transformation::onScaleXValueChanged));
298 .connect(sigc::mem_fun(*this, &Transformation::onScaleYValueChanged));
309 .connect(sigc::mem_fun(*this, &Transformation::onScaleProportionalToggled));
314 void Transformation::layoutPageRotate()
366 .connect(sigc::mem_fun(*this, &Transformation::onRotateValueChanged));
368 _counterclockwise_rotate.signal_clicked().connect(sigc::mem_fun(*this, &Transformation::onRotateCounterclockwiseClicked));
369 _clockwise_rotate.signal_clicked().connect(sigc::mem_fun(*this, &Transformation::onRotateClockwiseClicked));
374 void Transformation::layoutPageSkew()
396 .connect(sigc::mem_fun(*this, &Transformation::onSkewValueChanged));
410 .connect(sigc::mem_fun(*this, &Transformation::onSkewValueChanged));
417 void Transformation::layoutPageTransform()
433 .connect(sigc::mem_fun(*this, &Transformation::onTransformValueChanged));
449 .connect(sigc::mem_fun(*this, &Transformation::onTransformValueChanged));
465 .connect(sigc::mem_fun(*this, &Transformation::onTransformValueChanged));
482 .connect(sigc::mem_fun(*this, &Transformation::onTransformValueChanged));
499 .connect(sigc::mem_fun(*this, &Transformation::onTransformValueChanged));
516 .connect(sigc::mem_fun(*this, &Transformation::onTransformValueChanged));
528 .connect(sigc::mem_fun(*this, &Transformation::onReplaceMatrixToggled));
536 void Transformation::updateSelection(PageType page, Inkscape::Selection *selection)
572 void Transformation::onSwitchPage(Gtk::Widget * /*page*/, guint pagenum)
574 void Transformation::onSwitchPage(GtkNotebookPage * /*page*/, guint pagenum)
581 void Transformation::updatePageMove(Inkscape::Selection *selection)
603 void Transformation::updatePageScale(Inkscape::Selection *selection)
622 void Transformation::updatePageRotate(Inkscape::Selection *selection)
631 void Transformation::updatePageSkew(Inkscape::Selection *selection)
649 void Transformation::updatePageTransform(Inkscape::Selection *selection)
682 void Transformation::_apply()
717 void Transformation::applyPageMove(Inkscape::Selection *selection)
804 void Transformation::applyPageScale(Inkscape::Selection *selection)
867 void Transformation::applyPageRotate(Inkscape::Selection *selection)
893 void Transformation::applyPageSkew(Inkscape::Selection *selection)
983 void Transformation::applyPageTransform(Inkscape::Selection *selection)
1021 void Transformation::onMoveValueChanged()
1026 void Transformation::onMoveRelativeToggled()
1057 void Transformation::onScaleXValueChanged()
1076 void Transformation::onScaleYValueChanged()
1095 void Transformation::onRotateValueChanged()
1100 void Transformation::onRotateCounterclockwiseClicked()
1107 void Transformation::onRotateClockwiseClicked()
1114 void Transformation::onSkewValueChanged()
1119 void Transformation::onTransformValueChanged()
1137 void Transformation::onReplaceMatrixToggled()
1169 void Transformation::onScaleProportionalToggled()
1178 void Transformation::onClear()
1223 void Transformation::onApplySeparatelyToggled()