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