]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/qt-console/pages.cpp
Only use the svg files for the generation of the png files.
[bacula/bacula] / bacula / src / qt-console / pages.cpp
index 76eab6a205a4c2ac3726bca66b0576ceb0baf240..5baff9d4c7ee18704f5b730402709102d456f1b2 100644 (file)
@@ -7,8 +7,8 @@
    many others, a complete list can be found in the file AUTHORS.
    This program is Free Software; you can redistribute it and/or
    modify it under the terms of version two of the GNU General Public
-   License as published by the Free Software Foundation plus additions
-   that are listed in the file LICENSE.
+   License as published by the Free Software Foundation and included
+   in the file LICENSE.
 
    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -26,7 +26,7 @@
    Switzerland, email:ftf@fsfeurope.org.
 */
 /*
- *   Version $Id: batstack.cpp 4230 2007-02-21 20:07:37Z kerns $
+ *   Version $Id$
  *
  *   Dirk Bartley, March 2007
  */
@@ -46,13 +46,15 @@ void Pages::dockPage()
     * that it has the proper window flag and parent.
     */
    setWindowFlags(Qt::Widget);
-//   setParent(m_parent);
 
    /* This was being done already */
    m_parent->addWidget(this);
 
    /* Set docked flag */
    m_docked = true;
+   mainWin->stackedWidget->setCurrentWidget(this);
+   /* lets set the page selectors action for docking or undocking */
+   setContextMenuDockText();
 }
 
 /*
@@ -69,6 +71,8 @@ void Pages::undockPage()
    show();
    /* Clear docked flag */
    m_docked = false;
+   /* The window has been undocked, lets change the context menu */
+   setContextMenuDockText();
 }
 
 /*
@@ -88,15 +92,22 @@ void Pages::togglePageDocking()
 }
 
 /*
- * This function is because I wanted for some reason to keep it private but still 
+ * This function is because I wanted for some reason to keep it protected but still 
  * give any subclasses the ability to find out if it is currently stacked or not.
  */
-
 bool Pages::isDocked()
 {
    return m_docked;
 }
 
+/*
+ * To keep m_closeable protected as well
+ */
+bool Pages::isCloseable()
+{
+   return m_closeable;
+}
+
 /*
  * When a window is closed, this slot is called.  The idea is to put it back in the
  * stack here, and it works.  I wanted to get it to the top of the stack so that the
@@ -110,26 +121,13 @@ void Pages::closeEvent(QCloseEvent* event)
    /* A Widget was closed, lets toggle it back into the window, and set it in front. */
    dockPage();
 
-   /* is the tree widget item for "this" the current widget item */
-   if( mainWin->treeWidget->currentItem() == mainWin->getFromHash(this) )
-      /* in case the current widget is the one which represents this, lets set the context
-       * menu to undock */
-      mainWin->setContextMenuDockText();
-   else
-      /* in case the current widget is not the one which represents this, lets set the
-      * color back to black */
-      mainWin->setTreeWidgetItemDockColor(this);
-
    /* this fixes my woes of getting the widget to show up on top when closed */
    event->ignore();
 
-   /* put this widget on the top of the stack widget */
-   m_parent->setCurrentWidget(this);
-
    /* Set the current tree widget item in the Page Selector window to the item 
-    * which represents "this" */
-   QTreeWidgetItem *item= mainWin->getFromHash(this);
-   mainWin->treeWidget->setCurrentItem(item);
+    * which represents "this" 
+    * Which will also bring "this" to the top of the stacked widget */
+   setCurrent();
 }
 
 /*
@@ -141,10 +139,6 @@ void Pages::PgSeltreeWidgetClicked()
 {
 }
 
-void Pages::PgSeltreeWidgetDoubleClicked()
-{
-}
-
 /*
  *  Virtual function which is called when this page is visible on the stack.
  *  This will be overridden by classes that want to populate if they are on the
@@ -153,3 +147,169 @@ void Pages::PgSeltreeWidgetDoubleClicked()
 void Pages::currentStackItem()
 {
 }
+
+/*
+ * Function to close the stacked page and remove the widget from the
+ * Page selector window
+ */
+void Pages::closeStackPage()
+{
+   /* First get the tree widget item and destroy it */
+   QTreeWidgetItem *item=mainWin->getFromHash(this);
+   /* remove the QTreeWidgetItem <-> page from the hash */
+   mainWin->hashRemove(item, this);
+   /* remove the item from the page selector by destroying it */
+   delete item;
+   /* remove this */
+   delete this;
+}
+
+/*
+ * Function to set members from the external mainwin and it's overload being
+ * passed a specific QTreeWidgetItem to be it's parent on the tree
+ */
+void Pages::pgInitialize()
+{
+   pgInitialize(NULL);
+}
+
+void Pages::pgInitialize(QTreeWidgetItem *parentTreeWidgetItem)
+{
+   m_parent = mainWin->stackedWidget;
+   m_console = mainWin->currentConsole();
+
+   if (!parentTreeWidgetItem) {
+      parentTreeWidgetItem = m_console->directorTreeItem();
+   }
+
+   QTreeWidgetItem *item = new QTreeWidgetItem(parentTreeWidgetItem);
+   QString name; 
+   treeWidgetName(name);
+   item->setText(0, name);
+   mainWin->hashInsert(item, this);
+   setTitle();
+}
+
+/*
+ * Virtual Function to return a name
+ * All subclasses should override this function
+ */
+void Pages::treeWidgetName(QString &name)
+{
+   name = m_name;
+}
+
+/*
+ * Function to simplify executing a console command and bringing the
+ * console to the front of the stack
+ */
+void Pages::consoleCommand(QString &command)
+{
+   /*if (!m_console->is_connectedGui())
+       return;*/
+   if (!m_console->preventInUseConnect()) {
+       return;
+   }
+   consoleInput(command);
+}
+
+/*
+ * Function to simplify executing a console command, but does not
+ *  check for the connection in use.  We need this so that we can
+ *  *always* enter command from the command line.
+ */
+void Pages::consoleInput(QString &command)
+{
+   /* Bring this director's console to the front of the stack */
+   setConsoleCurrent();
+   QString displayhtml("<font color=\"blue\">");
+   displayhtml += command + "</font>\n";
+   m_console->display_html(displayhtml);
+   m_console->display_text("\n");
+   m_console->write_dir(command.toUtf8().data());
+   m_console->displayToPrompt();
+}
+
+/*
+ * Function for handling undocked windows becoming active.
+ * Change the currently selected item in the page selector window to the now
+ * active undocked window.  This will also make the console for the undocked
+ * window m_currentConsole.
+ */
+void Pages::changeEvent(QEvent *event)
+{
+   if ((event->type() ==  QEvent::ActivationChange) && (isActiveWindow())) {
+      setCurrent();
+   }
+}
+
+/*
+ * Function to simplify getting the name of the class and the director into
+ * the caption or title of the window
+ */
+void Pages::setTitle()
+{
+   QString title, director;
+   treeWidgetName(title);
+   m_console->getDirResName(director);
+   title += " of Director ";
+   title += director;
+   setWindowTitle(title);
+}
+
+/*
+ * Bring the current directors console window to the top of the stack.
+ */
+void Pages::setConsoleCurrent()
+{
+   mainWin->treeWidget->setCurrentItem(mainWin->getFromHash(m_console));
+}
+
+/*
+ * Bring this window to the top of the stack.
+ */
+void Pages::setCurrent()
+{
+   mainWin->treeWidget->setCurrentItem(mainWin->getFromHash(this));
+}
+
+/*
+ * Function to set the text of the toggle dock context menu when page and
+ * widget item are NOT known.  
+ */
+void Pages::setContextMenuDockText()
+{
+   QTreeWidgetItem *item = mainWin->getFromHash(this);
+   QString docktext("");
+   if (isDocked()) {
+       docktext += "UnDock ";
+   } else {
+       docktext += "ReDock ";
+   }
+   docktext += item->text(0) += " Window";
+      
+   mainWin->actionToggleDock->setText(docktext);
+   setTreeWidgetItemDockColor();
+}
+
+/*
+ * Function to set the color of the tree widget item based on whether it is
+ * docked or not.
+ */
+void Pages::setTreeWidgetItemDockColor()
+{
+   QTreeWidgetItem* item = mainWin->getFromHash(this);
+   if (item) {
+      if (item->text(0) != "Console") {
+         if (isDocked()) {
+         /* Set the brush to blue if undocked */
+            QBrush blackBrush(Qt::black);
+            item->setForeground(0, blackBrush);
+         } else {
+         /* Set the brush back to black if docked */
+            QBrush blueBrush(Qt::blue);
+            item->setForeground(0, blueBrush);
+         }
+      }
+   }
+}