Basics of in-place i18n with support for wxStaticText and wxCheckBox.
[dcpomatic.git] / src / wx / wscript
1 #
2 #    Copyright (C) 2012-2018 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           barco_alchemy_certificate_panel.cc
35           batch_job_view.cc
36           subtitle_appearance_dialog.cc
37           text_panel.cc
38           text_view.cc
39           check_box.cc
40           christie_certificate_panel.cc
41           cinema_dialog.cc
42           colour_conversion_editor.cc
43           config_dialog.cc
44           config_move_dialog.cc
45           confirm_kdm_email_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_view.cc
52           controls.cc
53           closed_captions_dialog.cc
54           dcp_panel.cc
55           email_dialog.cc
56           image_sequence_dialog.cc
57           isdcf_metadata_dialog.cc
58           dcp_text_track_dialog.cc
59           dir_picker_ctrl.cc
60           dolby_doremi_certificate_panel.cc
61           download_certificate_dialog.cc
62           download_certificate_panel.cc
63           export_dialog.cc
64           file_picker_ctrl.cc
65           film_editor.cc
66           film_name_location_dialog.cc
67           film_viewer.cc
68           filter_dialog.cc
69           filter_editor.cc
70           focus_manager.cc
71           fonts_dialog.cc
72           font_files_dialog.cc
73           full_config_dialog.cc
74           gain_calculator_dialog.cc
75           gdc_certificate_panel.cc
76           hints_dialog.cc
77           initial_setup_dialog.cc
78           instant_i18n_dialog.cc
79           i18n_hook.cc
80           job_view.cc
81           job_view_dialog.cc
82           job_manager_view.cc
83           kdm_advanced_dialog.cc
84           kdm_cpl_panel.cc
85           kdm_dialog.cc
86           kdm_output_panel.cc
87           kdm_timing_panel.cc
88           key_dialog.cc
89           make_chain_dialog.cc
90           message_dialog.cc
91           monitor_dialog.cc
92           move_to_dialog.cc
93           nag_dialog.cc
94           name_format_editor.cc
95           new_dkdm_folder_dialog.cc
96           normal_job_view.cc
97           paste_dialog.cc
98           player_config_dialog.cc
99           player_information.cc
100           playhead_to_timecode_dialog.cc
101           playhead_to_frame_dialog.cc
102           question_dialog.cc
103           recreate_chain_dialog.cc
104           repeat_dialog.cc
105           report_problem_dialog.cc
106           rename_template_dialog.cc
107           rgba_colour_picker.cc
108           save_template_dialog.cc
109           screen_dialog.cc
110           screens_panel.cc
111           self_dkdm_dialog.cc
112           server_dialog.cc
113           servers_list_dialog.cc
114           standard_controls.cc
115           static_text.cc
116           swaroop_controls.cc
117           system_font_dialog.cc
118           table_dialog.cc
119           templates_dialog.cc
120           time_picker.cc
121           timecode.cc
122           timeline.cc
123           timeline_atmos_content_view.cc
124           timeline_content_view.cc
125           timeline_dialog.cc
126           timeline_audio_content_view.cc
127           timeline_labels_view.cc
128           timeline_text_content_view.cc
129           timeline_reels_view.cc
130           timeline_time_axis_view.cc
131           timeline_video_content_view.cc
132           timeline_view.cc
133           timing_panel.cc
134           update_dialog.cc
135           verify_dcp_dialog.cc
136           video_panel.cc
137           video_waveform_dialog.cc
138           video_waveform_plot.cc
139           wx_util.cc
140           wx_signal_manager.cc
141           """
142
143 def configure(conf):
144     try:
145         wx_config = '/usr/lib64/wx/config/gtk2-unicode-3.0'
146         conf.check_cfg(msg='Checking for wxWidgets using gtk2-unicode-3.0',
147                        package='',
148                        path=wx_config,
149                        args='--cppflags --cxxflags --libs std,richtext',
150                        uselib_store='WXWIDGETS',
151                        mandatory=True)
152     except:
153         try:
154             wx_config = 'wx-config-3.0-gtk2'
155             conf.check_cfg(msg='Checking for wxWidgets using wx-config-3.0-gtk2',
156                            package='',
157                            path=wx_config,
158                            args='--cppflags --cxxflags --libs std,richtext',
159                            uselib_store='WXWIDGETS',
160                            mandatory=True)
161         except:
162             wx_config = 'wx-config'
163             conf.check_cfg(msg='Checking for wxWidgets using wx-config',
164                            package='',
165                            path=wx_config,
166                            args='--cppflags --cxxflags --libs std,richtext',
167                            uselib_store='WXWIDGETS',
168                            mandatory=True)
169
170     if conf.options.static_wxwidgets:
171         # wx-config returns its static libraries as full paths, without -l prefixes, which confuses
172         # check_cfg().  It puts the static libraries into LINKFLAGS_WXWIDGETS, so fish them out.
173         stlibs = []
174         new_linkflags = []
175         stlib_paths = []
176         for f in conf.env.LINKFLAGS_WXWIDGETS:
177             if f.startswith('/'):
178                 d = os.path.dirname(f)
179                 if not d in stlib_paths:
180                     stlib_paths.append(d)
181                 stlibs.append(os.path.basename(f)[3:-2])
182             else:
183                 new_linkflags.append(f)
184
185         conf.env.STLIB_WXWIDGETS = stlibs
186         conf.env.LINKFLAGS_WXWIDGETS = new_linkflags
187         conf.env.STLIBPATH_WXWIDGETS = stlib_paths
188
189     conf.in_msg = 1
190     wx_version = conf.check_cfg(package='wxwidgets', path=wx_config, args='--version').strip()
191     conf.im_msg = 0
192     if not wx_version.startswith('3.0.'):
193         conf.fatal('wxwidgets version 3.0.x is required; %s found' % wx_version)
194
195     try:
196         conf.check_cfg(msg='Checking for RtAudio using pkg-config',
197                        package='rtaudio',
198                        args='--cflags --libs',
199                        uselib_store='RTAUDIO',
200                        mandatory=True)
201     except:
202         conf.check_cfg(msg='Checking for RtAudio headers using rtaudio-config',
203                        package='',
204                        path='rtaudio-config',
205                        args='--cppflags',
206                        uselib_store='RTAUDIO',
207                        mandatory=True)
208
209         conf.check_cfg(msg='Checking for RtAudio libraries using rtaudio-config',
210                        package='',
211                        path='rtaudio-config',
212                        args='--libs',
213                        uselib_store='RTAUDIO',
214                        mandatory=True)
215
216     # Some rtaudio-configs don't include rtaudio as a link library.  Go figure.
217     conf.env.LIB_RTAUDIO.append('rtaudio')
218     # Don't explicitly link with pthread on Windows
219     if conf.env.TARGET_WINDOWS:
220         conf.env.CFLAGS_RTAUDIO.remove('-pthread')
221         conf.env.LINKFLAGS_RTAUDIO.remove('-pthread')
222
223     conf.check_cxx(fragment="""
224                             #include <RtAudio.h>\n
225                             int main() { throw RtError("Hello"); }
226                             """,
227                    msg='Checking for RtError class',
228                    use='RTAUDIO',
229                    uselib_store='',
230                    define_name='DCPOMATIC_USE_RTERROR',
231                    mandatory=False)
232
233
234
235 def build(bld):
236     if bld.env.STATIC_DCPOMATIC:
237         obj = bld(features='cxx cxxstlib')
238     else:
239         obj = bld(features='cxx cxxshlib')
240
241     obj.name   = 'libdcpomatic2-wx'
242     obj.export_includes = ['..']
243     obj.uselib = 'BOOST_FILESYSTEM BOOST_THREAD BOOST_REGEX WXWIDGETS DCP SUB ZIP CXML RTAUDIO '
244     if bld.env.TARGET_LINUX:
245         obj.uselib += 'GTK '
246     if bld.env.TARGET_WINDOWS:
247         obj.uselib += 'WINSOCK2 OLE32 DSOUND WINMM KSUSER '
248     if bld.env.TARGET_OSX:
249         obj.framework = ['CoreAudio']
250     obj.use = 'libdcpomatic2'
251     obj.source = sources
252     obj.target = 'dcpomatic2-wx'
253
254     i18n.po_to_mo(os.path.join('src', 'wx'), 'libdcpomatic2-wx', bld)
255
256 def pot(bld):
257     i18n.pot(os.path.join('src', 'wx'), sources + " editable_list.h content_widget.h", 'libdcpomatic-wx')
258
259 def pot_merge(bld):
260     i18n.pot_merge(os.path.join('src', 'wx'), 'libdcpomatic-wx')