]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/select/select.cpp
Set keyword replacement on files
[bacula/bacula] / bacula / src / qt-console / select / select.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 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 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  *  Select dialog class
31  *
32  *   Kern Sibbald, March MMVII
33  *
34  *  $Id$
35  */ 
36
37 #include "bat.h"
38 #include "select.h"
39
40 /*
41  * Read the items for the selection
42  */
43 selectDialog::selectDialog(Console *console) 
44 {
45    QDateTime dt;
46    int stat;
47    QListWidgetItem *item;
48    int row = 0;
49
50    m_console = console;
51    setupUi(this);
52    connect(listBox, SIGNAL(currentRowChanged(int)), this, SLOT(index_change(int)));
53    setAttribute(Qt::WA_DeleteOnClose);
54    m_console->read();                 /* get title */
55    labelWidget->setText(m_console->msg());
56    while ((stat=m_console->read()) > 0) {
57       item = new QListWidgetItem;
58       item->setText(m_console->msg());
59       listBox->insertItem(row++, item);
60    }
61    m_console->displayToPrompt();
62    this->show();
63 }
64
65 void selectDialog::accept()
66 {
67    char cmd[100];
68
69    this->hide();
70    bsnprintf(cmd, sizeof(cmd), "%d", m_index+1);
71    m_console->write_dir(cmd);
72    m_console->displayToPrompt();
73    this->close();
74    mainWin->resetFocus();
75    m_console->displayToPrompt();
76
77 }
78
79
80 void selectDialog::reject()
81 {
82    this->hide();
83    mainWin->set_status(" Canceled");
84    this->close();
85    mainWin->resetFocus();
86    m_console->beginNewCommand();
87 }
88
89 /*
90  * Called here when the jobname combo box is changed.
91  *  We load the default values for the new job in the
92  *  other combo boxes.
93  */
94 void selectDialog::index_change(int index)
95 {
96    m_index = index;
97 }
98
99 /*
100  * Handle yesno PopUp when Bacula asks a yes/no question.
101  */
102 /*
103  * Read the items for the selection
104  */
105 yesnoPopUp::yesnoPopUp(Console *console) 
106 {
107    QMessageBox msgBox;
108
109    setAttribute(Qt::WA_DeleteOnClose);
110    console->read();                 /* get yesno question */
111    msgBox.setWindowTitle("Bat Question");
112    msgBox.setText(console->msg());
113    msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
114    console->displayToPrompt();
115    switch (msgBox.exec()) {
116    case QMessageBox::Yes:
117       console->write_dir("yes");
118       break;
119    case QMessageBox::No:
120       console->write_dir("no");
121       break;
122    }
123    console->displayToPrompt();
124    mainWin->resetFocus();
125 }