]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/win32/libwin32/trayMonitor.h
Tweak fix MySQL quoting again :-(
[bacula/bacula] / bacula / src / win32 / libwin32 / trayMonitor.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2007-2007 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU Affero General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of Kern Sibbald.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29  * Kern Sibbald, August 2007
30  *
31  *   Version $Id$
32  */
33
34 #ifndef __TRAY_MONITOR_H_
35 #define __TRAY_MONITOR_H_ 1
36
37 #define WM_TRAYNOTIFY WM_USER+1
38
39 /* Define the trayMonitor class */
40 class trayMonitor
41 {
42 public:
43    trayMonitor();
44   ~trayMonitor();
45
46    void show(bool show);
47    void install();
48    void update(int bacstat);
49    void sendMessage(DWORD msg, int bacstat);
50
51    static LRESULT CALLBACK trayWinProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam);
52
53    bool m_visible;
54    bool m_installed;
55    UINT m_tbcreated_msg;
56
57    aboutDialog m_about;
58    statusDialog m_status;
59
60    HWND  m_hwnd;
61    HMENU m_hmenu;
62    NOTIFYICONDATA m_nid;
63    HICON m_idle_icon;
64    HICON m_running_icon;
65    HICON m_error_icon;
66    HICON m_warn_icon;
67 };
68
69 #endif /* __TRAY_MONITOR_H_ */