summaryrefslogtreecommitdiff
path: root/ui/mouseMoveWindow.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:05:30 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:05:30 +0200
commitc0fce877c478ddbf71a1b651c789e5ea00a00144 (patch)
treede01b0ae8fd296bd24fbca54a80f2f0ba071d461 /ui/mouseMoveWindow.cpp
parent3.3 (diff)
downloadFreeFileSync-c0fce877c478ddbf71a1b651c789e5ea00a00144.tar.gz
FreeFileSync-c0fce877c478ddbf71a1b651c789e5ea00a00144.tar.bz2
FreeFileSync-c0fce877c478ddbf71a1b651c789e5ea00a00144.zip
3.4
Diffstat (limited to 'ui/mouseMoveWindow.cpp')
-rw-r--r--ui/mouseMoveWindow.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/ui/mouseMoveWindow.cpp b/ui/mouseMoveWindow.cpp
new file mode 100644
index 00000000..86064141
--- /dev/null
+++ b/ui/mouseMoveWindow.cpp
@@ -0,0 +1,26 @@
+// **************************************************************************
+// * 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