]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/win32/libwin32/winabout.h
kes Reapply my bat.conf install script in qt-console. I think I
[bacula/bacula] / bacula / src / win32 / libwin32 / winabout.h
1 /*
2    This file was inspired by the VNC Win32 code by ATT
3
4    Kern E. Sibbald, 2000
5 */
6 /*
7    Bacula® - The Network Backup Solution
8
9    Copyright (C) 2000-2006 Free Software Foundation Europe e.V.
10
11    The main author of Bacula is Kern Sibbald, with contributions from
12    many others, a complete list can be found in the file AUTHORS.
13    This program is Free Software; you can redistribute it and/or
14    modify it under the terms of version two of the GNU General Public
15    License as published by the Free Software Foundation plus additions
16    that are listed in the file LICENSE.
17
18    This program is distributed in the hope that it will be useful, but
19    WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21    General Public License for more details.
22
23    You should have received a copy of the GNU General Public License
24    along with this program; if not, write to the Free Software
25    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26    02110-1301, USA.
27
28    Bacula® is a registered trademark of John Walker.
29    The licensor of Bacula is the Free Software Foundation Europe
30    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
31    Switzerland, email:ftf@fsfeurope.org.
32 */
33
34
35 /* Object implementing the About dialog for Bacula */
36
37 class bacAbout;
38
39 #ifndef _WINABOUT_H_
40 #define _WINABOUT_H_ 1
41
42 /* Define the bacAbout class */
43 class bacAbout
44 {
45 public:
46    bacAbout();
47   ~bacAbout();
48
49    /* The dialog box window proc */
50    static BOOL CALLBACK DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
51
52    void Show(BOOL show);
53
54    /* Object local storage */
55    bool visible;
56 };
57
58 #endif