00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00027 #ifndef RENDER_H
00028 #define RENDER_H
00029
00030 #include <gtkmm.h>
00031
00032 using namespace Gtk;
00033
00034 namespace gui {
00035 namespace dialogs {
00036
00040 class Render : public Dialog
00041 {
00042 public:
00043 Render(Window &parent);
00044
00045 protected:
00046 void on_button_browse();
00047
00048 protected:
00049 HBox outputFileHBox;
00050 Label outputFileLabel;
00051 Entry outputFilePathEntry;
00052
00053 Image browseButtonImage;
00054 Button outputFileBrowseButton;
00055
00056 HBox containerFormatHBox;
00057 Label containerFormatLabel;
00058 ComboBox containerFormat;
00059
00060 Frame audioFrame;
00061
00062 Frame videoFrame;
00063
00064 Image renderButtonImage;
00065 };
00066
00067 }
00068 }
00069
00070 #endif // RENDER_H