]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/medialist/medialist.cpp
Add context menu to media tree item
[bacula/bacula] / bacula / src / qt-console / medialist / medialist.cpp
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  *   Version $Id: medialist.cpp 4230 2007-02-21 20:07:37Z kerns $
31  *
32  *  MediaList Class
33  *
34  *   Dirk Bartley, March 2007
35  *
36  */ 
37
38 #include <QAbstractEventDispatcher>
39 #include <QMenu>
40 #include "bat.h"
41 #include "medialist.h"
42 #include "mediaedit/mediaedit.h"
43 #include "joblist/joblist.h"
44
45 MediaList::MediaList(QStackedWidget *parent, Console *console, QTreeWidgetItem *treeItem, int indexseq)
46 {
47    SetPassedValues(parent, treeItem, indexseq );
48    setupUi(this);
49
50    m_treeWidget = treeWidget;   /* our Storage Tree Tree Widget */
51    m_console = console;
52    createConnections();
53    m_populated = false;
54 }
55
56 MediaList::~MediaList()
57 {
58 }
59
60 void MediaList::populateTree()
61 {
62    QTreeWidgetItem *mediatreeitem, *pooltreeitem, *topItem;
63    QString currentpool("");
64    QString resultline;
65    QStringList results;
66    const char *query = 
67       "SELECT p.Name,m.VolumeName,m.MediaId,m.VolStatus,m.Enabled,m.VolBytes,"
68       "m.VolFiles,m.VolRetention,m.MediaType,m.LastWritten"
69       " FROM Media m,Pool p"
70       " WHERE m.PoolId=p.PoolId"
71       " ORDER BY p.Name";
72    QStringList headerlist = (QStringList()
73       << "Pool Name" << "Volume Name" << "Media Id" << "Volume Status" << "Enabled"
74       << "Volume Bytes" << "Volume Files" << "Volume Retention" 
75       << "Media Type" << "Last Written");
76
77    m_treeWidget->clear();
78    m_treeWidget->setColumnCount(9);
79    topItem = new QTreeWidgetItem(m_treeWidget);
80    topItem->setText(0, "Pools");
81    topItem->setData(0, Qt::UserRole, 0);
82    topItem->setExpanded( true );
83
84 #ifdef xxx
85 #include <QSize>
86 *****    FIXME   *****
87 //how to get the size of a column to be larger
88 //topItem->setSizeHint(0,QSize(1050,50));
89 #endif
90
91    m_treeWidget->setHeaderLabels(headerlist);
92
93    /* 
94     * Setup a context menu 
95     */
96    QAction *editAction = new QAction("Edit Properties", m_treeWidget);
97    QAction *listAction = new QAction("List Jobs On Media", m_treeWidget);
98    m_treeWidget->addAction(editAction);
99    m_treeWidget->addAction(listAction);
100    connect(editAction, SIGNAL(triggered()), this, SLOT(editMedia()));
101    connect(listAction, SIGNAL(triggered()), this, SLOT(showJobs()));
102    m_treeWidget->setContextMenuPolicy(Qt::ActionsContextMenu);
103
104    if (m_console->sql_cmd(query, results)) {
105       QString field;
106       QStringList fieldlist;
107       QRegExp regex("^Using Catalog");
108
109       foreach (resultline, results) {
110          fieldlist = resultline.split("\t");
111          if (regex.indexIn(resultline) < 0) {
112             int index = 0;
113             /* Iterate through fields in the record */
114             foreach (field, fieldlist) {
115                field = field.trimmed();  /* strip leading & trailing spaces */
116                if (field != "") {
117                   /* The first field is the pool name */
118                   if (index == 0) {
119                      /* If new pool name, create new Pool item */
120                      if (currentpool != field) {
121                         currentpool = field;
122                         pooltreeitem = new QTreeWidgetItem(topItem);
123                         pooltreeitem->setText(0, field);
124                         pooltreeitem->setData(0, Qt::UserRole, 1);
125                         pooltreeitem->setExpanded(true);
126                      }
127                      mediatreeitem = new QTreeWidgetItem(pooltreeitem);
128                   } else {
129                      /* Put media fields under the pool tree item */
130                      mediatreeitem->setData(index, Qt::UserRole, 2);
131                      mediatreeitem->setText(index, field);
132                   }
133                }
134                index++;
135             }
136          }
137       }
138    }
139 }
140
141 void MediaList::createConnections()
142 {
143    connect(treeWidget, SIGNAL(itemPressed(QTreeWidgetItem *, int)), this,
144                 SLOT(treeItemClicked(QTreeWidgetItem *, int)));
145    connect(treeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this,
146                 SLOT(treeItemDoubleClicked(QTreeWidgetItem *, int)));
147 }
148
149 void MediaList::treeItemClicked(QTreeWidgetItem * /*item*/, int /*column*/)
150 {
151 #ifdef xxx
152    int treedepth = item->data(column, Qt::UserRole).toInt();
153    switch (treedepth) {
154    case 1:
155       break;
156    case 2:
157       /* Can't figure out how to make a right button do this --- Qt::LeftButton, Qt::RightButton, Qt::MidButton */
158       m_popuptext = item->text(0);
159       QMenu *popup = new QMenu(m_treeWidget);
160       connect(popup->addAction("Edit Properties"), SIGNAL(triggered()), this, SLOT(editMedia()));
161       connect(popup->addAction("List Jobs On Media"), SIGNAL(triggered()), this, SLOT(showJobs()));
162       popup->exec(QCursor::pos());
163       break;
164    }
165 #endif
166 }
167
168 void MediaList::treeItemDoubleClicked(QTreeWidgetItem *item, int column)
169 {
170    int treedepth = item->data(column, Qt::UserRole).toInt();
171    if (treedepth >= 0) {
172    }
173 }
174
175 void MediaList::editMedia()
176 {
177    /* ***FIXME*** make sure a valid tree item is selected -- check currentItem */
178    MediaEdit* edit = new MediaEdit(m_console, m_popuptext);
179    edit->show();
180 }
181
182 void MediaList::showJobs()
183 {
184    JobList* joblist = new JobList(m_console, m_popuptext);
185    joblist->show();
186 }
187
188 void MediaList::PgSeltreeWidgetClicked()
189 {
190    if(!m_populated) {
191       populateTree();
192       m_populated=true;
193    }
194 }
195
196 void MediaList::PgSeltreeWidgetDoubleClicked()
197 {
198    populateTree();
199 }