1 #ifndef __TESTWINDOW_H__
2 #define __TESTWINDOW_H__
10 class TestWindowGUI : public BC_Window
16 int button_press_event();
17 int button_release_event();
18 int cursor_motion_event();
24 class TestWindow : public Thread
28 TestWindow() : Thread(1,0,0) { gui = new TestWindowGUI(); start(); }
29 ~TestWindow() { delete gui; }
30 void run() { gui->run_window(); }