Tweak job manager layout.
[dcpomatic.git] / src / wx / wx_util.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file src/wx/wx_util.cc
21  *  @brief Some utility functions.
22  */
23
24 #include "wx_util.h"
25
26 using namespace std;
27
28 wxStaticText *
29 add_label_to_sizer (wxSizer* s, wxWindow* p, string t, int prop)
30 {
31         wxStaticText* m = new wxStaticText (p, wxID_ANY, wxString (t.c_str (), wxConvUTF8));
32         s->Add (m, prop, wxALIGN_CENTER_VERTICAL | wxALL, 6);
33         return m;
34 }
35
36 void
37 error_dialog (wxWindow* parent, string m)
38 {
39         wxMessageDialog* d = new wxMessageDialog (parent, std_to_wx (m), wxT ("DVD-o-matic"), wxOK);
40         d->ShowModal ();
41         d->Destroy ();
42 }
43
44 string
45 wx_to_std (wxString s)
46 {
47         return string (s.mb_str ());
48 }
49
50 wxString
51 std_to_wx (string s)
52 {
53         return wxString (s.c_str(), wxConvUTF8);
54 }