summaryrefslogtreecommitdiff
path: root/ui/dragAndDrop.cpp
blob: 2989e5444e2eed32e8e599fea17bcc1d21b96e1d (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
#include "dragAndDrop.h"
#include <wx/dnd.h>
#include <wx/window.h>
#include <wx/combobox.h>
#include <wx/textctrl.h>
#include <wx/filepicker.h>
#include <wx/filename.h>
#include "../algorithm.h"


//define new event type
const wxEventType FFS_DROP_FILE_EVENT = wxNewEventType();

typedef void (wxEvtHandler::*FFSFileDropEventFunction)(FFSFileDropEvent&);

#define FFSFileDropEventHandler(func) \
    (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(FFSFileDropEventFunction, &func)

class FFSFileDropEvent : public wxCommandEvent
{
public:
    FFSFileDropEvent(const wxString& nameDropped, const wxWindow* dropWindow) :
            wxCommandEvent(FFS_DROP_FILE_EVENT),
            nameDropped_(nameDropped),
            dropWindow_(dropWindow) {}

    virtual wxEvent* Clone() const
    {
        return new FFSFileDropEvent(nameDropped_, dropWindow_);
    }

    const wxString  nameDropped_;
    const wxWindow* dropWindow_;
};

//##############################################################################################################


class WindowDropTarget : public wxFileDropTarget
{
public:
    WindowDropTarget(wxWindow* dropWindow) :
            dropWindow_(dropWindow) {}

    virtual bool OnDropFiles(wxCoord x, wxCoord y, const wxArrayString& filenames)
    {
        if (!filenames.IsEmpty())
        {
            const wxString droppedFileName = filenames[0];

            //create a custom event on drop window: execute event after file dropping is completed! (e.g. after mouse is released)
            FFSFileDropEvent evt(droppedFileName, dropWindow_);
            dropWindow_->AddPendingEvent(evt);
        }
        return false;
    }

private:
    wxWindow* dropWindow_;
};



//##############################################################################################################

using FreeFileSync::DragDropOnMainDlg;

DragDropOnMainDlg::DragDropOnMainDlg(wxWindow*        dropWindow1,
                                     wxWindow*        dropWindow2,
                                     wxDirPickerCtrl* dirPicker,
                                     wxComboBox*      dirName) :
        dropWindow1_(dropWindow1),
        dropWindow2_(dropWindow2),
        dirPicker_(dirPicker),
        dirName_(dirName)
{
    //prepare drag & drop
    dropWindow1->SetDropTarget(new WindowDropTarget(dropWindow1)); //takes ownership
    dropWindow2->SetDropTarget(new WindowDropTarget(dropWindow2)); //takes ownership

    //redirect drag & drop event back to this class
    dropWindow1->Connect(FFS_DROP_FILE_EVENT, FFSFileDropEventHandler(DragDropOnMainDlg::OnFilesDropped), NULL, this);
    dropWindow2->Connect(FFS_DROP_FILE_EVENT, FFSFileDropEventHandler(DragDropOnMainDlg::OnFilesDropped), NULL, this);

    //keep dirPicker and dirName synchronous
    dirName->Connect( wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler( DragDropOnMainDlg::OnWriteDirManually ), NULL, this );
    dirPicker->Connect( wxEVT_COMMAND_DIRPICKER_CHANGED, wxFileDirPickerEventHandler( DragDropOnMainDlg::OnDirSelected ), NULL, this );
}


void DragDropOnMainDlg::OnFilesDropped(FFSFileDropEvent& event)
{
    if (    this->dropWindow1_ == event.dropWindow_ || //file may be dropped on window 1 or 2
            this->dropWindow2_ == event.dropWindow_)
    {
        if (AcceptDrop(event.nameDropped_))
        {
            wxString fileName = event.nameDropped_;
            if (wxDirExists(fileName))
            {
                dirName_->SetSelection(wxNOT_FOUND);
                dirName_->SetValue(fileName);
                dirPicker_->SetPath(fileName);
            }
            else
            {
                fileName = wxFileName(fileName).GetPath();
                if (wxDirExists(fileName))
                {
                    dirName_->SetSelection(wxNOT_FOUND);
                    dirName_->SetValue(fileName);
                    dirPicker_->SetPath(fileName);
                }
            }
        }
    }
    else //should never be reached
        event.Skip();
};


void DragDropOnMainDlg::OnWriteDirManually(wxCommandEvent& event)
{
    const wxString newDir = FreeFileSync::getFormattedDirectoryName(event.GetString().c_str()).c_str();
    if (wxDirExists(newDir))
        dirPicker_->SetPath(newDir);

    event.Skip();
}


void DragDropOnMainDlg::OnDirSelected(wxFileDirPickerEvent& event)
{
    const wxString newPath = event.GetPath();
    dirName_->SetSelection(wxNOT_FOUND);
    dirName_->SetValue(newPath);

    event.Skip();
}

//##############################################################################################################


using FreeFileSync::DragDropOnDlg;

DragDropOnDlg::DragDropOnDlg(wxWindow*        dropWindow,
                             wxDirPickerCtrl* dirPicker,
                             wxTextCtrl*      dirName) :
        dropWindow_(dropWindow),
        dirPicker_(dirPicker),
        dirName_(dirName)
{
    //prepare drag & drop
    dropWindow->SetDropTarget(new WindowDropTarget(dropWindow)); //takes ownership

    //redirect drag & drop event back to this class
    dropWindow->Connect(FFS_DROP_FILE_EVENT, FFSFileDropEventHandler(DragDropOnDlg::OnFilesDropped), NULL, this);

    //keep dirPicker and dirName synchronous
    dirName->Connect( wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler( DragDropOnDlg::OnWriteDirManually ), NULL, this );
    dirPicker->Connect( wxEVT_COMMAND_DIRPICKER_CHANGED, wxFileDirPickerEventHandler( DragDropOnDlg::OnDirSelected ), NULL, this );
}


void DragDropOnDlg::OnFilesDropped(FFSFileDropEvent& event)
{
    if (this->dropWindow_ == event.dropWindow_)
    {
        wxString fileName = event.nameDropped_;
        if (wxDirExists(fileName))
        {
            dirName_->SetValue(fileName);
            dirPicker_->SetPath(fileName);
        }
        else
        {
            fileName = wxFileName(fileName).GetPath();
            if (wxDirExists(fileName))
            {
                dirName_->SetValue(fileName);
                dirPicker_->SetPath(fileName);
            }
        }
    }
    else //should never be reached
        event.Skip();
};


void DragDropOnDlg::OnWriteDirManually(wxCommandEvent& event)
{
    const wxString newDir = FreeFileSync::getFormattedDirectoryName(event.GetString().c_str()).c_str();
    if (wxDirExists(newDir))
        dirPicker_->SetPath(newDir);

    event.Skip();
}


void DragDropOnDlg::OnDirSelected(wxFileDirPickerEvent& event)
{
    const wxString newPath = event.GetPath();
    dirName_->SetValue(newPath);

    event.Skip();
}

bgstack15