reorder ARDOUR_UI action registration and adding tabbables to the main window, to...
[ardour.git] / gtk2_ardour / export_video_infobox.cc
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 #ifdef interface
21 #undef interface
22 #endif
23
24 #include <gtkmm/box.h>
25 #include <gtkmm/label.h>
26 #include <gtkmm/separator.h>
27 #include <gtkmm/stock.h>
28
29 #include "ardour/session.h"
30
31 #include "export_video_infobox.h"
32 #include "pbd/i18n.h"
33
34 using namespace Gtk;
35 using namespace std;
36 using namespace PBD;
37 using namespace ARDOUR;
38
39 ExportVideoInfobox::ExportVideoInfobox (Session* s)
40         : ArdourDialog (_("Video Export Info"))
41         , showagain_checkbox (_("Do Not Show This Dialog Again (Reset in Edit > Preferences > Video)."))
42 {
43         set_session (s);
44
45         set_name ("ExportVideoInfobox");
46         set_modal (true);
47         set_skip_taskbar_hint (true);
48         set_resizable (false);
49
50         Gtk::Label* l;
51         VBox* vbox = manage (new VBox);
52
53         l = manage (new Label (_("<b>Video Export Info</b>"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
54         l->set_use_markup ();
55         vbox->pack_start (*l, false, true);
56         l = manage (new Label (
57                                 string_compose(
58                                 _("%1 does not include commercial licenses for encoding audio/video. Visit mpegla.com for information about licensing various audio/video codecs.\n\nVideo encoding is a non-trivial task with many details.\n\nPlease see the manual at %2/video-timeline/operations/#export.\n\nOpen Manual in Browser? "),
59                                 PROGRAM_NAME, Config->get_reference_manual_url()
60                                 ), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
61         l->set_size_request(700,-1);
62         l->set_line_wrap();
63         vbox->pack_start (*l, false, true,4);
64
65         vbox->pack_start (*(manage (new  HSeparator())), true, true, 2);
66         vbox->pack_start (showagain_checkbox, false, true, 2);
67
68         get_vbox()->set_spacing (4);
69         get_vbox()->pack_start (*vbox, false, false);
70
71         showagain_checkbox.set_active(false);
72         show_all_children ();
73         add_button (Stock::YES, RESPONSE_YES);
74         add_button (Stock::NO, RESPONSE_NO);
75 }
76
77 ExportVideoInfobox::~ExportVideoInfobox ()
78 {
79 }