summaryrefslogtreecommitdiff
path: root/ui/mouseMoveWindow.cpp
blob: 86064141ae92d9f0e90b323519a443d129c6e8e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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