-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathTrayIcon.h
51 lines (45 loc) · 1.65 KB
/
TrayIcon.h
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
/*************************************************************************
* UrBackup - Client/Server backup system
* Copyright (C) 2011 Martin Raiber
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**************************************************************************/
#include <wx/wx.h>
#include <wx/taskbar.h>
#include <wx/menu.h>
void runCommand(std::string cmd, std::string arg1=std::string());
void read_tokens(wxString token_path, std::string& tokens);
#ifdef _WIN32
#include <Windows.h>
HRESULT ModifyPrivilege(
IN LPCTSTR szPrivilege,
IN BOOL fEnable);
#endif
class TrayIcon : public wxTaskBarIcon
{
public:
TrayIcon(void);
wxMenu* CreatePopupMenu(void);
void OnPopupClick(wxCommandEvent &evt);
void OnClick(wxCommandEvent &evt);
void OnBalloonClick(wxCommandEvent &evt);
void BalloonActionUpgrade(void);
void BalloonActionNewServer(const std::string &ident);
static void accessBackups(wxString path);
private:
int balloon_action;
std::string new_ident;
};
#define ICON_WIDTH -1
#define ICON_HEIGHT -1