summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f60314b)
raw | patch | inline | side by side (parent: f60314b)
author | rwst <rwst@users.sourceforge.net> | |
Tue, 21 Feb 2006 10:45:55 +0000 (10:45 +0000) | ||
committer | rwst <rwst@users.sourceforge.net> | |
Tue, 21 Feb 2006 10:45:55 +0000 (10:45 +0000) |
src/ui/dialog/transformation.cpp | patch | blob | history | |
src/ui/dialog/transformation.h | patch | blob | history |
index 9182209f516658a062589c24102e0773fec644d5..6056e4a2e3043853692d50402f0513d3726ec4dc 100644 (file)
########################################################################*/
void
-Transformation::present(Transformation::PageType page)
+Transformation::presentPage(Transformation::PageType page)
{
_notebook.set_current_page(page);
Gtk::Dialog::show();
index 68faeb45ac8c55e0ad59ebf45ebbec73714fbb4f..0c7833c9e72703f4a7d75a0e9aba381989dd5a87 100644 (file)
* Show the Move panel
*/
void setPageMove()
- { present(PAGE_MOVE); }
+ { presentPage(PAGE_MOVE); }
/**
* Show the Scale panel
*/
void setPageScale()
- { present(PAGE_SCALE); }
+ { presentPage(PAGE_SCALE); }
/**
* Show the Rotate panel
*/
void setPageRotate()
- { present(PAGE_ROTATE); }
+ { presentPage(PAGE_ROTATE); }
/**
* Show the Skew panel
*/
void setPageSkew()
- { present(PAGE_SKEW); }
+ { presentPage(PAGE_SKEW); }
/**
* Show the Transform panel
*/
void setPageTransform()
- { present(PAGE_TRANSFORM); }
+ { presentPage(PAGE_TRANSFORM); }
int getCurrentPage()
void layoutPageTransform();
virtual void _apply();
- void present(PageType page);
+ void presentPage(PageType page);
void onSelectionChanged(Inkscape::NSApplication::Application *inkscape,
Inkscape::Selection *selection);