4e6c03dcad4811265def2f78e1e6e15fb3e18655
[dcpomatic.git] / src / wx / wx_util.cc
1 /*
2     Copyright (C) 2012-2021 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
21
22 /** @file src/wx/wx_util.cc
23  *  @brief Some utility functions and classes.
24  */
25
26
27 #include "file_picker_ctrl.h"
28 #include "language_tag_widget.h"
29 #include "password_entry.h"
30 #include "region_subtag_widget.h"
31 #include "static_text.h"
32 #include "wx_ptr.h"
33 #include "wx_util.h"
34 #include "lib/config.h"
35 #include "lib/cross.h"
36 #include "lib/job.h"
37 #include "lib/job_manager.h"
38 #include "lib/util.h"
39 #include "lib/version.h"
40 #include <dcp/locale_convert.h>
41 #include <dcp/warnings.h>
42 LIBDCP_DISABLE_WARNINGS
43 #include <wx/filepicker.h>
44 #include <wx/progdlg.h>
45 #include <wx/sizer.h>
46 #include <wx/spinctrl.h>
47 #include <wx/splash.h>
48 LIBDCP_ENABLE_WARNINGS
49 #include <boost/thread.hpp>
50
51
52 using std::string;
53 using std::vector;
54 using std::pair;
55 using std::shared_ptr;
56 using boost::optional;
57 using dcp::locale_convert;
58 using namespace dcpomatic;
59
60
61 wxStaticText *
62 #ifdef __WXOSX__
63 create_label (wxWindow* p, wxString t, bool left)
64 #else
65 create_label (wxWindow* p, wxString t, bool)
66 #endif
67 {
68 #ifdef __WXOSX__
69         if (left) {
70                 t += wxT (":");
71         }
72 #endif
73         return new StaticText (p, t);
74 }
75
76
77 #ifdef __WXOSX__
78 static
79 void
80 setup_osx_flags (wxSizer* s, bool left, int& flags)
81 {
82         if (left) {
83                 auto box = dynamic_cast<wxBoxSizer*>(s);
84                 if (!box || box->GetOrientation() != wxHORIZONTAL) {
85                         flags |= wxALIGN_RIGHT;
86                 }
87         }
88 }
89 #endif
90
91
92 /** Add a wxStaticText to a wxSizer.
93  *  @param s Sizer to add to.
94  *  @param p Parent window for the wxStaticText.
95  *  @param t Text for the wxStaticText.
96  *  @param left true if this label is a `left label'; ie the sort
97  *  of label which should be right-aligned on OS X.
98  *  @param prop Proportion to pass when calling Add() on the wxSizer.
99  */
100 wxStaticText *
101 add_label_to_sizer (wxSizer* s, wxWindow* p, wxString t, bool left, int prop, int flags)
102 {
103 #ifdef __WXOSX__
104         setup_osx_flags (s, left, flags);
105 #endif
106         auto m = create_label (p, t, left);
107         s->Add (m, prop, flags, DCPOMATIC_SIZER_GAP);
108         return m;
109 }
110
111
112 wxStaticText *
113 #ifdef __WXOSX__
114 add_label_to_sizer (wxSizer* s, wxStaticText* t, bool left, int prop, int flags)
115 #else
116 add_label_to_sizer (wxSizer* s, wxStaticText* t, bool, int prop, int flags)
117 #endif
118 {
119 #ifdef __WXOSX__
120         setup_osx_flags (s, left, flags);
121 #endif
122         s->Add (t, prop, flags, DCPOMATIC_SIZER_GAP);
123         return t;
124 }
125
126
127 wxStaticText *
128 add_label_to_sizer(wxGridBagSizer* s, wxWindow* p, wxString t, bool left, wxGBPosition pos, wxGBSpan span, bool indent)
129 {
130         int flags = wxALIGN_CENTER_VERTICAL | wxLEFT;
131 #ifdef __WXOSX__
132         setup_osx_flags (s, left, flags);
133 #endif
134         auto m = create_label (p, t, left);
135         s->Add(m, pos, span, flags, indent ? DCPOMATIC_SIZER_X_GAP : 0);
136         return m;
137 }
138
139
140 wxStaticText *
141 #ifdef __WXOSX__
142 add_label_to_sizer (wxGridBagSizer* s, wxStaticText* t, bool left, wxGBPosition pos, wxGBSpan span)
143 #else
144 add_label_to_sizer (wxGridBagSizer* s, wxStaticText* t, bool, wxGBPosition pos, wxGBSpan span)
145 #endif
146 {
147         int flags = wxALIGN_CENTER_VERTICAL | wxLEFT | wxRIGHT;
148 #ifdef __WXOSX__
149         setup_osx_flags (s, left, flags);
150 #endif
151         s->Add (t, pos, span, flags);
152         return t;
153 }
154
155
156 /** Pop up an error dialogue box.
157  *  @param parent Parent.
158  *  @param m Message.
159  *  @param e Extended message.
160  */
161 void
162 error_dialog (wxWindow* parent, wxString m, optional<wxString> e)
163 {
164         auto d = make_wx<wxMessageDialog>(parent, m, _("DCP-o-matic"), wxOK | wxICON_ERROR);
165         if (e) {
166                 wxString em = *e;
167                 em[0] = wxToupper (em[0]);
168                 d->SetExtendedMessage (em);
169         }
170         d->ShowModal ();
171 }
172
173
174 /** Pop up an error dialogue box.
175  *  @param parent Parent.
176  *  @param m Message.
177  */
178 void
179 message_dialog (wxWindow* parent, wxString m)
180 {
181         auto d = make_wx<wxMessageDialog>(parent, m, _("DCP-o-matic"), wxOK | wxICON_INFORMATION);
182         d->ShowModal ();
183 }
184
185
186 /** @return true if the user answered "yes" */
187 bool
188 confirm_dialog (wxWindow* parent, wxString m)
189 {
190         auto d = make_wx<wxMessageDialog>(parent, m, _("DCP-o-matic"), wxYES_NO | wxICON_QUESTION);
191         return d->ShowModal() == wxID_YES;
192 }
193
194
195 /** @param s wxWidgets string.
196  *  @return Corresponding STL string.
197  */
198 string
199 wx_to_std (wxString s)
200 {
201         return string (s.ToUTF8());
202 }
203
204
205 /** @param s STL string.
206  *  @return Corresponding wxWidgets string.
207  */
208 wxString
209 std_to_wx (string s)
210 {
211         return wxString (s.c_str(), wxConvUTF8);
212 }
213
214
215 string
216 string_client_data (wxClientData* o)
217 {
218         return wx_to_std (dynamic_cast<wxStringClientData*>(o)->GetData());
219 }
220
221
222 void
223 checked_set (FilePickerCtrl* widget, boost::filesystem::path value)
224 {
225         if (widget->path() != value) {
226                 if (value.empty()) {
227                         /* Hack to make wxWidgets clear the control when we are passed
228                            an empty value.
229                         */
230                         value = " ";
231                 }
232                 widget->set_path(value);
233         }
234 }
235
236
237 void
238 checked_set (wxDirPickerCtrl* widget, boost::filesystem::path value)
239 {
240         if (widget->GetPath() != std_to_wx (value.string())) {
241                 if (value.empty()) {
242                         /* Hack to make wxWidgets clear the control when we are passed
243                            an empty value.
244                         */
245                         value = " ";
246                 }
247                 widget->SetPath (std_to_wx (value.string()));
248         }
249 }
250
251
252 void
253 checked_set (wxSpinCtrl* widget, int value)
254 {
255         if (widget->GetValue() != value) {
256                 widget->SetValue (value);
257         }
258 }
259
260
261 void
262 checked_set (wxSpinCtrlDouble* widget, double value)
263 {
264         /* XXX: completely arbitrary epsilon */
265         if (fabs (widget->GetValue() - value) > 1e-16) {
266                 widget->SetValue (value);
267         }
268 }
269
270
271 void
272 checked_set (wxChoice* widget, int value)
273 {
274         if (widget->GetSelection() != value) {
275                 widget->SetSelection (value);
276         }
277 }
278
279
280 void
281 checked_set (wxChoice* widget, string value)
282 {
283         wxClientData* o = nullptr;
284         if (widget->GetSelection() != -1) {
285                 o = widget->GetClientObject (widget->GetSelection ());
286         }
287
288         if (!o || string_client_data(o) != value) {
289                 for (unsigned int i = 0; i < widget->GetCount(); ++i) {
290                         if (string_client_data (widget->GetClientObject (i)) == value) {
291                                 widget->SetSelection (i);
292                         }
293                 }
294         }
295 }
296
297
298 void
299 checked_set (wxChoice* widget, vector<pair<string, string>> items)
300 {
301        vector<pair<string, string>> current;
302        for (unsigned int i = 0; i < widget->GetCount(); ++i) {
303                current.push_back (
304                        make_pair(
305                                wx_to_std(widget->GetString(i)),
306                                widget->GetClientData() ? string_client_data(widget->GetClientObject(i)) : ""
307                                )
308                        );
309        }
310
311        if (current == items) {
312                return;
313        }
314
315        widget->Clear ();
316        for (auto i: items) {
317                widget->Append (std_to_wx(i.first), new wxStringClientData(std_to_wx(i.second)));
318        }
319 }
320
321
322 void
323 checked_set (wxTextCtrl* widget, string value)
324 {
325         if (widget->GetValue() != std_to_wx (value)) {
326                 widget->ChangeValue (std_to_wx (value));
327         }
328 }
329
330
331 void
332 checked_set (PasswordEntry* entry, string value)
333 {
334         if (entry->get() != value) {
335                 entry->set(value);
336         }
337 }
338
339
340 void
341 checked_set (wxTextCtrl* widget, wxString value)
342 {
343         if (widget->GetValue() != value) {
344                 widget->ChangeValue (value);
345         }
346 }
347
348
349 void
350 checked_set (wxStaticText* widget, string value)
351 {
352         if (widget->GetLabel() != std_to_wx (value)) {
353                 widget->SetLabel (std_to_wx (value));
354         }
355 }
356
357
358 void
359 checked_set (wxStaticText* widget, wxString value)
360 {
361         if (widget->GetLabel() != value) {
362                 widget->SetLabel (value);
363         }
364 }
365
366
367 void
368 checked_set (wxCheckBox* widget, bool value)
369 {
370         if (widget->GetValue() != value) {
371                 widget->SetValue (value);
372         }
373 }
374
375
376 void
377 checked_set (wxRadioButton* widget, bool value)
378 {
379         if (widget->GetValue() != value) {
380                 widget->SetValue (value);
381         }
382 }
383
384
385 void
386 checked_set(LanguageTagWidget* widget, dcp::LanguageTag value)
387 {
388         if (widget->get() != value) {
389                 widget->set(value);
390         }
391 }
392
393
394 void
395 checked_set(LanguageTagWidget* widget, optional<dcp::LanguageTag> value)
396 {
397         if (widget->get() != value) {
398                 widget->set(value);
399         }
400 }
401
402
403 void
404 checked_set(RegionSubtagWidget* widget, optional<dcp::LanguageTag::RegionSubtag> value)
405 {
406         if (widget->get() != value) {
407                 widget->set(value);
408         }
409 }
410
411
412 #ifdef DCPOMATIC_OSX
413
414 void
415 dcpomatic_setup_i18n()
416 {
417         wxLog::EnableLogging();
418
419         auto get_locale_value = [](CFLocaleKey key) {
420                 CFLocaleRef cflocale = CFLocaleCopyCurrent();
421                 auto value = (CFStringRef) CFLocaleGetValue(cflocale, key);
422                 char buffer[64];
423                 CFStringGetCString(value, buffer, sizeof(buffer), kCFStringEncodingUTF8);
424                 CFRelease(cflocale);
425                 return string(buffer);
426         };
427
428         auto translations = new wxTranslations();
429
430         auto config_lang = Config::instance()->language();
431         if (config_lang && !config_lang->empty()) {
432                 translations->SetLanguage(std_to_wx(*config_lang));
433         } else {
434                 /* We want to use the user's preferred language.  It seems that if we use the wxWidgets default we will get the
435                  * language for the locale, which may not be what we want (e.g. for a machine in Germany, configured for DE locale,
436                  * but with the preferred language set to English).
437                  *
438                  * Instead, the the language code from macOS then get the corresponding canonical language string with region,
439                  * which wxTranslations::SetLanguage will accept.
440                  */
441                 auto const language_code = get_locale_value(kCFLocaleLanguageCode);
442                 /* Ideally this would be wxUILocale (as wxLocale is deprecated) but we want to keep this building
443                  * with the old wxWidgets we use for the older macOS builds.
444                  */
445                 auto const info = wxLocale::FindLanguageInfo(std_to_wx(language_code));
446                 if (info) {
447                         translations->SetLanguage(info->GetCanonicalWithRegion());
448                 }
449         }
450
451 #ifdef DCPOMATIC_DEBUG
452         wxFileTranslationsLoader::AddCatalogLookupPathPrefix(wxT("build/src/wx/mo"));
453         wxFileTranslationsLoader::AddCatalogLookupPathPrefix(wxT("build/src/tools/mo"));
454 #endif
455
456         translations->AddStdCatalog();
457         translations->AddCatalog(wxT("libdcpomatic2-wx"));
458         translations->AddCatalog(wxT("dcpomatic2"));
459
460         wxTranslations::Set(translations);
461
462         dcpomatic_setup_gettext_i18n(config_lang.get_value_or(""));
463 }
464
465 #else
466
467 void
468 dcpomatic_setup_i18n ()
469 {
470         int language = wxLANGUAGE_DEFAULT;
471
472         auto config_lang = Config::instance()->language ();
473         if (config_lang && !config_lang->empty ()) {
474                 auto const li = wxLocale::FindLanguageInfo (std_to_wx (config_lang.get ()));
475                 if (li) {
476                         language = li->Language;
477                 }
478         }
479
480         wxLocale* locale = nullptr;
481         if (wxLocale::IsAvailable (language)) {
482                 locale = new wxLocale (language, wxLOCALE_LOAD_DEFAULT);
483
484 #ifdef DCPOMATIC_WINDOWS
485                 locale->AddCatalogLookupPathPrefix (std_to_wx (mo_path().string()));
486 #endif
487
488 #ifdef DCPOMATIC_LINUX
489                 locale->AddCatalogLookupPathPrefix (LINUX_LOCALE_PREFIX);
490
491                 /* We have to include the wxWidgets .mo in our distribution,
492                    so we rename it to avoid clashes with any other installation
493                    of wxWidgets.
494                 */
495                 locale->AddCatalog (wxT ("dcpomatic2-wxstd"));
496
497                 /* Fedora 29 (at least) installs wxstd3.mo instead of wxstd.mo */
498                 locale->AddCatalog (wxT ("wxstd3"));
499 #endif
500
501                 locale->AddCatalog(wxT("wxstd"));
502                 locale->AddCatalog(wxT("libdcpomatic2-wx"));
503                 locale->AddCatalog(wxT("dcpomatic2"));
504
505                 if (!locale->IsOk()) {
506                         delete locale;
507                         locale = new wxLocale (wxLANGUAGE_ENGLISH);
508                 }
509         }
510
511         if (locale) {
512                 dcpomatic_setup_gettext_i18n (wx_to_std (locale->GetCanonicalName ()));
513         }
514 }
515
516 #endif
517
518
519 int
520 wx_get (wxSpinCtrl* w)
521 {
522         return w->GetValue ();
523 }
524
525
526 int
527 wx_get (wxChoice* w)
528 {
529         return w->GetSelection ();
530 }
531
532
533 double
534 wx_get (wxSpinCtrlDouble* w)
535 {
536         return w->GetValue ();
537 }
538
539
540 /** @param s String of the form Context|String
541  *  @return translation, or String if no translation is available.
542  */
543 wxString
544 context_translation (wxString s)
545 {
546         auto t = wxGetTranslation (s);
547         if (t == s) {
548                 /* No translation; strip the context */
549                 int c = t.Find (wxT ("|"));
550                 if (c != wxNOT_FOUND) {
551                         t = t.Mid (c + 1);
552                 }
553         }
554
555         return t;
556 }
557
558
559 wxString
560 time_to_timecode (DCPTime t, double fps)
561 {
562         auto w = t.seconds ();
563         int const h = (w / 3600);
564         w -= h * 3600;
565         int const m = (w / 60);
566         w -= m * 60;
567         int const s = floor (w);
568         w -= s;
569         int const f = lrint (w * fps);
570         return wxString::Format (wxT("%02d:%02d:%02d.%02d"), h, m, s, f);
571 }
572
573
574 void
575 setup_audio_channels_choice (wxChoice* choice, int minimum)
576 {
577         vector<pair<string, string>> items;
578         for (int i = minimum; i <= 16; i += 2) {
579                 if (i == 2) {
580                         items.push_back (make_pair(wx_to_std(_("2 - stereo")), locale_convert<string>(i)));
581                 } else if (i == 4) {
582                         items.push_back (make_pair(wx_to_std(_("4 - L/C/R/Lfe")), locale_convert<string>(i)));
583                 } else if (i == 6) {
584                         items.push_back (make_pair(wx_to_std(_("6 - 5.1")), locale_convert<string>(i)));
585                 } else if (i == 8) {
586                         items.push_back (make_pair(wx_to_std(_("8 - 5.1/HI/VI")), locale_convert<string>(i)));
587                 } else if (i == 12) {
588                         items.push_back (make_pair(wx_to_std(_("12 - 7.1/HI/VI")), locale_convert<string>(i)));
589                 } else {
590                         items.push_back (make_pair(locale_convert<string> (i), locale_convert<string>(i)));
591                 }
592         }
593
594         checked_set (choice, items);
595 }
596
597
598 wxSplashScreen*
599 maybe_show_splash ()
600 {
601         wxSplashScreen* splash = nullptr;
602
603         try {
604                 wxBitmap bitmap;
605                 if (bitmap.LoadFile(bitmap_path("splash.png"), wxBITMAP_TYPE_PNG)) {
606                         {
607                                 /* This wxMemoryDC must be destroyed before bitmap can be used elsewhere */
608                                 wxMemoryDC dc(bitmap);
609                                 auto const version = wxString::Format("%s (%s)", dcpomatic_version, dcpomatic_git_commit);
610                                 auto screen_size = dc.GetSize();
611                                 auto text_size = dc.GetTextExtent(version);
612                                 dc.DrawText(version, (screen_size.GetWidth() - text_size.GetWidth()) / 2, 236);
613                         }
614 #ifdef DCPOMATIC_WINDOWS
615                         /* Having wxSTAY_ON_TOP means error dialogues hide behind the splash screen on Windows, no matter what I try */
616                         splash = new wxSplashScreen(bitmap, wxSPLASH_CENTRE_ON_SCREEN | wxSPLASH_NO_TIMEOUT, 0, nullptr, -1, wxDefaultPosition, wxDefaultSize, wxBORDER_SIMPLE | wxFRAME_NO_TASKBAR);
617 #else
618                         splash = new wxSplashScreen(bitmap, wxSPLASH_CENTRE_ON_SCREEN | wxSPLASH_NO_TIMEOUT, 0, nullptr, -1);
619 #endif
620                         wxYield ();
621                 }
622         } catch (boost::filesystem::filesystem_error& e) {
623                 /* Maybe we couldn't find the splash image; never mind */
624         }
625
626         return splash;
627 }
628
629
630 double
631 calculate_mark_interval (double mark_interval)
632 {
633         if (mark_interval > 5) {
634                 mark_interval -= lrint (mark_interval) % 5;
635         }
636         if (mark_interval > 10) {
637                 mark_interval -= lrint (mark_interval) % 10;
638         }
639         if (mark_interval > 60) {
640                 mark_interval -= lrint (mark_interval) % 60;
641         }
642         if (mark_interval > 3600) {
643                 mark_interval -= lrint (mark_interval) % 3600;
644         }
645
646         if (mark_interval < 1) {
647                 mark_interval = 1;
648         }
649
650         return mark_interval;
651 }
652
653
654 /** @return false if the task was cancelled */
655 bool
656 display_progress (wxString title, wxString task)
657 {
658         auto jm = JobManager::instance ();
659
660         wxProgressDialog progress (title, task, 100, 0, wxPD_CAN_ABORT);
661
662         bool ok = true;
663
664         while (jm->work_to_do()) {
665                 dcpomatic_sleep_seconds (1);
666                 if (!progress.Pulse()) {
667                         /* user pressed cancel */
668                         for (auto i: jm->get()) {
669                                 i->cancel();
670                         }
671                         ok = false;
672                         break;
673                 }
674         }
675
676         return ok;
677 }
678
679
680 int
681 get_offsets (vector<Offset>& offsets)
682 {
683         offsets.push_back (Offset(_("UTC-11"),  -11,  0));
684         offsets.push_back (Offset(_("UTC-10"),  -10,  0));
685         offsets.push_back (Offset(_("UTC-9"),    -9,  0));
686         offsets.push_back (Offset(_("UTC-8"),    -8,  0));
687         offsets.push_back (Offset(_("UTC-7"),    -7,  0));
688         offsets.push_back (Offset(_("UTC-6"),    -6,  0));
689         offsets.push_back (Offset(_("UTC-5"),    -5,  0));
690         offsets.push_back (Offset(_("UTC-4:30"), -4, 30));
691         offsets.push_back (Offset(_("UTC-4"),    -4,  0));
692         offsets.push_back (Offset(_("UTC-3:30"), -3, 30));
693         offsets.push_back (Offset(_("UTC-3"),    -3,  0));
694         offsets.push_back (Offset(_("UTC-2"),    -2,  0));
695         offsets.push_back (Offset(_("UTC-1"),    -1,  0));
696         int utc = offsets.size();
697         offsets.push_back (Offset(_("UTC")  ,     0,  0));
698         offsets.push_back (Offset(_("UTC+1"),     1,  0));
699         offsets.push_back (Offset(_("UTC+2"),     2,  0));
700         offsets.push_back (Offset(_("UTC+3"),     3,  0));
701         offsets.push_back (Offset(_("UTC+4"),     4,  0));
702         offsets.push_back (Offset(_("UTC+5"),     5,  0));
703         offsets.push_back (Offset(_("UTC+5:30"),  5, 30));
704         offsets.push_back (Offset(_("UTC+6"),     6,  0));
705         offsets.push_back (Offset(_("UTC+7"),     7,  0));
706         offsets.push_back (Offset(_("UTC+8"),     8,  0));
707         offsets.push_back (Offset(_("UTC+9"),     9,  0));
708         offsets.push_back (Offset(_("UTC+9:30"),  9, 30));
709         offsets.push_back (Offset(_("UTC+10"),   10,  0));
710         offsets.push_back (Offset(_("UTC+11"),   11,  0));
711         offsets.push_back (Offset(_("UTC+12"),   12,  0));
712
713         return utc;
714 }
715
716
717 wxString
718 bitmap_path (string name)
719 {
720         boost::filesystem::path base;
721
722 #ifdef DCPOMATIC_DEBUG
723         /* Hack to allow Linux and OS X to find icons when running from the source tree */
724         char* path = getenv ("DCPOMATIC_GRAPHICS");
725         if (path) {
726                 base = path;
727         } else {
728                 base = resources_path();
729         }
730
731         if (!boost::filesystem::exists(base / name)) {
732                 base = path / boost::filesystem::path("osx/preferences");
733         }
734 #else
735         base = resources_path();
736 #endif
737
738         auto p = base / name;
739         return std_to_wx (p.string());
740 }
741
742
743 wxString
744 icon_path(string name)
745 {
746         return gui_is_dark() ? bitmap_path(String::compose("%1_white.png", name)) : bitmap_path(String::compose("%1_black.png", name));
747 }
748
749
750 wxSize
751 small_button_size (wxWindow* parent, wxString text)
752 {
753         wxClientDC dc (parent);
754         auto size = dc.GetTextExtent (text);
755         size.SetHeight (-1);
756         size.IncBy (32, 0);
757         return size;
758 }
759
760
761 bool
762 gui_is_dark ()
763 {
764 #if defined(DCPOMATIC_OSX) && wxCHECK_VERSION(3, 1, 0)
765         auto appearance = wxSystemSettings::GetAppearance();
766         return appearance.IsDark();
767 #else
768         return false;
769 #endif
770 }
771
772
773 #if wxCHECK_VERSION(3,1,0)
774 double
775 dpi_scale_factor (wxWindow* window)
776 {
777         return window->GetDPIScaleFactor();
778 }
779 #else
780 double
781 dpi_scale_factor (wxWindow*)
782 {
783         return 1;
784 }
785 #endif
786
787
788
789 int
790 search_ctrl_height ()
791 {
792 #ifdef __WXGTK3__
793         return 30;
794 #else
795         return -1;
796 #endif
797 }
798
799
800 void
801 report_config_load_failure(wxWindow* parent, Config::LoadFailure what)
802 {
803         switch (what) {
804         case Config::LoadFailure::CONFIG:
805                 message_dialog(parent, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
806                 break;
807         case Config::LoadFailure::CINEMAS:
808                 message_dialog(
809                         parent,
810                         _(wxString::Format("The cinemas list for creating KDMs (cinemas.xml) failed to load.  Please check the numbered backup files in %s",
811                                            std_to_wx(Config::instance()->cinemas_file().parent_path().string())))
812                         );
813                 break;
814         case Config::LoadFailure::DKDM_RECIPIENTS:
815                 message_dialog(
816                         parent,
817                         _(wxString::Format("The recipients list for creating DKDMs (dkdm_recipients.xml) failed to load.  Please check the numbered backup files in %s",
818                                            std_to_wx(Config::instance()->dkdm_recipients_file().parent_path().string())))
819                         );
820                 break;
821         }
822 }
823