]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/mainwin.cpp
dhb forgot to remove a couple of debugging printf's
[bacula/bacula] / bacula / src / qt-console / mainwin.cpp
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 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  *   Version $Id$
31  *
32  *  Main Window control for bat (qt-console)
33  *
34  *   Kern Sibbald, January MMVII
35  *
36  */ 
37
38 #include "bat.h"
39 #include "medialist/medialist.h"
40
41 MainWin::MainWin(QWidget *parent) : QMainWindow(parent)
42 {
43
44    mainWin = this;
45    setupUi(this);                     /* Setup UI defined by main.ui (designer) */
46    treeWidget->clear();
47    treeWidget->setColumnCount(1);
48    treeWidget->setHeaderLabel("Select Page");
49
50    m_pages = 0;
51    createPages();
52
53    resetFocus();
54
55    createConnections();
56
57    this->show();
58
59    readSettings();
60
61    m_console->connect();
62 }
63
64 void MainWin::createPages()
65 {
66    DIRRES *dir;
67    QTreeWidgetItem *item, *topItem;
68
69    /* Create console tree stacked widget item */
70    m_console = new Console(stackedWidget);
71    /* Console is special -> needs director*/
72    /* Just take the first Director */
73    LockRes();
74    dir = (DIRRES *)GetNextRes(R_DIRECTOR, NULL);
75    m_console->setDirRes(dir);
76    UnlockRes();
77    /* The top tree item representing the director */
78    topItem = createTopPage(dir->name());
79    topItem->setIcon(0, QIcon(QString::fromUtf8("images/server.png")));
80    /* Create Tree Widget Item */
81    item = createPage("Console", topItem);
82    m_console->setTreeItem(item);
83    /* Append to bstacklist */
84    m_bstacklist.append(m_console);
85    /* Set BatStack m_treeItem */
86    m_console->SetBSTreeWidgetItem(item);
87    QBrush redBrush(Qt::red);
88    item->setForeground(0, redBrush);
89
90    /* Now with the console created, on with the rest, these are easy */
91    /* All should be
92  * 1. create tree widget item
93  * 2. create object passing pointer to tree widget item (modified constructors to pass QTreeWidget pointers)
94  * 3. append to stacklist
95  * And it can even be done in one line.
96  * */ 
97
98    /* brestore */
99    m_bstacklist.append(new bRestore( stackedWidget, createPage("brestore", topItem) ));
100
101    /* lastly for now, the medialist */
102    m_bstacklist.append(new MediaList(stackedWidget, m_console, createPage("Storage Tree", topItem )));
103
104    /* Iterate through and add to the stack */
105    for ( QList<BatStack*>::iterator bstackItem = m_bstacklist.begin(); bstackItem != m_bstacklist.end(); ++bstackItem ) {
106       (*bstackItem)->AddTostack();
107    }
108
109    treeWidget->expandItem(topItem);
110    stackedWidget->setCurrentIndex(0);
111 }
112
113 /* Create a root Tree Widget */
114 QTreeWidgetItem *MainWin::createTopPage(char *name )
115 {
116    QTreeWidgetItem *item = new QTreeWidgetItem(treeWidget);
117    item->setText(0, name);
118    return item;
119 }
120
121 /* Create A Tree Widget Item which will be associated with a Page in the stacked widget */
122 QTreeWidgetItem *MainWin::createPage(char *name, QTreeWidgetItem *parent)
123 {
124    QTreeWidgetItem *item = new QTreeWidgetItem(parent);
125    item->setText(0, name);
126    return item;
127 }
128
129 /*
130  * Handle up and down arrow keys for the command line
131  *  history.
132  */
133 void MainWin::keyPressEvent(QKeyEvent *event)
134 {
135    if (m_cmd_history.size() == 0) {
136       event->ignore();
137       return;
138    }
139    switch (event->key()) {
140    case Qt::Key_Down:
141       if (m_cmd_last < 0 || m_cmd_last >= (m_cmd_history.size()-1)) {
142          event->ignore();
143          return;
144       }
145       m_cmd_last++;
146       break;
147    case Qt::Key_Up:
148       if (m_cmd_last == 0) {
149          event->ignore();
150          return;
151       }
152       if (m_cmd_last < 0 || m_cmd_last > (m_cmd_history.size()-1)) {
153          m_cmd_last = m_cmd_history.size() - 1;
154       } else {
155          m_cmd_last--;
156       }
157       break;
158    default:
159       event->ignore();
160       return;
161    }
162    lineEdit->setText(m_cmd_history[m_cmd_last]);
163 }
164
165 void MainWin::createConnections()
166 {
167    /* Connect signals to slots */
168    connect(lineEdit, SIGNAL(returnPressed()), this, SLOT(input_line()));
169    connect(actionAbout_bat, SIGNAL(triggered()), this, SLOT(about()));
170
171 /*   connect(treeWidget, SIGNAL(itemActivated(QTreeWidgetItem *, int)), this, 
172            SLOT(treeItemClicked(QTreeWidgetItem *, int)));
173    connect(treeWidget, SIGNAL(itemPressed(QTreeWidgetItem *, int)), this, 
174            SLOT(treeItemClicked(QTreeWidgetItem *, int)));  Commented out because it was getting to clicked multiple times*/
175    connect(treeWidget, SIGNAL(itemClicked(QTreeWidgetItem *, int)), this, 
176            SLOT(treeItemClicked(QTreeWidgetItem *, int)));
177    connect(treeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this, 
178            SLOT(treeItemDoubleClicked(QTreeWidgetItem *, int)));
179
180    connect(actionQuit, SIGNAL(triggered()), app, SLOT(closeAllWindows()));
181    connect(actionConnect, SIGNAL(triggered()), m_console, SLOT(connect()));
182    connect(actionStatusDir, SIGNAL(triggered()), m_console, SLOT(status_dir()));
183    connect(actionSelectFont, SIGNAL(triggered()), m_console, SLOT(set_font()));
184    connect(actionLabel, SIGNAL(triggered()), this,  SLOT(labelDialogClicked()));
185    connect(actionRun, SIGNAL(triggered()), this,  SLOT(runDialogClicked()));
186    connect(actionRestore, SIGNAL(triggered()), this,  SLOT(restoreDialogClicked()));
187 }
188
189 /* 
190  * Reimplementation of QWidget closeEvent virtual function   
191  */
192 void MainWin::closeEvent(QCloseEvent *event)
193 {
194    writeSettings();
195    m_console->writeSettings();
196    m_console->terminate();
197    event->accept();
198 }
199
200 void MainWin::writeSettings()
201 {
202    QSettings settings("bacula.org", "bat");
203
204    settings.beginGroup("MainWin");
205    settings.setValue("winSize", size());
206    settings.setValue("winPos", pos());
207    settings.endGroup();
208 }
209
210 void MainWin::readSettings()
211
212    QSettings settings("bacula.org", "bat");
213
214    settings.beginGroup("MainWin");
215    resize(settings.value("winSize", QSize(1041, 801)).toSize());
216    move(settings.value("winPos", QPoint(200, 150)).toPoint());
217    settings.endGroup();
218 }
219
220 void MainWin::treeItemClicked(QTreeWidgetItem *item, int column)
221 {
222    /* Iterate through and find the tree widget item clicked */
223    column+=0;
224    QList<BatStack*>::iterator bstackItem;
225    bstackItem = m_bstacklist.begin();
226    while ( bstackItem != m_bstacklist.end() ){
227       if ( item == (*bstackItem)->m_treeItem ) {
228          int stackindex=stackedWidget->indexOf( *bstackItem );
229          if( stackindex >= 0 ){
230             stackedWidget->setCurrentIndex(stackindex);
231          }
232          (*bstackItem)->PgSeltreeWidgetClicked();
233       }
234       ++bstackItem;
235    }
236 }
237
238 /*
239  */
240 void MainWin::treeItemDoubleClicked(QTreeWidgetItem *item, int column)
241 {
242    /* Iterate through and find the tree widget item double clicked */
243    column+=0;
244    QList<BatStack*>::iterator bstackItem;
245    bstackItem = m_bstacklist.begin();
246    while ( bstackItem != m_bstacklist.end() ){
247       if ( item == (*bstackItem)->m_treeItem ) {
248          /* This could be a call a virtual function ?? or just popup a popup menu for an action */
249          if ( (*bstackItem)->isStacked() == true ){
250             m_bstackpophold=*bstackItem;
251             QMenu *popup = new QMenu( treeWidget );
252             connect(popup->addAction("Pull Window Out"), SIGNAL(triggered()), this, SLOT(pullWindowOut()));
253             popup->exec(QCursor::pos());
254          } else {
255             (*bstackItem)->Togglestack();
256          }
257          (*bstackItem)->PgSeltreeWidgetDoubleClicked();
258       }
259       ++bstackItem;
260    }
261 }
262
263 void MainWin::labelDialogClicked() 
264 {
265    new labelDialog(m_console);
266 }
267
268 void MainWin::runDialogClicked() 
269 {
270    new runDialog(m_console);
271 }
272
273 void MainWin::restoreDialogClicked() 
274 {
275    new prerestoreDialog(m_console);
276 }
277
278
279
280 /*
281  * The user just finished typing a line in the command line edit box
282  */
283 void MainWin::input_line()
284 {
285    QString cmdStr = lineEdit->text();    /* Get the text */
286    lineEdit->clear();                    /* clear the lineEdit box */
287    if (m_console->is_connected()) {
288       m_console->display_text(cmdStr + "\n");
289       m_console->write_dir(cmdStr.toUtf8().data());         /* send to dir */
290    } else {
291       set_status("Director not connected. Click on connect button.");
292    }
293    m_cmd_history.append(cmdStr);
294    m_cmd_last = -1;
295 }
296
297
298 void MainWin::about()
299 {
300    QMessageBox::about(this, tr("About bat"),
301             tr("<br><h2>bat 0.2, by Kern Sibbald</h2>"
302             "<p>Copyright &copy; " BYEAR " Free Software Foundation Europe e.V."
303             "<p>The <b>bat</b> is an administrative console"
304                " interface to the Director."));
305 }
306
307 void MainWin::set_statusf(const char *fmt, ...)
308 {
309    va_list arg_ptr;
310    char buf[1000];
311    int len;
312    va_start(arg_ptr, fmt);
313    len = bvsnprintf(buf, sizeof(buf), fmt, arg_ptr);
314    va_end(arg_ptr);
315    set_status(buf);
316 }
317
318 void MainWin::set_status_ready()
319 {
320    set_status(" Ready");
321 }
322
323 void MainWin::set_status(const char *buf)
324 {
325    statusBar()->showMessage(buf);
326 }
327
328 void MainWin::pullWindowOut()
329 {
330    m_bstackpophold->Togglestack();
331 }