summaryrefslogtreecommitdiff
path: root/RealtimeSync/main_dlg.h
blob: 50b90cc7749774856839757614b2bddf1e5e023a (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
// **************************************************************************
// * 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 (zhnmju123 AT gmx DOT de) - All Rights Reserved    *
// **************************************************************************

#ifndef REALTIMESYNCMAIN_H
#define REALTIMESYNCMAIN_H

#include "gui_generated.h"
#include <vector>
#include <memory>
#include "../ui/dir_name.h"
#include <wx+/dir_picker.h>

namespace xmlAccess
{
struct XmlRealConfig;
}


class DirectoryPanel : public FolderGenerated
{
public:
    DirectoryPanel(wxWindow* parent) :
        FolderGenerated(parent),
        dirName(*this, *m_dirPicker, *m_txtCtrlDirectory) {}

    void setName(const wxString& dirname) { dirName.setName(dirname); }
    wxString getName() const { return dirName.getName(); }

private:
    zen::DirectoryName<wxTextCtrl> dirName;
};



class MainDialog: public MainDlgGenerated
{
public:
    MainDialog(wxDialog* dlg, const wxString& cfgFileName);
    ~MainDialog();

    void loadConfig(const wxString& filename);

private:
    virtual void OnClose          (wxCloseEvent& event)   { Destroy(); }
    virtual void OnQuit           (wxCommandEvent& event) { Destroy(); }
    virtual void OnShowHelp       (wxCommandEvent& event);
    virtual void OnMenuAbout      (wxCommandEvent& event);
    virtual void OnAddFolder      (wxCommandEvent& event);
    virtual void OnRemoveFolder   (wxCommandEvent& event);
    virtual void OnRemoveTopFolder(wxCommandEvent& event);
    virtual void OnKeyPressed     (wxKeyEvent& event);
    virtual void OnStart          (wxCommandEvent& event);
    virtual void OnConfigSave     (wxCommandEvent& event);
    virtual void OnConfigLoad     (wxCommandEvent& event);

    void setConfiguration(const xmlAccess::XmlRealConfig& cfg);
    xmlAccess::XmlRealConfig getConfiguration();
    void setLastUsedConfig(const wxString& filename);

    void layoutAsync(); //call Layout() asynchronously

    void addFolder(const wxString& dirname, bool addFront = false);
    void addFolder(const std::vector<wxString>& newFolders, bool addFront = false);
    void removeAddFolder(int pos); //keep it an int, allow negative values!
    void clearAddFolders();

    static const wxString& lastConfigFileName();

    std::unique_ptr<zen::DirectoryName<wxTextCtrl>> dirNameFirst;
    std::vector<DirectoryPanel*> dirNamesExtra; //additional pairs to the standard pair

    wxString currentConfigFileName;
};

#endif // REALTIMESYNCMAIN_H
bgstack15