synfig-studio  1.0.3
dialog_spritesheetparam.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
21 /* ========================================================================= */
22 
23 /* === S T A R T =========================================================== */
24 
25 #ifndef __SYNFIG_STUDIO_DIALOG_SPRITESHEETPARAM_H
26 #define __SYNFIG_STUDIO_DIALOG_SPRITESHEETPARAM_H
27 
28 /* === H E A D E R S ======================================================= */
29 
30 #include <gtkmm/comboboxtext.h>
31 #include <gtkmm/spinbutton.h>
32 #include <gtkmm/checkbutton.h>
33 #include <gtkmm/comboboxtext.h>
34 
36 
37 /* === M A C R O S ========================================================= */
38 
39 /* === T Y P E D E F S ===================================================== */
40 
41 /* === C L A S S E S & S T R U C T S ======================================= */
42 
43 namespace studio {
45 {
46  public:
47  Dialog_SpriteSheetParam(Gtk::Window &parent);
49 
50 protected:
51  virtual void init();
52  virtual void write_tparam(synfig::TargetParam & tparam);
53 
54 private:
55  Gtk::SpinButton * offset_x_box;
56  Gtk::SpinButton * offset_y_box;
57  Gtk::SpinButton * rows_box;
58  Gtk::SpinButton * columns_box;
59  Gtk::CheckButton * check_button;
60  Gtk::ComboBoxText * direction_box;
61 
62  int frame_count;
63 
64  void on_dir_change();
65  void on_rows_change();
66  void on_cols_change();
67 };
68 
69 }; //studio
70 
71 /* === E N D =============================================================== */
72 
73 #endif