summaryrefslogtreecommitdiff
path: root/ui/mouse_move_dlg.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:10:11 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:10:11 +0200
commitc0cdb2ad99a1e2a6ade5ce76c91177a79258e669 (patch)
tree4701a015385d9a6a5a4ba99a8f1f5d400fff26b1 /ui/mouse_move_dlg.h
parent3.13 (diff)
downloadFreeFileSync-c0cdb2ad99a1e2a6ade5ce76c91177a79258e669.tar.gz
FreeFileSync-c0cdb2ad99a1e2a6ade5ce76c91177a79258e669.tar.bz2
FreeFileSync-c0cdb2ad99a1e2a6ade5ce76c91177a79258e669.zip
3.14
Diffstat (limited to 'ui/mouse_move_dlg.h')
-rw-r--r--ui/mouse_move_dlg.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/ui/mouse_move_dlg.h b/ui/mouse_move_dlg.h
deleted file mode 100644
index ccdf6c01..00000000
--- a/ui/mouse_move_dlg.h
+++ /dev/null
@@ -1,40 +0,0 @@
-// **************************************************************************
-// * 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