Add FileDialog (wrapping wxFileDialog); currently it sets up the initial path nicely.
[dcpomatic.git] / src / wx / wscript
1 #
2 #    Copyright (C) 2012-2022 Carl Hetherington <cth@carlh.net>
3 #
4 #    This file is part of DCP-o-matic.
5 #
6 #    DCP-o-matic is free software; you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation; either version 2 of the License, or
9 #    (at your option) any later version.
10 #
11 #    DCP-o-matic is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18 #
19
20 import os
21 import subprocess
22 import shlex
23 import glob
24 from waflib import Logs
25 import i18n
26
27 sources = """
28           about_dialog.cc
29           audio_dialog.cc
30           audio_gain_dialog.cc
31           audio_mapping_view.cc
32           audio_panel.cc
33           audio_plot.cc
34           auto_crop_dialog.cc
35           barco_alchemy_certificate_panel.cc
36           batch_job_view.cc
37           check_box.cc
38           christie_certificate_panel.cc
39           cinema_dialog.cc
40           closed_captions_dialog.cc
41           colour_conversion_editor.cc
42           config_dialog.cc
43           config_move_dialog.cc
44           confirm_kdm_email_dialog.cc
45           content_advanced_dialog.cc
46           content_colour_conversion_dialog.cc
47           content_menu.cc
48           content_panel.cc
49           content_properties_dialog.cc
50           content_sub_panel.cc
51           content_version_dialog.cc
52           content_view.cc
53           controls.cc
54           credentials_download_certificate_panel.cc
55           custom_scale_dialog.cc
56           dcp_panel.cc
57           dcp_text_track_dialog.cc
58           dcpomatic_button.cc
59           dcpomatic_choice.cc
60           dcpomatic_spin_ctrl.cc
61           dir_picker_ctrl.cc
62           disk_warning_dialog.cc
63           dkdm_dialog.cc
64           dkdm_output_panel.cc
65           dolby_doremi_certificate_panel.cc
66           download_certificate_dialog.cc
67           download_certificate_panel.cc
68           drive_wipe_warning_dialog.cc
69           email_dialog.cc
70           export_subtitles_dialog.cc
71           export_video_file_dialog.cc
72           extra_kdm_email_dialog.cc
73           file_dialog.cc
74           file_picker_ctrl.cc
75           film_editor.cc
76           film_name_location_dialog.cc
77           film_viewer.cc
78           filter_dialog.cc
79           focus_manager.cc
80           fonts_dialog.cc
81           full_config_dialog.cc
82           full_language_tag_dialog.cc
83           gain_calculator_dialog.cc
84           gdc_certificate_panel.cc
85           gl_video_view.cc
86           hints_dialog.cc
87           html_dialog.cc
88           i18n_hook.cc
89           image_sequence_dialog.cc
90           instant_i18n_dialog.cc
91           interop_metadata_dialog.cc
92           job_manager_view.cc
93           job_view.cc
94           job_view_dialog.cc
95           kdm_advanced_dialog.cc
96           kdm_cpl_panel.cc
97           kdm_dialog.cc
98           kdm_output_panel.cc
99           kdm_timing_panel.cc
100           language_subtag_panel.cc
101           language_tag_dialog.cc
102           language_tag_widget.cc
103           kdm_choice.cc
104           make_chain_dialog.cc
105           markers.cc
106           markers_dialog.cc
107           markers_panel.cc
108           message_dialog.cc
109           metadata_dialog.cc
110           move_to_dialog.cc
111           nag_dialog.cc
112           name_format_editor.cc
113           new_dkdm_folder_dialog.cc
114           normal_job_view.cc
115           paste_dialog.cc
116           password_entry.cc
117           player_config_dialog.cc
118           player_information.cc
119           player_stress_tester.cc
120           playhead_to_timecode_dialog.cc
121           playhead_to_frame_dialog.cc
122           playlist_controls.cc
123           playlist_editor_config_dialog.cc
124           question_dialog.cc
125           rating_dialog.cc
126           qube_certificate_panel.cc
127           recipients_panel.cc
128           recipient_dialog.cc
129           recreate_chain_dialog.cc
130           region_subtag_dialog.cc
131           region_subtag_widget.cc
132           repeat_dialog.cc
133           report_problem_dialog.cc
134           rename_template_dialog.cc
135           rgba_colour_picker.cc
136           save_template_dialog.cc
137           screen_dialog.cc
138           screens_panel.cc
139           self_dkdm_dialog.cc
140           send_i18n_dialog.cc
141           send_test_email_dialog.cc
142           server_dialog.cc
143           servers_list_dialog.cc
144           simple_video_view.cc
145           smpte_metadata_dialog.cc
146           standard_controls.cc
147           static_text.cc
148           subtag_list_ctrl.cc
149           subtitle_appearance_dialog.cc
150           suspender.cc
151           system_font_dialog.cc
152           system_information_dialog.cc
153           table_dialog.cc
154           templates_dialog.cc
155           text_panel.cc
156           text_view.cc
157           time_picker.cc
158           timer_display.cc
159           timecode.cc
160           timeline.cc
161           timeline_atmos_content_view.cc
162           timeline_content_view.cc
163           timeline_dialog.cc
164           timeline_audio_content_view.cc
165           timeline_labels_view.cc
166           timeline_text_content_view.cc
167           timeline_reels_view.cc
168           timeline_time_axis_view.cc
169           timeline_video_content_view.cc
170           timeline_view.cc
171           timing_panel.cc
172           try_unmount_dialog.cc
173           update_dialog.cc
174           verify_dcp_dialog.cc
175           verify_dcp_progress_dialog.cc
176           video_panel.cc
177           video_view.cc
178           video_waveform_dialog.cc
179           video_waveform_plot.cc
180           wx_util.cc
181           wx_signal_manager.cc
182           """
183
184 def configure(conf):
185
186     wx_libs = 'core,richtext,adv,html,xml,propgrid'
187
188     if conf.options.wx_config is not None:
189         wx_config = conf.options.wx_config
190         conf.check_cfg(msg='Checking for wxWidgets using %s' % wx_config,
191                        package='',
192                        path=wx_config,
193                        args='--cppflags --cxxflags --libs %s --gl-libs' % wx_libs,
194                        uselib_store='WXWIDGETS',
195                        mandatory=True)
196     else:
197         try:
198             wx_config = '/usr/lib64/wx/config/gtk2-unicode-3.0'
199             conf.check_cfg(msg='Checking for wxWidgets using gtk2-unicode-3.0',
200                            package='',
201                            path=wx_config,
202                            args='--cppflags --cxxflags --libs %s --gl-libs' % wx_libs,
203                            uselib_store='WXWIDGETS',
204                            mandatory=True)
205         except:
206             try:
207                 wx_config = 'wx-config-3.0-gtk2'
208                 conf.check_cfg(msg='Checking for wxWidgets using wx-config-3.0-gtk2',
209                                package='',
210                                path=wx_config,
211                                args='--cppflags --cxxflags --libs %s --gl-libs' % wx_libs,
212                                uselib_store='WXWIDGETS',
213                                mandatory=True)
214             except:
215                 wx_config = 'wx-config'
216                 conf.check_cfg(msg='Checking for wxWidgets using wx-config',
217                                package='',
218                                path=wx_config,
219                                args='--cppflags --cxxflags --libs %s --gl-libs' % wx_libs,
220                                uselib_store='WXWIDGETS',
221                                mandatory=True)
222
223     if conf.env.TARGET_LINUX:
224         conf.env.append_value('CXXFLAGS', ['-DGL_GLEXT_PROTOTYPES', '-DGLX_GLXEXT_PROTOTYPES'])
225     if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32:
226         conf.env.append_value('CXXFLAGS', ['-DWGL_WGLEXT_PROTOTYPES'])
227     conf.env.append_value('CXXFLAGS', ['-DwxNO_UNSAFE_WXSTRING_CONV'])
228
229     if conf.options.static_wxwidgets:
230         # wx-config returns its static libraries as full paths, without -l prefixes, which confuses
231         # check_cfg().  It puts the static libraries into LINKFLAGS_WXWIDGETS, so fish them out.
232         stlibs = []
233         new_linkflags = []
234         stlib_paths = []
235         for f in conf.env.LINKFLAGS_WXWIDGETS:
236             if f.startswith('/'):
237                 d = os.path.dirname(f)
238                 if not d in stlib_paths:
239                     stlib_paths.append(d)
240                 stlibs.append(os.path.basename(f)[3:-2])
241             else:
242                 new_linkflags.append(f)
243
244         conf.env.STLIB_WXWIDGETS = stlibs
245         conf.env.LINKFLAGS_WXWIDGETS = new_linkflags
246         conf.env.STLIBPATH_WXWIDGETS = stlib_paths
247
248     conf.in_msg = 1
249     wx_version = conf.check_cfg(package='wxwidgets', path=wx_config, args='--version').strip()
250     conf.in_msg = 0
251     if not wx_version.startswith('3.'):
252         conf.fatal('wxwidgets version 3.x.y is required; %s found' % wx_version)
253
254     config = conf.check_cfg(package='wxwidgets', path=wx_config, args='--selected-config').strip()
255     if config.find('gtk2') != -1:
256         conf.check_cfg(package='gtk+-2.0', args='--cflags --libs', uselib_store='GTK', mandatory=True)
257
258     try:
259         conf.check_cfg(msg='Checking for RtAudio using pkg-config',
260                        package='rtaudio',
261                        args='--cflags --libs',
262                        uselib_store='RTAUDIO',
263                        mandatory=True)
264     except:
265         conf.check_cfg(msg='Checking for RtAudio headers using rtaudio-config',
266                        package='',
267                        path='rtaudio-config',
268                        args='--cppflags',
269                        uselib_store='RTAUDIO',
270                        mandatory=True)
271
272         conf.check_cfg(msg='Checking for RtAudio libraries using rtaudio-config',
273                        package='',
274                        path='rtaudio-config',
275                        args='--libs',
276                        uselib_store='RTAUDIO',
277                        mandatory=True)
278
279     # Some rtaudio-configs don't include rtaudio as a link library.  Go figure.
280     conf.env.LIB_RTAUDIO.append('rtaudio')
281     if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32:
282         # Don't explicitly link with pthread on Windows
283         conf.env.CFLAGS_RTAUDIO.remove('-pthread')
284         conf.env.LINKFLAGS_RTAUDIO.remove('-pthread')
285         # We need some libraries for WASAPI
286         conf.env.LIB_RTAUDIO.append('mfplat')
287         conf.env.LIB_RTAUDIO.append('mfuuid')
288         conf.env.LIB_RTAUDIO.append('wmcodecdspuuid')
289
290     if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32 or conf.env.TARGET_LINUX:
291         conf.check_cfg(package='gl', args='--cflags --libs', uselib_store='GL', mandatory=True)
292         conf.check_cfg(package='glu', args='--cflags --libs', uselib_store='GLU', mandatory=True)
293         if conf.env.TARGET_WINDOWS_64 or conf.env.TARGET_WINDOWS_32:
294             conf.check_cfg(package='glew', args='--cflags --libs', uselib_store='GLEW', mandatory=True)
295     else:
296         conf.env.STLIB_GL = 'gl'
297         conf.env.STLIB_GLU = 'glu'
298
299     if conf.env.TARGET_LINUX:
300         conf.check_cxx(fragment="""
301                                 #include <wx/glcanvas.h>
302                                 #include <GL/glu.h>
303                                 #include <GL/glext.h>
304                                 #include <GL/glxext.h>
305                                 int main() {
306                                     glXSwapIntervalEXT (0, 0, 1);
307                                     return 0;
308                                 }
309                                 """,
310                        msg='Checking for glXSwapIntervalEXT',
311                        okmsg='yes',
312                        uselib='GL WXWIDGETS',
313                        define_name='DCPOMATIC_HAVE_GLX_SWAP_INTERVAL_EXT',
314                        mandatory=False)
315
316
317 def build(bld):
318     if bld.env.STATIC_DCPOMATIC:
319         obj = bld(features='cxx cxxstlib')
320     else:
321         obj = bld(features='cxx cxxshlib')
322
323     obj.name   = 'libdcpomatic2-wx'
324     obj.export_includes = ['..']
325     obj.uselib = 'BOOST_FILESYSTEM BOOST_THREAD BOOST_REGEX WXWIDGETS DCP SUB ZIP CXML RTAUDIO ICU '
326     if bld.env.TARGET_LINUX:
327         obj.uselib += 'GTK GL GLU '
328     if bld.env.TARGET_WINDOWS_64 or bld.env.TARGET_WINDOWS_32:
329         obj.uselib += 'WINSOCK2 OLE32 DSOUND WINMM KSUSER GL GLU GLEW '
330     if bld.env.TARGET_OSX:
331         obj.framework = ['CoreAudio', 'OpenGL']
332     obj.use = 'libdcpomatic2'
333     obj.source = sources
334     obj.target = 'dcpomatic2-wx'
335
336     i18n.po_to_mo(os.path.join('src', 'wx'), 'libdcpomatic2-wx', bld)
337
338 def pot(bld):
339     i18n.pot(os.path.join('src', 'wx'), sources + " editable_list.h content_widget.h", 'libdcpomatic-wx')
340
341 def pot_merge(bld):
342     i18n.pot_merge(os.path.join('src', 'wx'), 'libdcpomatic-wx')