4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
6 * This program 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.
11 * This program 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.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "bcsignals.h"
24 #include "condition.h"
31 BC_DialogThread::BC_DialogThread()
35 startup_lock = new Condition(1, "BC_DialogThread::startup_lock");
36 window_lock = new Mutex("BC_DialogThread::window_lock");
39 BC_DialogThread::~BC_DialogThread()
41 startup_lock->lock("BC_DialogThread::~BC_DialogThread");
48 startup_lock->unlock();
54 void BC_DialogThread::lock_window(const char *location)
56 window_lock->lock(location);
59 void BC_DialogThread::unlock_window()
61 window_lock->unlock();
64 int BC_DialogThread::is_running()
66 return Thread::running();
69 void BC_DialogThread::start()
73 window_lock->lock("BC_DialogThread::start");
76 gui->lock_window("BC_DialogThread::start");
80 window_lock->unlock();
84 // Don't allow anyone else to create the window
85 startup_lock->lock("BC_DialogThread::start");
89 startup_lock->lock("BC_DialogThread::start");
90 startup_lock->unlock();
94 void BC_DialogThread::run()
97 startup_lock->unlock();
98 int result = gui->run_window();
100 handle_done_event(result);
102 window_lock->lock("BC_DialogThread::run");
105 window_lock->unlock();
107 handle_close_event(result);
110 void BC_DialogThread::lock_gui(const char *location)
112 window_lock->lock(location);
115 void BC_DialogThread::unlock_gui()
117 window_lock->unlock();
121 BC_Window* BC_DialogThread::new_gui()
123 printf("BC_DialogThread::new_gui called\n");
127 BC_Window* BC_DialogThread::get_gui()
132 void BC_DialogThread::handle_done_event(int result)
136 void BC_DialogThread::handle_close_event(int result)
140 void BC_DialogThread::close_window()
142 lock_window("BC_DialogThread::close_window");
145 gui->lock_window("BC_DialogThread::close_window");
147 gui->unlock_window();