]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/medialist/medialist.cpp
dhb Having a frustrating time. This compliles and runs fine. Have the
[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  *   Kern Sibbald, January MMVI
35  *
36  */ 
37
38 #include <QAbstractEventDispatcher>
39 #include "bat.h"
40 #include "medialist.h"
41 #include "mediaedit/mediaedit.h"
42 #include "joblist/joblist.h"
43 #include <QMenu>
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    m_headerlist = new QStringList();
55    m_popupmedia = new QString("");
56    m_poollist = new QStringList();
57    m_cmd = new QString("select p.name, m.volumename, m.mediaid, m.mediatype from media m, pool p ORDER BY p.name");
58 }
59
60 MediaList::~MediaList()
61 {
62    delete m_headerlist;
63    delete m_popupmedia;
64    delete m_poollist;
65    delete m_cmd;
66 }
67
68 void MediaList::populateTree()
69 {
70    QTreeWidgetItem *mediatreeitem, *pooltreeitem, *topItem;
71
72    m_treeWidget->clear();
73    m_treeWidget->setColumnCount(3);
74    topItem = new QTreeWidgetItem(m_treeWidget);
75    topItem->setText(0, "Pools");
76    topItem->setData(0, Qt::UserRole, 0);
77    topItem->setExpanded( true );
78 #ifdef xxx
79 #include <QSize>
80 *****    FIXME   *****
81 //how to get the size of a column to be larger
82 //topItem->setSizeHint(0,QSize(1050,50));
83 #endif
84
85    /* Start with a list of pools */
86    m_poollist->clear();
87    m_headerlist->clear();
88    m_headerlist->append("Volume Name");
89    m_headerlist->append("Media Id");
90    m_headerlist->append("Type");
91    m_treeWidget->setHeaderLabels(*m_headerlist);
92
93    QString currentpool("");
94    QString resultline;
95    QStringList results;
96    m_console->dosql(m_cmd,results);
97    int recordcounter=0;
98    foreach( resultline, results ){
99       QStringList recorditemlist = resultline.split("\t");
100       int recorditemcnter=0;
101       /* Iterate through items in the record */
102       QString mediarecorditem;
103          foreach( mediarecorditem, recorditemlist ){
104          QString trimmeditem = mediarecorditem.trimmed();
105          if( trimmeditem != "" ){
106             if ( recorditemcnter == 0 ){
107                if ( currentpool != trimmeditem.toUtf8().data() ){
108                   currentpool = trimmeditem.toUtf8().data();
109                   pooltreeitem = new QTreeWidgetItem(topItem);
110                   pooltreeitem->setText(0, trimmeditem.toUtf8().data());
111                   pooltreeitem->setData(0, Qt::UserRole, 1);
112                   pooltreeitem->setExpanded( true );
113                }
114                mediatreeitem = new QTreeWidgetItem(pooltreeitem);
115             } else {
116                mediatreeitem->setData(recorditemcnter-1, Qt::UserRole, 2);
117                mediatreeitem->setText(recorditemcnter-1, trimmeditem.toUtf8().data());
118             }
119             recorditemcnter+=1;
120          }
121       }
122       recordcounter+=1;
123    }
124 }
125
126 void MediaList::createConnections()
127 {
128    connect(treeWidget, SIGNAL(itemPressed(QTreeWidgetItem *, int)), this,
129                 SLOT(treeItemClicked(QTreeWidgetItem *, int)));
130    connect(treeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this,
131                 SLOT(treeItemDoubleClicked(QTreeWidgetItem *, int)));
132 }
133
134 void MediaList::treeItemClicked(QTreeWidgetItem *item, int column)
135 {
136    int treedepth = item->data(column, Qt::UserRole).toInt();
137    QString text = item->text(0);
138    switch (treedepth){
139       case 1:
140          break;
141       case 2:
142          /* Can't figure out how to make a right button do this --- Qt::LeftButton, Qt::RightButton, Qt::MidButton */
143          *m_popupmedia = text;
144          QMenu *popup = new QMenu( m_treeWidget );
145          connect(popup->addAction("Edit Properties"), SIGNAL(triggered()), this, SLOT(editMedia()));
146          connect(popup->addAction("Show Jobs On Media"), SIGNAL(triggered()), this, SLOT(showJobs()));
147          popup->exec(QCursor::pos());
148    }
149 }
150
151 void MediaList::treeItemDoubleClicked(QTreeWidgetItem *item, int column)
152 {
153    int treedepth = item->data(column, Qt::UserRole).toInt();
154    if (treedepth >= 0) {
155    }
156 }
157
158 void MediaList::editMedia()
159 {
160    MediaEdit* edit = new MediaEdit(m_console, *m_popupmedia);
161    edit->show();
162 }
163
164 void MediaList::showJobs()
165 {
166    JobList* joblist = new JobList(m_console, *m_popupmedia);
167    joblist->show();
168 }
169
170 void MediaList::PgSeltreeWidgetClicked()
171 {
172    if( ! m_populated ){
173       populateTree();
174       m_populated=true;
175    }
176 }
177
178 void MediaList::PgSeltreeWidgetDoubleClicked()
179 {
180    populateTree();
181 }