enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[ardour.git] / gtk2_ardour / video_server_dialog.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 #include <cstdio>
21 #include <cmath>
22
23 #include <sigc++/bind.h>
24
25 #include "pbd/error.h"
26 #include "pbd/file_utils.h"
27 #include "ardour/session_directory.h"
28 #include "gtkmm2ext/utils.h"
29 #include "ardour/template_utils.h"
30 #include "ardour/session.h"
31
32 #ifdef interface
33 #undef interface
34 #endif
35
36 #include "video_server_dialog.h"
37 #include "utils_videotl.h"
38 #include "video_tool_paths.h"
39 #include "pbd/i18n.h"
40
41 #ifdef PLATFORM_WINDOWS
42 #include <windows.h>
43 #endif
44
45 using namespace Gtk;
46 using namespace std;
47 using namespace PBD;
48 using namespace ARDOUR;
49 using namespace VideoUtils;
50
51 VideoServerDialog::VideoServerDialog (Session* s)
52         : ArdourDialog (_("Launch Video Server"))
53         , path_label (_("Server Executable:"), Gtk::ALIGN_LEFT)
54         , path_browse_button (_("Browse"))
55         , docroot_label (_("Server Docroot:"), Gtk::ALIGN_LEFT)
56         , docroot_browse_button (_("Browse"))
57         , listenport_adjustment (1554, 1025, 65536, 1, 10, 0)
58         , listenport_spinner (listenport_adjustment)
59         , cachesize_adjustment (256, 32, 32768, 1, 32, 0)
60         , cachesize_spinner (cachesize_adjustment)
61         , showagain_checkbox (_("Don't show this dialog again. (Reset in Edit->Preferences)."))
62 {
63         set_session (s);
64
65         set_name ("VideoServerDialog");
66         set_modal (true);
67         set_skip_taskbar_hint (true);
68         set_resizable (false);
69
70         Gtk::Label* l;
71         VBox* vbox = manage (new VBox);
72         VBox* options_box = manage (new VBox);
73         HBox* path_hbox = manage (new HBox);
74         HBox* docroot_hbox = manage (new HBox);
75
76         path_entry.set_width_chars(38);
77         path_entry.set_text("/usr/bin/harvid");
78         docroot_entry.set_width_chars(38);
79         docroot_entry.set_text(Config->get_video_server_docroot());
80
81 #ifndef __APPLE__
82         /* Note: on OSX icsd is not able to bind to IPv4 localhost */
83         listenaddr_combo.append_text("127.0.0.1");
84 #endif
85         listenaddr_combo.append_text("0.0.0.0");
86         listenaddr_combo.set_active(0);
87
88         std::string harvid_exe;
89         if (ArdourVideoToolPaths::harvid_exe(harvid_exe)) {
90                 path_entry.set_text(harvid_exe);
91         } else {
92                 PBD::warning <<
93                         string_compose(
94                                         _("The external video server 'harvid' can not be found.\n"
95                                                 "The tool is included with the %1 releases from ardour.org, "
96                                                 "alternatively you can download it from http://x42.github.com/harvid/ "
97                                                 "or acquire it from your distribution.\n"
98                                                 "\n"
99                                                 "see also http://manual.ardour.org/video-timeline/setup/"
100                                          ), PROGRAM_NAME)
101                         << endmsg;
102         }
103
104         if (docroot_entry.get_text().empty()) {
105           std::string docroot =  Glib::path_get_dirname(_session->session_directory().root_path());
106           if ((docroot.empty() || docroot.at(docroot.length()-1) != '/')) { docroot += "/"; }
107                 docroot_entry.set_text(docroot);
108         }
109
110         path_hbox->pack_start (path_label, false, false, 3);
111         path_hbox->pack_start (path_entry, true, true, 3);
112         path_hbox->pack_start (path_browse_button, false, false, 3);
113
114         docroot_hbox->pack_start (docroot_label, false, false, 3);
115         docroot_hbox->pack_start (docroot_entry, true, true, 3);
116         docroot_hbox->pack_start (docroot_browse_button, false, false, 3);
117
118         l = manage (new Label (_("<b>Options</b>"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
119         l->set_use_markup ();
120         options_box->pack_start (*l, false, true, 4);
121
122         Table* t = manage (new Table (2, 3));
123         t->set_spacings (4);
124         options_box->pack_start (*t, true, true, 4);
125
126         l = manage (new Label (_("Listen Address:")));
127         l->set_alignment (0, 0.5);
128         t->attach (*l, 0, 1, 0, 1, FILL);
129         t->attach (listenaddr_combo, 1, 2, 0, 1);
130
131         l = manage (new Label (_("Listen Port:")));
132         l->set_alignment (0, 0.5);
133         t->attach (*l, 0, 1, 1, 2, FILL);
134         t->attach (listenport_spinner, 1, 2, 1, 2);
135
136         l = manage (new Label (_("Cache Size:")));
137         l->set_alignment (0, 0.5);
138         t->attach (*l, 0, 1, 2, 3, FILL);
139         t->attach (cachesize_spinner, 1, 2, 2, 3);
140
141         l = manage (new Label (string_compose(
142                                         _("%1 relies on an external video server for the videotimeline.\nThe server configured in Edit -> Preferences -> Video is not reachable.\nDo you want %1 to launch 'harvid' on this machine?"), PROGRAM_NAME)
143                                 , Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
144         l->set_max_width_chars(80);
145         l->set_line_wrap();
146         vbox->pack_start (*l, true, true, 4);
147         vbox->pack_start (*path_hbox, false, false);
148         if (Config->get_video_advanced_setup()){
149                 vbox->pack_start (*docroot_hbox, false, false);
150         } else {
151 #ifndef PLATFORM_WINDOWS
152                 docroot_entry.set_text(X_("/"));
153 #else
154                 docroot_entry.set_text(X_("C:\\"));
155 #endif
156                 listenport_spinner.set_sensitive(false);
157         }
158         vbox->pack_start (*options_box, false, true);
159
160         get_vbox()->set_spacing (4);
161         get_vbox()->pack_start (*vbox, false, false);
162         get_vbox()->pack_start (showagain_checkbox, false, false);
163         showagain_checkbox.set_active(!Config->get_show_video_server_dialog());
164
165         path_browse_button.signal_clicked().connect (sigc::mem_fun (*this, &VideoServerDialog::open_path_dialog));
166         docroot_browse_button.signal_clicked().connect (sigc::mem_fun (*this, &VideoServerDialog::open_docroot_dialog));
167
168         show_all_children ();
169         add_button (Stock::CANCEL, RESPONSE_CANCEL);
170         add_button (Stock::EXECUTE, RESPONSE_ACCEPT);
171 }
172
173 VideoServerDialog::~VideoServerDialog ()
174 {
175 }
176
177 void
178 VideoServerDialog::on_show ()
179 {
180         Dialog::on_show ();
181 }
182
183 void
184 VideoServerDialog::open_path_dialog ()
185 {
186         Gtk::FileChooserDialog dialog(_("Set Video Server Executable"), Gtk::FILE_CHOOSER_ACTION_OPEN);
187         dialog.set_filename (path_entry.get_text());
188
189         dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
190         dialog.add_button(Gtk::Stock::OK, Gtk::RESPONSE_OK);
191
192         int result = dialog.run();
193
194         if (result == Gtk::RESPONSE_OK) {
195                 std::string filename = dialog.get_filename();
196
197                 if (filename.length()) {
198                         path_entry.set_text (filename);
199                 }
200         }
201 }
202
203 void
204 VideoServerDialog::open_docroot_dialog ()
205 {
206         Gtk::FileChooserDialog dialog(_("Server docroot"), Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);
207         dialog.set_filename (docroot_entry.get_text());
208
209         dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
210         dialog.add_button(Gtk::Stock::OK, Gtk::RESPONSE_OK);
211
212         int result = dialog.run();
213
214         if (result == Gtk::RESPONSE_OK) {
215                 std::string dirname = dialog.get_filename();
216
217                 if (dirname.empty() || dirname.at(dirname.length()-1) != G_DIR_SEPARATOR) {
218                         dirname += "/";
219                 }
220
221                 if (dirname.length()) {
222                         docroot_entry.set_text (dirname);
223                 }
224         }
225 }
226
227 std::string
228 VideoServerDialog::get_docroot () {
229         return docroot_entry.get_text();
230 }