Remove ancient trunk folder from svn repository
[synfig.git] / synfig-studio / src / gtkmm / widget_value.h
diff --git a/synfig-studio/src/gtkmm/widget_value.h b/synfig-studio/src/gtkmm/widget_value.h
new file mode 100644 (file)
index 0000000..99bdf5b
--- /dev/null
@@ -0,0 +1,136 @@
+/* === S Y N F I G ========================================================= */
+/*!    \file widget_value.h
+**     \brief Template File
+**
+**     $Id$
+**
+**     \legal
+**     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
+**
+**     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.
+**
+**     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
+*/
+/* ========================================================================= */
+
+/* === S T A R T =========================================================== */
+
+#ifndef __SYNFIG_GTKMM_VALUE_H
+#define __SYNFIG_GTKMM_VALUE_H
+
+/* === H E A D E R S ======================================================= */
+
+//#include <gtk/gtk.h>
+//#include <gtkmm/ruler.h>
+//#include <gtkmm/arrow.h>
+//#include <gtkmm/image.h>
+//#include <gdkmm/pixbufloader.h>
+//#include <gtkmm/viewport.h>
+#include <gtkmm/adjustment.h>
+//#include <gtkmm/scrolledwindow.h>
+#include <gtkmm/table.h>
+//#include <gtkmm/statusbar.h>
+#include <gtkmm/button.h>
+#include <gtkmm/label.h>
+//#include <gtkmm/paned.h>
+//#include <gtkmm/treeview.h>
+//#include <gtkmm/treestore.h>
+#include <gtkmm/box.h>
+#include <gtkmm/spinbutton.h>
+//#include <gtkmm/cellrenderer.h>
+#include <gtkmm/checkbutton.h>
+
+//#include <gtkmm/colorselection.h>
+#include <gtkmm/optionmenu.h>
+
+//#include <synfig/synfig.h>
+#include <synfig/paramdesc.h>
+#include <synfig/value.h>
+#include <synfig/canvas.h>
+
+
+/* === M A C R O S ========================================================= */
+
+/* === T Y P E D E F S ===================================================== */
+
+/* === C L A S S E S & S T R U C T S ======================================= */
+
+namespace studio {
+
+class Widget_Color;
+class Widget_ColorEdit;
+class Widget_CanvasChooser;
+class Widget_Enum;
+class Widget_Filename;
+class Widget_Vector;
+class Widget_Time;
+class Widget_Distance;
+
+class Widget_ValueBase : public Gtk::HBox
+{
+       Gtk::Label *label;
+       synfig::ValueBase value;
+
+       Widget_Vector *vector_widget;
+       Gtk::SpinButton *real_widget;
+       Gtk::Adjustment real_adjustment;
+       Gtk::SpinButton *integer_widget;
+       Gtk::Adjustment integer_adjustment;
+       Gtk::SpinButton *angle_widget;
+       Gtk::Adjustment angle_adjustment;
+
+       Gtk::CheckButton *bool_widget;
+       //Gtk::ColorSelection *color_widget;
+       Widget_ColorEdit *color_widget;
+       Widget_CanvasChooser *canvas_widget;
+       Widget_Enum *enum_widget;
+       Widget_Filename *filename_widget;
+       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_;
+       sigc::signal<void> signal_activate_;
+
+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; }
+
+       void set_canvas(etl::handle<synfig::Canvas> x) { canvas=x; assert(canvas); }
+       void inside_cellrenderer();
+       Widget_ValueBase();
+       ~Widget_ValueBase();
+};
+
+}; // END of namespace studio
+
+/* === E N D =============================================================== */
+
+#endif