X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fwidget_vector.cpp;h=38d9097652ac4f5c61e8d1f23798d89259bf231c;hb=c2813b4d63804cac9b4067146a9e6eca717cb3e4;hp=98b11521081f6c1eb1e273d718c455494f575809;hpb=ce408de81ca266b1f334ee9bc6c8fb7ba1492ed4;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/widget_vector.cpp b/synfig-studio/trunk/src/gtkmm/widget_vector.cpp index 98b1152..38d9097 100644 --- a/synfig-studio/trunk/src/gtkmm/widget_vector.cpp +++ b/synfig-studio/trunk/src/gtkmm/widget_vector.cpp @@ -2,7 +2,7 @@ /*! \file widget_vector.cpp ** \brief Template File ** -** $Id: widget_vector.cpp,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $ +** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley @@ -34,6 +34,8 @@ #include "widget_distance.h" #include "app.h" +#include "general.h" + #endif /* === U S I N G =========================================================== */ @@ -53,16 +55,19 @@ using namespace studio; /* === M E T H O D S ======================================================= */ Widget_Vector::Widget_Vector(): + Gtk::HBox(false, 5), x_adjustment(0,-100000000,100000000,0.05,0.05,0.05), y_adjustment(0,-100000000,100000000,0.05,0.05,0.05) { Gtk::Label *label; - - label=manage(new class Gtk::Label("x:")); + + label=manage(new class Gtk::Label("X:")); + label->set_alignment(0, 0.5); label->show(); pack_start(*label, Gtk::PACK_SHRINK); spinbutton_x=manage(new class Gtk::SpinButton(x_adjustment,0.05,DIGITS)); + spinbutton_x->set_alignment(1); spinbutton_x->set_update_policy(Gtk::UPDATE_ALWAYS); spinbutton_x->signal_value_changed().connect(sigc::mem_fun(*this,&studio::Widget_Vector::on_value_changed)); pack_start(*spinbutton_x, Gtk::PACK_EXPAND_WIDGET); @@ -73,11 +78,13 @@ Widget_Vector::Widget_Vector(): distance_x->signal_value_changed().connect(sigc::mem_fun(*this,&studio::Widget_Vector::on_value_changed)); pack_start(*distance_x, Gtk::PACK_EXPAND_WIDGET); - label=manage(new class Gtk::Label("y:")); + label=manage(new class Gtk::Label("Y:")); + label->set_alignment(0, 0.5); label->show(); pack_start(*label, Gtk::PACK_SHRINK); spinbutton_y=manage(new class Gtk::SpinButton(y_adjustment,0.05,DIGITS)); + spinbutton_y->set_alignment(1); spinbutton_y->set_update_policy(Gtk::UPDATE_ALWAYS); spinbutton_y->signal_value_changed().connect(sigc::mem_fun(*this,&studio::Widget_Vector::on_value_changed)); spinbutton_y->signal_activate().connect(sigc::mem_fun(*this,&studio::Widget_Vector::activate)); @@ -92,7 +99,7 @@ Widget_Vector::Widget_Vector(): spinbutton_x->show(); spinbutton_y->show(); - + spinbutton_x->signal_activate().connect(sigc::mem_fun(*spinbutton_y,&Gtk::SpinButton::grab_focus)); distance_x->signal_activate().connect(sigc::mem_fun(*distance_y,&Gtk::SpinButton::grab_focus)); } @@ -137,7 +144,7 @@ Widget_Vector::set_digits(int x) spinbutton_x->set_size_request(48,-1); spinbutton_y->set_size_request(48,-1); } - + distance_x->set_digits(x); distance_y->set_digits(x); distance_x->set_size_request(48,-1); @@ -195,7 +202,7 @@ Widget_Vector::on_value_changed() } void -Widget_Vector::set_canvas(Canvas::LooseHandle x) +Widget_Vector::set_canvas(synfig::Canvas::LooseHandle x) { canvas_=x; if(x)