summaryrefslogtreecommitdiff
path: root/RealtimeSync/trayMenu.cpp
blob: 5d9d24300a7c5c750ad30731bd86aaa940a5c911 (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
208
209
#include "trayMenu.h"
#include <wx/msgdlg.h>
#include <wx/taskbar.h>
#include <wx/app.h>
#include "resources.h"
#include <memory>
#include <wx/utils.h>
#include <wx/menu.h>
#include "watcher.h"
#include <wx/timer.h>
#include <wx/utils.h>
#include <wx/log.h>

class RtsTrayIcon;


class WaitCallbackImpl : public RealtimeSync::WaitCallback
{
public:
    WaitCallbackImpl();

    virtual void requestUiRefresh();

    void requestAbort()
    {
        m_abortRequested = true;
    }

    void requestResume()
    {
        m_resumeRequested = true;
    }

private:
    std::auto_ptr<RtsTrayIcon> trayMenu;
    bool m_abortRequested;
    bool m_resumeRequested;
};


class RtsTrayIcon : public wxTaskBarIcon
{
public:
    RtsTrayIcon(WaitCallbackImpl* callback) :
            m_callback(callback)
    {
        wxTaskBarIcon::SetIcon(*GlobalResources::getInstance().programIcon, wxT("RealtimeSync"));

        //register double-click
        Connect(wxEVT_TASKBAR_LEFT_DCLICK, wxCommandEventHandler(RtsTrayIcon::resumeToMain), NULL, this);
    }

    void updateSysTray()
    {
        wxTheApp->Yield();
    }

private:
    enum Selection
    {
        CONTEXT_ABORT,
        CONTEXT_RESTORE,
        CONTEXT_ABOUT
    };

    virtual wxMenu* CreatePopupMenu()
    {
        wxMenu* contextMenu = new wxMenu;
        contextMenu->Append(CONTEXT_RESTORE, _("&Restore"));
        contextMenu->Append(CONTEXT_ABOUT, _("&About..."));
        contextMenu->AppendSeparator();
        contextMenu->Append(CONTEXT_ABORT, _("&Exit"));
        //event handling
        contextMenu->Connect(wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(RtsTrayIcon::OnContextMenuSelection), NULL, this);

        return contextMenu; //ownership transferred to library
    }

    void OnContextMenuSelection(wxCommandEvent& event)
    {
        const int eventId = event.GetId();
        switch (static_cast<Selection>(eventId))
        {
        case CONTEXT_ABORT:
            m_callback->requestAbort();
            break;
        case CONTEXT_ABOUT:
        {
            //build information
            wxString build = wxString(wxT("(")) + _("Build:") + wxT(" ") + __TDATE__;
#if wxUSE_UNICODE
            build += wxT(" - Unicode)");
#else
            build += wxT(" - ANSI)");
#endif //wxUSE_UNICODE

            wxMessageDialog* aboutDlg = new wxMessageDialog(NULL, wxString(wxT("RealtimeSync")) + wxT("\n\n") + build, _("About"), wxOK);
            aboutDlg->ShowModal();
            aboutDlg->Destroy();
        }
        break;
        case CONTEXT_RESTORE:
            m_callback->requestResume();
            break;
        }
    }

    void resumeToMain(wxCommandEvent& event)
    {
        m_callback->requestResume();
    }

    WaitCallbackImpl* m_callback;
};


bool updateUiIsAllowed()
{
    static wxLongLong lastExec = 0;
    const wxLongLong  newExec  = wxGetLocalTimeMillis();

    if (newExec - lastExec >= RealtimeSync::UI_UPDATE_INTERVAL)  //perform ui updates not more often than necessary
    {
        lastExec = newExec;
        return true;
    }
    return false;
}


class AbortThisProcess //exception class
{
public:
    AbortThisProcess(bool backToMain) : m_backToMain(backToMain) {}

    bool backToMainMenu() const
    {
        return m_backToMain;
    }

private:
    bool m_backToMain;
};



WaitCallbackImpl::WaitCallbackImpl() :
        m_abortRequested(false),
        m_resumeRequested(false)
{
    trayMenu.reset(new RtsTrayIcon(this));
}


void WaitCallbackImpl::requestUiRefresh()
{
    if (updateUiIsAllowed())
        trayMenu->updateSysTray();

    if (m_abortRequested)
        throw ::AbortThisProcess(false);

    if (m_resumeRequested)
        throw ::AbortThisProcess(true);
}


RealtimeSync::MonitorResponse RealtimeSync::startDirectoryMonitor(const xmlAccess::XmlRealConfig& config)
{
    try
    {
        WaitCallbackImpl callback;

        if (config.commandline.empty())
            throw FreeFileSync::FileError(_("Commandline is empty!"));

        long lastExec = 0;
        while (true)
        {
            wxExecute(config.commandline, wxEXEC_SYNC); //execute command
            wxLog::FlushActive(); //show wxWidgets error messages (if any)

            //wait
            waitForChanges(config.directories, &callback);
            lastExec = wxGetLocalTime();

            //some delay
            while (wxGetLocalTime() - lastExec < static_cast<long>(config.delay))
            {
                callback.requestUiRefresh();
                wxMilliSleep(RealtimeSync::UI_UPDATE_INTERVAL);
            }
        }
    }
    catch (const ::AbortThisProcess& ab)
    {
        if (ab.backToMainMenu())
            return RESUME;
        else
            return QUIT;
    }
    catch (const FreeFileSync::FileError& error)
    {
        wxMessageBox(error.show().c_str(), _("Error"), wxOK | wxICON_ERROR);
        return RESUME;
    }

    return RESUME;
}
bgstack15