synfig-studio  1.0.3
dialog_ffmpegparam.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
22 /* ========================================================================= */
23 
24 /* === S T A R T =========================================================== */
25 
26 #ifndef __SYNFIG_STUDIO_DIALOG_FFMPEGPARAM_H
27 #define __SYNFIG_STUDIO_DIALOG_FFMPEGPARAM_H
28 
29 /* === H E A D E R S ======================================================= */
30 #include <gtkmm/dialog.h>
31 #include <gtkmm/button.h>
32 #include <gtkmm/comboboxtext.h>
33 #include <gtkmm/spinbutton.h>
34 
35 #include <synfig/targetparam.h>
37 
38 /* === M A C R O S ========================================================= */
39 
40 /* === T Y P E D E F S ===================================================== */
41 
42 /* === C L A S S E S & S T R U C T S ======================================= */
43 
44 namespace studio {
45 
47 {
48 public:
49  Dialog_FFmpegParam(Gtk::Window &parent);
51 
52 protected:
53  virtual void init();
54  virtual void write_tparam(synfig::TargetParam & tparam);
55 
56 private:
57  Gtk::SpinButton *bitrate;
58  Gtk::ComboBoxText *vcodec;
59  Gtk::Entry *customvcodec;
60 
61  void on_vcodec_change();
62 };
63 
64 }; // END of namespace studio
65 
66 /* === E N D =============================================================== */
67 
68 #endif //__SYNFIG_STUDIO_DIALOG_FFMPEGPARAM_H