]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/pages.cpp
dhb left console.cpp uncompileable. Modified a comment in mainwin.cpp
[bacula/bacula] / bacula / src / qt-console / pages.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  *   Version $Id: batstack.cpp 4230 2007-02-21 20:07:37Z kerns $
30  *
31  *   Dirk Bartley, March 2007
32  */
33
34 #include "pages.h"
35
36 /*
37  * dockPage
38  * This function is intended to be called from within the Pages class to pull
39  * a window from floating to in the stack widget.
40  */
41
42 void Pages::dockPage()
43 {
44    /* These two lines are for making sure if it is being changed from a window
45     * that it has the proper window flag and parent.
46     */
47    setWindowFlags(Qt::Widget);
48    setParent(m_parent);
49
50    /* This was being done already */
51    m_parent->addWidget(this);
52
53    /* Set docked flag */
54    m_docked = true;
55 }
56
57 /*
58  * undockPage
59  * This function is intended to be called from within the Pages class to put
60  * a window from the stack widget to a floating window.
61  */
62
63 void Pages::undockPage()
64 {
65    /* Change from a stacked widget to a normal window */
66    m_parent->removeWidget(this);
67    setWindowFlags(Qt::Window);
68    showNormal();
69    /* Clear docked flag */
70    m_docked = false;
71 }
72
73 /*
74  * This function is intended to be called with the subclasses.  When it is called
75  * the specific sublclass does not have to be known to Pages.  It is called 
76  * it will take it from it's current state of floating or stacked and change it
77  * to the other.
78  */
79
80 void Pages::togglePageDocking()
81 {
82    if (m_docked) {
83       undockPage();
84    } else {
85       dockPage();
86    }
87 }
88
89 /*
90  * This function is because I wanted for some reason to keep it private but still 
91  * give any subclasses the ability to find out if it is currently stacked or not.
92  */
93
94 bool Pages::isDocked()
95 {
96    return m_docked;
97 }
98
99 /*
100  * When a window is closed, this slot is called.  The idea is to put it back in the
101  * stack here, and it works.  I wanted to get it to the top of the stack so that the
102  * user immediately sees where his window went.  Also, if he floats the window, then
103  * closes it with the tree item highlighted, it may be confusing that the highlighted
104  * treewidgetitem is not the stack item in the front.
105  */
106
107 void Pages::closeEvent(QCloseEvent* /*event*/)
108 {
109    /* A Widget was closed, lets toggle it back into the window, and set it in front. */
110    dockPage();
111
112 #ifdef xxx
113    /* FIXME Really having problems getting it to the front, 
114       toggles back into the stack fine though */
115    int stackindex=m_parent->indexOf( this );
116    if( stackindex >= 0 ){
117       show();
118       m_parent->setCurrentIndex(stackindex);
119
120    }
121 #endif
122 }
123
124 /*
125  * The next two are virtual functions.  The idea here is that each subclass will have the
126  * built in virtual function to override if the programmer wants to populate the window
127  * when it it is first clicked.
128  */
129 void Pages::PgSeltreeWidgetClicked()
130 {
131 }
132
133 void Pages::PgSeltreeWidgetDoubleClicked()
134 {
135 }
136
137 /*
138  * This function exists because I wanted to have an easy way for new programmers to understand
139  * exactly what values needed to be set in order to behave correctly in the interface.  It can
140  * be called from the constructor, like with medialist or after being constructed, like with
141  * Console.
142  */
143 void Pages::SetPassedValues(QStackedWidget* passedStackedWidget, QTreeWidgetItem* passedTreeItem, int indexseq )
144 {
145    m_parent = passedStackedWidget;
146    m_treeItem = passedTreeItem;
147    m_treeItem->setData(0, Qt::UserRole, QVariant(indexseq));
148 }