diff options
Diffstat (limited to 'ui/mouse_move_dlg.h')
-rw-r--r-- | ui/mouse_move_dlg.h | 40 |
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 |