quick checks on empty control lists, to avoid unnecessary work
[ardour.git] / gtk2_ardour / transcode_video_dialog.h
1 /*
2     Copyright (C) 2010 Paul Davis
3     Author: Robin Gareus <robin@gareus.org>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20 #ifndef __gtk_ardour_transcode_video_dialog_h__
21 #define __gtk_ardour_transcode_video_dialog_h__
22
23 #include <string>
24
25 #include <gtkmm.h>
26
27 #include "ardour/types.h"
28 #include "ardour/template_utils.h"
29 #include "ardour_dialog.h"
30
31 #include "transcode_ffmpeg.h"
32
33 enum VtlTranscodeOption {
34  VTL_IMPORT_REFERENCE = 0,
35  VTL_IMPORT_TRANSCODED = 1,
36  VTL_IMPORT_NO_VIDEO = 2
37 };
38
39 /** @class TranscodeVideoDialog
40  *  @brief dialog-box and controller for importing video-files
41  */
42 class TranscodeVideoDialog : public ArdourDialog , public PBD::ScopedConnectionList
43 {
44   public:
45         TranscodeVideoDialog (ARDOUR::Session*, std::string);
46         ~TranscodeVideoDialog ();
47
48         std::string get_filename () { return path_entry.get_text(); }
49         std::string get_audiofile () { return audiofile; }
50         VtlTranscodeOption import_option ();
51         bool detect_ltc () { return ltc_detect.get_active (); }
52
53   private:
54         void on_show ();
55         void open_browse_dialog ();
56         void abort_clicked ();
57         void scale_combo_changed ();
58         void audio_combo_changed ();
59         void video_combo_changed ();
60         void aspect_checkbox_toggled ();
61         void bitrate_checkbox_toggled ();
62         void update_bitrate ();
63         void launch_audioonly ();
64         void launch_transcode ();
65   void launch_extract ();
66         void dialog_progress_mode ();
67         bool aborted;
68         bool pending_audio_extract;
69         std::string audiofile;
70         std::string infn;
71         double m_aspect;
72
73         PBD::Signal0<void> StartNextStage;
74         void finished ();
75         void update_progress (ARDOUR::framecnt_t, ARDOUR::framecnt_t);
76
77         TranscodeFfmpeg *transcoder;
78
79         Gtk::Label        path_label;
80         Gtk::Entry        path_entry;
81         Gtk::Button       browse_button;
82         Gtk::Button       transcode_button;
83
84         Gtk::VBox* vbox;
85         Gtk::Button *cancel_button;
86         Gtk::Button abort_button;
87
88         Gtk::VBox*  progress_box;
89         Gtk::Label  progress_label;
90         Gtk::ProgressBar pbar;
91
92         Gtk::ComboBoxText video_combo;
93         Gtk::ComboBoxText scale_combo;
94         Gtk::CheckButton  aspect_checkbox;
95         Gtk::Adjustment   height_adjustment;
96         Gtk::SpinButton   height_spinner;
97         Gtk::ComboBoxText audio_combo;
98         Gtk::CheckButton  ltc_detect;
99         Gtk::CheckButton  bitrate_checkbox;
100         Gtk::Adjustment   bitrate_adjustment;
101         Gtk::SpinButton   bitrate_spinner;
102 #if 1 /* tentative debug mode */
103         Gtk::CheckButton  debug_checkbox;
104 #endif
105
106 };
107
108 #endif /* __gtk_ardour_transcode_video_dialog_h__ */