summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 955e17a)
raw | patch | inline | side by side (parent: 955e17a)
author | acspike <acspike@users.sourceforge.net> | |
Tue, 25 Apr 2006 03:05:00 +0000 (03:05 +0000) | ||
committer | acspike <acspike@users.sourceforge.net> | |
Tue, 25 Apr 2006 03:05:00 +0000 (03:05 +0000) |
src/ui/dialog/document-properties.cpp | patch | blob | history | |
src/ui/widget/page-sizer.cpp | patch | blob | history | |
src/ui/widget/page-sizer.h | patch | blob | history |
index 25f8e8af0422712a8df8a0da9bc884b766e8e5ec..c837c71937e46cfa2f77a2fbae1ad828fef560c6 100644 (file)
#include <gtkmm.h>
#include "ui/widget/color-picker.h"
#include "ui/widget/scalar-unit.h"
-#include "ui/widget/button.h"
#include "xml/node-event-vector.h"
#include "helper/units.h"
#include "desktop-handles.h"
#include "desktop.h"
#include "sp-namedview.h"
-#include "helper/action.h"
#include "document-properties.h"
static void on_activate_desktop (Inkscape::Application *, SPDesktop* dt, void*);
static void on_deactivate_desktop (Inkscape::Application *, SPDesktop* dt, void*);
-static void fire_fit_canvas_to_selection_or_drawing();
-
static Inkscape::XML::NodeEventVector const _repr_events = {
NULL, /* child_added */
NULL, /* child_removed */
_rcb_shad.init (_("_Show border shadow"), _("If set, page border shows a shadow on its right and lower side"), "inkscape:showpageshadow", _wr, false);
_rum_deflt.init (_("Default _units:"), "inkscape:document-units", _wr);
- Inkscape::UI::Widget::Button* fit_canv = manage(new Inkscape::UI::Widget::Button(_("Fit canvas to selection"),
- _("Resize the canvas to fit the current selection, or the entire drawing if there is no selection")));
- fit_canv->signal_clicked().connect(sigc::ptr_fun(fire_fit_canvas_to_selection_or_drawing));
-
- // prevent fit_canv from expanding
- Gtk::Alignment *fit_canv_cont = manage(new Gtk::Alignment(1.0,0.5,0.0,0.0));
- fit_canv_cont->add(*fit_canv);
-
Gtk::Label* label_gen = manage (new Gtk::Label);
label_gen->set_markup (_("<b>General</b>"));
Gtk::Label* label_bor = manage (new Gtk::Label);
0, 0,
label_for, 0,
0, &_page_sizer,
- 0, fit_canv_cont,
0, 0,
label_bor, 0,
0, _rcb_canb._button,
_instance->update();
}
-static void
-fire_fit_canvas_to_selection_or_drawing() {
- SPDesktop *dt = SP_ACTIVE_DESKTOP;
- if (!dt) return;
- Verb *verb = Verb::get( SP_VERB_FIT_CANVAS_TO_SELECTION_OR_DRAWING );
- if (verb) {
- SPAction *action = verb->get_action(dt);
- if (action) {
- sp_action_perform(action, NULL);
- }
- }
-}
-
} // namespace Dialog
} // namespace UI
index 31390b676b38342523a8e5b6de4c2bdfd5aafd7f..1f3749bda0e6b2763e2e545dc503b001544f2d0a 100644 (file)
#endif
#include <cmath>
+#include <gtkmm.h>
#include <gtkmm/optionmenu.h>
#include <gtkmm/frame.h>
#include <gtkmm/table.h>
+#include "ui/widget/button.h"
#include "ui/widget/scalar-unit.h"
#include "helper/units.h"
#include "inkscape.h"
+#include "verbs.h"
#include "desktop-handles.h"
#include "document.h"
+#include "desktop.h"
#include "page-sizer.h"
+#include "helper/action.h"
using std::pair;
/* Custom paper frame */
Gtk::Frame *frame = manage (new Gtk::Frame(_("Custom size")));
pack_start (*frame, false, false, 0);
- Gtk::Table *table = manage (new Gtk::Table (4, 2, false));
+ Gtk::Table *table = manage (new Gtk::Table (5, 2, false));
table->set_border_width (4);
table->set_row_spacings (4);
table->set_col_spacings (4);
+
+ Inkscape::UI::Widget::Button* fit_canv = manage(new Inkscape::UI::Widget::Button(_("Fit page to selection"),
+ _("Resize the page to fit the current selection, or the entire drawing if there is no selection")));
+ // prevent fit_canv from expanding
+ Gtk::Alignment *fit_canv_cont = manage(new Gtk::Alignment(1.0,0.5,0.0,0.0));
+ fit_canv_cont->add(*fit_canv);
+
frame->add (*table);
_wr = ®
table->attach (*_rum._sel, 1,2,0,1, Gtk::FILL|Gtk::EXPAND, (Gtk::AttachOptions)0,0,0);
table->attach (*_rusw.getSU(), 0,2,1,2, Gtk::FILL|Gtk::EXPAND, (Gtk::AttachOptions)0,0,0);
table->attach (*_rush.getSU(), 0,2,2,3, Gtk::FILL|Gtk::EXPAND, (Gtk::AttachOptions)0,0,0);
+ table->attach (*fit_canv_cont, 0,2,3,4, Gtk::FILL|Gtk::EXPAND, (Gtk::AttachOptions)0,0,0);
_landscape_connection = _rb_land->signal_toggled().connect (sigc::mem_fun (*this, &PageSizer::on_landscape));
_portrait_connection = _rb_port->signal_toggled().connect (sigc::mem_fun (*this, &PageSizer::on_portrait));
_changedw_connection = _rusw.getSU()->signal_value_changed().connect (sigc::mem_fun (*this, &PageSizer::on_value_changed));
_changedh_connection = _rush.getSU()->signal_value_changed().connect (sigc::mem_fun (*this, &PageSizer::on_value_changed));
+ fit_canv->signal_clicked().connect(sigc::mem_fun(*this, &PageSizer::fire_fit_canvas_to_selection_or_drawing));
show_all_children();
}
return -1;
}
+void
+PageSizer::fire_fit_canvas_to_selection_or_drawing() {
+ SPDesktop *dt = SP_ACTIVE_DESKTOP;
+ if (!dt) return;
+ Verb *verb = Verb::get( SP_VERB_FIT_CANVAS_TO_SELECTION_OR_DRAWING );
+ if (verb) {
+ SPAction *action = verb->get_action(dt);
+ if (action) {
+ sp_action_perform(action, NULL);
+ }
+ }
+}
+
void
PageSizer::on_portrait()
{
index e17628c7618cee532cdb69ffb2d1e55733cbc4a6..d0fdeb8cc24127690a411ca0282b4b016898bd3d 100644 (file)
protected:
void setDoc (double w, double h);
int find_paper_size (double w, double h) const;
+ void fire_fit_canvas_to_selection_or_drawing();
void on_portrait();
void on_landscape();
void on_value_changed();