]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/mainwindow.h
Add qt-console configuration
[bacula/bacula] / bacula / src / qt-console / mainwindow.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2000-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 two of the GNU General Public
10    License as published by the Free Software Foundation plus additions
11    that are listed 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 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 John Walker.
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 /* 
30  * qt-console main window class definition.
31  *
32  *  Written by Kern Sibbald, January MMVI
33  */
34
35
36 #include <QtGui>
37 #include "ui_main.h"
38
39 class MainWindow : public QMainWindow, public Ui::MainForm    
40 {
41    Q_OBJECT
42
43 public:
44    MainWindow(QWidget *parent = 0);
45
46 public slots:
47    void input_line();
48
49 private:
50    QString m_UserInput;
51 };
52
53 extern MainWindow *mainWin;
54
55 void set_textf(const char *fmt, ...);
56 void set_text(const char *buf);
57
58 int bvsnprintf(char *str, int32_t size, const char *format, va_list ap);