]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/select/select.cpp
Fix some missed copyright changes
[bacula/bacula] / bacula / src / qt-console / select / select.cpp
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2007-2009 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 /*
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, int conn) 
44 {
45    m_conn = conn;
46    QDateTime dt;
47    int stat;
48    QListWidgetItem *item;
49    int row = 0;
50
51    m_console = console;
52    m_console->notify(m_conn, false);
53    setupUi(this);
54    connect(listBox, SIGNAL(currentRowChanged(int)), this, SLOT(index_change(int)));
55    setAttribute(Qt::WA_DeleteOnClose);
56    m_console->read(m_conn);                 /* get title */
57    labelWidget->setText(m_console->msg(m_conn));
58    while ((stat=m_console->read(m_conn)) > 0) {
59       item = new QListWidgetItem;
60       item->setText(m_console->msg(m_conn));
61       listBox->insertItem(row++, item);
62    }
63    m_console->displayToPrompt(m_conn);
64    this->show();
65 }
66
67 void selectDialog::accept()
68 {
69    char cmd[100];
70
71    this->hide();
72    bsnprintf(cmd, sizeof(cmd), "%d", m_index+1);
73    m_console->write_dir(m_conn, cmd);
74    m_console->displayToPrompt(m_conn);
75    this->close();
76    mainWin->resetFocus();
77    m_console->displayToPrompt(m_conn);
78    m_console->notify(m_conn, true);
79 }
80
81
82 void selectDialog::reject()
83 {
84    this->hide();
85    mainWin->set_status(tr(" Canceled"));
86    this->close();
87    mainWin->resetFocus();
88    m_console->beginNewCommand(m_conn);
89    m_console->notify(m_conn, true);
90 }
91
92 /*
93  * Called here when the jobname combo box is changed.
94  *  We load the default values for the new job in the
95  *  other combo boxes.
96  */
97 void selectDialog::index_change(int index)
98 {
99    m_index = index;
100 }
101
102 /*
103  * Handle yesno PopUp when Bacula asks a yes/no question.
104  */
105 /*
106  * Read the items for the selection
107  */
108 yesnoPopUp::yesnoPopUp(Console *console, int conn) 
109 {
110    QMessageBox msgBox;
111
112    setAttribute(Qt::WA_DeleteOnClose);
113    console->read(conn);                 /* get yesno question */
114    msgBox.setWindowTitle(tr("Bat Question"));
115    msgBox.setText(console->msg(conn));
116    msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
117    console->displayToPrompt(conn);
118    switch (msgBox.exec()) {
119    case QMessageBox::Yes:
120       console->write_dir(conn, "yes");
121       break;
122    case QMessageBox::No:
123       console->write_dir(conn, "no");
124       break;
125    }
126    console->displayToPrompt(conn);
127    mainWin->resetFocus();
128 }