Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-studio / trunk / src / gtkmm / widget_value.h
index c77ad6b..99bdf5b 100644 (file)
@@ -1,20 +1,21 @@
 /* === S Y N F I G ========================================================= */
-/*!    \file widget_value.cpp
+/*!    \file widget_value.h
 **     \brief Template File
 **
-**     $Id: widget_value.h,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
 */
 /* ========================================================================= */
@@ -38,7 +39,6 @@
 //#include <gtkmm/statusbar.h>
 #include <gtkmm/button.h>
 #include <gtkmm/label.h>
-//#include <atkmm/stateset.h>
 //#include <gtkmm/paned.h>
 //#include <gtkmm/treeview.h>
 //#include <gtkmm/treestore.h>
@@ -72,7 +72,7 @@ class Widget_Filename;
 class Widget_Vector;
 class Widget_Time;
 class Widget_Distance;
-       
+
 class Widget_ValueBase : public Gtk::HBox
 {
        Gtk::Label *label;
@@ -95,9 +95,9 @@ class Widget_ValueBase : public Gtk::HBox
        Widget_Time *time_widget;
        Gtk::Entry *string_widget;
        Widget_Distance *distance_widget;
-       
+
 //     std::string hint;
-       
+
        synfig::ParamDesc param_desc;
        etl::handle<synfig::Canvas> canvas;
        sigc::signal<void> signal_value_changed_;
@@ -105,21 +105,21 @@ class Widget_ValueBase : public Gtk::HBox
 
 public:
        sigc::signal<void> &signal_value_changed() { return signal_value_changed_; }
-       
+
        void activate();
-       
+
        sigc::signal<void>& signal_activate() { return signal_activate_; }
 
        void set_value(const synfig::ValueBase &data);
        const synfig::ValueBase &get_value();
 
        void on_grab_focus();
-       
+
        void set_param_desc(const synfig::ParamDesc &x) { param_desc=x; }
        const synfig::ParamDesc &get_param_desc() { return param_desc; }
 
        void set_sensitive(bool x);
-       
+
        //void set_hint(std::string x) { hint=x; }
 //     std::string get_hint() { return hint; }