1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
/*
Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/** @file src/wx/wx_util.cc
* @brief Some utility functions and classes.
*/
#include <boost/thread.hpp>
#include <wx/filepicker.h>
#include <wx/spinctrl.h>
#include "wx_util.h"
using namespace std;
using namespace boost;
/** Add a wxStaticText to a wxSizer, aligning it at vertical centre.
* @param s Sizer to add to.
* @param p Parent window for the wxStaticText.
* @param t Text for the wxStaticText.
* @param prop Properties to pass when calling Add() on the wxSizer.
*/
wxStaticText *
add_label_to_sizer (wxSizer* s, wxWindow* p, string t, int prop)
{
wxStaticText* m = new wxStaticText (p, wxID_ANY, std_to_wx (t));
s->Add (m, prop, wxALIGN_CENTER_VERTICAL | wxALL, 6);
return m;
}
/** Pop up an error dialogue box.
* @param parent Parent.
* @param m Message.
*/
void
error_dialog (wxWindow* parent, string m)
{
wxMessageDialog* d = new wxMessageDialog (parent, std_to_wx (m), wxT ("DVD-o-matic"), wxOK);
d->ShowModal ();
d->Destroy ();
}
/** @param s wxWidgets string.
* @return Corresponding STL string.
*/
string
wx_to_std (wxString s)
{
return string (s.mb_str ());
}
/** @param s STL string.
* @return Corresponding wxWidgets string.
*/
wxString
std_to_wx (string s)
{
return wxString (s.c_str(), wxConvUTF8);
}
int const ThreadedStaticText::_update_event_id = 10000;
/** @param parent Parent for the wxStaticText.
* @param initial Initial text for the wxStaticText while the computation is being run.
* @param fn Function which works out what the wxStaticText content should be and returns it.
*/
ThreadedStaticText::ThreadedStaticText (wxWindow* parent, string initial, function<string ()> fn)
: wxStaticText (parent, wxID_ANY, std_to_wx (initial))
{
Connect (_update_event_id, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (ThreadedStaticText::thread_finished), 0, this);
_thread = new thread (bind (&ThreadedStaticText::run, this, fn));
}
ThreadedStaticText::~ThreadedStaticText ()
{
_thread->interrupt ();
_thread->join ();
delete _thread;
}
/** Run our thread and post the result to the GUI thread via AddPendingEvent */
void
ThreadedStaticText::run (function<string ()> fn)
{
wxCommandEvent ev (wxEVT_COMMAND_TEXT_UPDATED, _update_event_id);
ev.SetString (std_to_wx (fn ()));
GetEventHandler()->AddPendingEvent (ev);
}
/** Called in the GUI thread when our worker thread has finished */
void
ThreadedStaticText::thread_finished (wxCommandEvent& ev)
{
SetLabel (ev.GetString ());
}
void
checked_set (wxFilePickerCtrl* widget, string value)
{
if (widget->GetPath() != std_to_wx (value)) {
widget->SetPath (std_to_wx (value));
}
}
void
checked_set (wxSpinCtrl* widget, int value)
{
if (widget->GetValue() != value) {
widget->SetValue (value);
}
}
void
checked_set (wxComboBox* widget, int value)
{
if (widget->GetSelection() != value) {
widget->SetSelection (value);
}
}
void
checked_set (wxTextCtrl* widget, string value)
{
if (widget->GetValue() != std_to_wx (value)) {
widget->ChangeValue (std_to_wx (value));
}
}
void
checked_set (wxCheckBox* widget, bool value)
{
if (widget->GetValue() != value) {
widget->SetValue (value);
}
}
void
checked_set (wxRadioButton* widget, bool value)
{
if (widget->GetValue() != value) {
widget->SetValue (value);
}
}
|