summaryrefslogtreecommitdiff
path: root/ui/dir_name.h
blob: 3540e087314750c734da7518b9a00250d7af0f6f (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
// **************************************************************************
// * 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) ZenJu (zenju AT gmx DOT de) - All Rights Reserved        *
// **************************************************************************

#ifndef DRAGANDDROP_H_INCLUDED
#define DRAGANDDROP_H_INCLUDED

#include <vector>
#include <wx/event.h>
#include <wx/sizer.h>
#include <wx+/file_drop.h>
#include <wx/stattext.h>
#include <wx/button.h>

namespace zen
{
//handle drag and drop, tooltip, label and manual input, coordinating a wxWindow, wxButton, and wxComboBox/wxTextCtrl
/*
Reasons NOT to use wxDirPickerCtrl, but wxButton instead:
	- Crash on GTK 2: http://favapps.wordpress.com/2012/06/11/freefilesync-crash-in-linux-when-syncing-solved/
	- selection dialog remembers size, but NOT position => if user enlarges window, the next time he opens the dialog it may leap out of visible screen
	- still uses outdated ::SHBrowseForFolder() (Windows 7)
	- hard-codes "Browse" button label
*/

//emit event when directory is changed by the user:
extern const wxEventType EVENT_ON_DIR_SELECTED;
//example: wnd.Connect(EVENT_ON_DIR_SELECTED, wxCommandEventHandler(MyDlg::OnDirSelected), nullptr, this);

template <class NameControl>  //NameControl may be wxTextCtrl, FolderHistoryBox
class DirectoryName: public wxEvtHandler
{
public:
    DirectoryName(wxWindow&     dropWindow,
                  wxButton&     selectButton,
                  NameControl&  dirName,
                  wxStaticText* staticText  = nullptr,  //optional
                  wxWindow*     dropWindow2 = nullptr); //

    ~DirectoryName();

    wxString getName() const;
    void setName(const wxString& dirname);

private:
    virtual bool acceptDrop(const std::vector<wxString>& droppedFiles, const wxPoint& clientPos, const wxWindow& wnd) { return true; }; //return true if drop should be processed

    void OnFilesDropped(FileDropEvent& event);
    void OnWriteDirManually(wxCommandEvent& event);
    void OnSelectDir(wxCommandEvent& event);

    wxWindow&     dropWindow_;
    wxWindow*     dropWindow2_;
    wxButton&     selectButton_;
    NameControl&  dirName_;
    wxStaticText* staticText_; //optional
};
}


#endif // DRAGANDDROP_H_INCLUDED
bgstack15