summaryrefslogtreecommitdiff
path: root/ui/mouseMoveWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/mouseMoveWindow.cpp')
-rw-r--r--ui/mouseMoveWindow.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/ui/mouseMoveWindow.cpp b/ui/mouseMoveWindow.cpp
deleted file mode 100644
index 86064141..00000000
--- a/ui/mouseMoveWindow.cpp
+++ /dev/null
@@ -1,26 +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-2010 ZenJu (zhnmju123 AT gmx.de) *
-// **************************************************************************
-//
-#include "mouseMoveWindow.h"
-#include <wx/msw/wrapwin.h> //includes "windows.h"
-
-using namespace FreeFileSync;
-
-
-void MouseMoveWindow::connectSourceWindow(wxWindow* sourceWindow)
-{
- sourceWindow->Connect(wxEVT_LEFT_DOWN, wxMouseEventHandler(MouseMoveWindow::LeftButtonDown), NULL, this);
-}
-
-
-void MouseMoveWindow::LeftButtonDown(wxMouseEvent& event)
-{
- ::ReleaseCapture();
- //::SendMessage(GetHwndOf(dialogToMove_), WM_NCLBUTTONDOWN, HTCAPTION, 0);
- ::SendMessage(static_cast<HWND>(dialogToMove_->GetHWND()), WM_NCLBUTTONDOWN, HTCAPTION, 0);
-
- //event.Skip(); -> swallow event, to avoid other windows losing focus
-}
bgstack15