X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fdialog_setup.cpp;h=9f849b031da76b10e02432bcf98590738431b3af;hb=4ba22fb51d97f1ecce04dcc5e40569a4354c1bae;hp=9080d650422a89e1770f13ab0445a5fda7d13f9f;hpb=c9582dc1cba08b936b35f36f36c0fa018a203a53;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/dialog_setup.cpp b/synfig-studio/trunk/src/gtkmm/dialog_setup.cpp index 9080d65..9f849b0 100644 --- a/synfig-studio/trunk/src/gtkmm/dialog_setup.cpp +++ b/synfig-studio/trunk/src/gtkmm/dialog_setup.cpp @@ -85,7 +85,7 @@ Dialog_Setup::Dialog_Setup(): toggle_resize_imported_images(_("Scale New Imported Images to Fit Canvas")), adj_pref_x_size(480,1,10000,1,10,0), adj_pref_y_size(270,1,10000,1,10,0) - + { // Setup the buttons @@ -230,13 +230,13 @@ Dialog_Setup::Dialog_Setup(): // Document - New Document X size Gtk::SpinButton* pref_x_size_spinbutton(manage(new Gtk::SpinButton(adj_pref_x_size,1,0))); attach_label(document_table,_("New Document X size"),1, xpadding, ypadding); - document_table->attach(*pref_x_size_spinbutton, 1, 2, 1, 2,Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, xpadding, ypadding); + document_table->attach(*pref_x_size_spinbutton, 1, 2, 1, 2,Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, xpadding, ypadding); tooltips_.set_tip(*pref_x_size_spinbutton,_("Width in pixels of the new created document")); - + // Document - New Document Y size Gtk::SpinButton* pref_y_size_spinbutton(manage(new Gtk::SpinButton(adj_pref_y_size,1,0))); attach_label(document_table,_("New Document Y size"),2, xpadding, ypadding); - document_table->attach(*pref_y_size_spinbutton, 1, 2, 2, 3,Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, xpadding, ypadding); + document_table->attach(*pref_y_size_spinbutton, 1, 2, 2, 3,Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, xpadding, ypadding); tooltips_.set_tip(*pref_y_size_spinbutton,_("High in pixels of the new created document")); //Document - Template for predefined sizes of canvases. @@ -316,7 +316,7 @@ Dialog_Setup::on_apply_pressed() // Set the preferred new Document Y dimension App::preferred_y_size=int(adj_pref_y_size.get_value()); - + // Set the preferred Predefined size App::predefined_size=size_template_combo->get_active_text(); @@ -367,7 +367,7 @@ void Dialog_Setup::on_size_template_combo_change() { String selection(size_template_combo->get_active_text()); - if(selection==DEFAULT_PREDEFINED_SIZE) + if(selection==DEFAULT_PREDEFINED_SIZE) { return; } @@ -433,10 +433,10 @@ Dialog_Setup::refresh() // Refresh the preferred new Document X dimension adj_pref_x_size.set_value(App::preferred_x_size); - + // Refresh the preferred new Document Y dimension adj_pref_y_size.set_value(App::preferred_y_size); - + // Refresh the preferred Predefined size size_template_combo->set_active_text(App::predefined_size); }