bb268ea68dea96784984fbba5f147f9acc737e67
[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, list<wxControl*>& c, string t)
30 {
31         wxStaticText* m = new wxStaticText (p, wxID_ANY, wxString (t.c_str (), wxConvUTF8));
32         c.push_back (m);
33         s->Add (m, 0, wxALIGN_CENTER_VERTICAL | wxALL, 6);
34         return m;
35 }
36
37 #if 0
38 void
39 error_dialog (string m)
40 {
41         Gtk::MessageDialog d (m, false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
42         d.set_title ("DVD-o-matic");
43         d.run ();
44 }
45 #endif
46
47 string
48 wx_to_std (wxString s)
49 {
50         return string (s.mb_str ());
51 }
52
53 wxString
54 std_to_wx (string s)
55 {
56         return wxString (s.c_str(), wxConvUTF8);
57 }