summaryrefslogtreecommitdiff
path: root/shared/mouse_move_dlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/mouse_move_dlg.h')
-rw-r--r--shared/mouse_move_dlg.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/shared/mouse_move_dlg.h b/shared/mouse_move_dlg.h
new file mode 100644
index 00000000..ccdf6c01
--- /dev/null
+++ b/shared/mouse_move_dlg.h
@@ -0,0 +1,40 @@
+// **************************************************************************
+// * This file is part of the FreeFileSync project. It is distributed under *
+// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
+// * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) *
+// **************************************************************************
+//
+#ifndef MOUSEMOVEWINDOW_H_INCLUDED
+#define MOUSEMOVEWINDOW_H_INCLUDED
+
+#include <wx/window.h>
+
+namespace ffs3
+{
+
+//move main dialog by mouse-dragging contained sub-windows: just attach to parent via new in constructor: ownership passed!
+class MouseMoveWindow : public wxWindow //private wxEvtHandler
+{
+public:
+ MouseMoveWindow(wxWindow& parent,
+ wxWindow* child1,
+ wxWindow* child2 = NULL,
+ wxWindow* child3 = NULL,
+ wxWindow* child4 = NULL,
+ wxWindow* child5 = NULL,
+ wxWindow* child6 = NULL);
+
+ virtual ~MouseMoveWindow();
+
+ virtual bool allowMove(const wxMouseEvent& event)
+ {
+ return true;
+ }
+
+private:
+ void LeftButtonDown(wxMouseEvent& event);
+};
+}
+
+
+#endif // MOUSEMOVEWINDOW_H_INCLUDED
bgstack15