X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fwidget_vector.cpp;h=c948fe038865d1dc2ddd905bf68eb588be3e6fc1;hb=4ec81d053bf1d0cbcd9f0bf048914ec8eca08f4c;hp=9b74e51f2e2569f7407e8b3e9bdb33aba45d2521;hpb=02252941b29de64037116f4d37991a38d9ff0d94;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/widget_vector.cpp b/synfig-studio/trunk/src/gtkmm/widget_vector.cpp index 9b74e51..c948fe0 100644 --- a/synfig-studio/trunk/src/gtkmm/widget_vector.cpp +++ b/synfig-studio/trunk/src/gtkmm/widget_vector.cpp @@ -2,19 +2,20 @@ /*! \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 Robert B. Quattlebaum Jr. +** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley ** -** This software and associated documentation -** are CONFIDENTIAL and PROPRIETARY property of -** the above-mentioned copyright holder. +** This package is free software; you can redistribute it and/or +** modify it under the terms of the GNU General Public License as +** published by the Free Software Foundation; either version 2 of +** the License, or (at your option) any later version. ** -** You may not copy, print, publish, or in any -** other way distribute this software without -** a prior written agreement with -** the copyright holder. +** This package is distributed in the hope that it will be useful, +** but WITHOUT ANY WARRANTY; without even the implied warranty of +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +** General Public License for more details. ** \endlegal */ /* ========================================================================= */ @@ -52,16 +53,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); @@ -72,11 +76,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)); @@ -91,7 +97,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)); } @@ -136,7 +142,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);