]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/qt-console/pages.cpp
Remove jobq.c constraint that read and write SD must be
[bacula/bacula] / bacula / src / qt-console / pages.cpp
index ba27c228b89b1040451bcfd5db455f61c11118fa..6823c3ec2dc87cb3fa0e705e91a4c341463ff86c 100644 (file)
@@ -1,14 +1,14 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2000-2007 Free Software Foundation Europe e.V.
+   Copyright (C) 2007-2008 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    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
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   Bacula® is a registered trademark of John Walker.
+   Bacula® is a registered trademark of Kern Sibbald.
    The licensor of Bacula is the Free Software Foundation Europe
    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
    Switzerland, email:ftf@fsfeurope.org.
 */
 /*
- *   Version $Id: batstack.cpp 4230 2007-02-21 20:07:37Z kerns $
+ *   Version $Id$
  *
  *   Dirk Bartley, March 2007
  */
 #include "pages.h"
 #include "bat.h"
 
+/* A global function */
+bool isWin32Path(QString &fullPath) 
+{
+   char *buf = fullPath.left(2).toUtf8().data();
+
+   //bool toret = B_ISALPHA(buf[1]);
+   bool toret = buf[1] == ':' && B_ISALPHA(buf[0]);
+   if (mainWin->m_miscDebug) {
+      if (toret)
+         Pmsg1(000, "returning from isWin32Path true %s\n", fullPath.toUtf8().data());
+      else
+         Pmsg1(000, "returning from isWin32Path false %s\n", fullPath.toUtf8().data());
+   }
+   return toret;
+}
+
 /*
  * dockPage
  * This function is intended to be called from within the Pages class to pull
@@ -46,13 +62,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 +87,8 @@ void Pages::undockPage()
    show();
    /* Clear docked flag */
    m_docked = false;
+   /* The window has been undocked, lets change the context menu */
+   setContextMenuDockText();
 }
 
 /*
@@ -117,26 +137,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();
 }
 
 /*
@@ -179,11 +186,19 @@ void Pages::closeStackPage()
  */
 void Pages::pgInitialize()
 {
-   pgInitialize(NULL);
+   pgInitialize(QString(), NULL);
 }
 
-void Pages::pgInitialize(QTreeWidgetItem *parentTreeWidgetItem)
+void Pages::pgInitialize(const QString &name)
 {
+   pgInitialize(name, NULL);
+}
+
+void Pages::pgInitialize(const QString &tname, QTreeWidgetItem *parentTreeWidgetItem)
+{
+   if (tname.size()) {
+      m_name = tname;
+   }
    m_parent = mainWin->stackedWidget;
    m_console = mainWin->currentConsole();
 
@@ -196,6 +211,7 @@ void Pages::pgInitialize(QTreeWidgetItem *parentTreeWidgetItem)
    treeWidgetName(name);
    item->setText(0, name);
    mainWin->hashInsert(item, this);
+   setTitle();
 }
 
 /*
@@ -204,7 +220,7 @@ void Pages::pgInitialize(QTreeWidgetItem *parentTreeWidgetItem)
  */
 void Pages::treeWidgetName(QString &name)
 {
-   name = "Default Page Name";
+   name = m_name;
 }
 
 /*
@@ -213,20 +229,109 @@ void Pages::treeWidgetName(QString &name)
  */
 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();
-   /* Bring this directors console to the front of the stack */
-   mainWin->treeWidget->setCurrentItem(mainWin->getFromHash(m_console));
 }
 
 /*
  * Function for handling undocked windows becoming active.
  * Change the currently selected item in the page selector window to the now
- * active undocked window.
+ * 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())) {
-      mainWin->treeWidget->setCurrentItem(mainWin->getFromHash(this));
+      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 wdgname, director;
+   treeWidgetName(wdgname);
+   m_console->getDirResName(director);
+   QString title = tr("%1 of Director %2").arg(wdgname).arg(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 = tr("UnDock %1 Window").arg(item->text(0));
+   } else {
+      docktext = tr("ReDock %1 Window").arg(item->text(0));
+   }
+      
+   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) != tr("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);
+         }
+      }
    }
 }