Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.0 / cinelerra / testwindow.h
diff --git a/cinelerra-5.0/cinelerra/testwindow.h b/cinelerra-5.0/cinelerra/testwindow.h
deleted file mode 100644 (file)
index 8d06c95..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef __TESTWINDOW_H__
-#define __TESTWINDOW_H__
-
-#include "bcwindow.h"
-#include "bcsignals.h"
-#include "colors.h"
-#include "fonts.h"
-#include "thread.h"
-
-class TestWindowGUI : public BC_Window
-{
-       int tx, ty;
-       int last_x, last_y;
-       int in_motion;
-public:
-       int button_press_event();
-       int button_release_event();
-       int cursor_motion_event();
-       TestWindowGUI();
-       ~TestWindowGUI();
-};
-
-
-class TestWindow : public Thread
-{
-       TestWindowGUI *gui;
-public:
-       TestWindow() : Thread(1,0,0) { gui = new TestWindowGUI(); start(); }
-       ~TestWindow() { delete gui; }
-       void run() { gui->run_window(); }
-};
-
-#endif