]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/help/help.cpp
Implement installation of bat help files
[bacula/bacula] / bacula / src / qt-console / help / help.cpp
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2007-2009 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 and included
11    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 Kern Sibbald.
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  *  Help Window class
31  *
32  *   Kern Sibbald, May MMVII
33  *
34  *  $Id$
35  */ 
36
37 #include "bat.h"
38 #include "help.h"
39
40 Help::Help(const QString &path, const QString &file, QWidget *parent) :
41         QWidget(parent)
42 {
43    setAttribute(Qt::WA_DeleteOnClose);     /* Make sure we go away */
44    setAttribute(Qt::WA_GroupLeader);       /* allow calling from modal dialog */
45
46    setupUi(this);                          /* create window */
47
48    textBrowser->setSearchPaths(QStringList() << HELPDIR << path << ":/images");
49    textBrowser->setSource(file);
50    //textBrowser->setCurrentFont(mainWin->m_consoleHash.values()[0]->get_font());
51
52    connect(textBrowser, SIGNAL(sourceChanged(const QUrl &)), this, SLOT(updateTitle()));
53    connect(closeButton, SIGNAL(clicked()), this, SLOT(close()));
54    connect(homeButton, SIGNAL(clicked()), textBrowser, SLOT(home()));
55    connect(backButton, SIGNAL(clicked()), textBrowser, SLOT(backward()));
56    this->show();
57 }
58
59 void Help::updateTitle()
60 {
61    setWindowTitle(tr("Help: %1").arg(textBrowser->documentTitle()));
62 }
63
64 void Help::displayFile(const QString &file)
65 {
66    QRegExp rx;
67    rx.setPattern("/\\.libs");
68    QString path = QApplication::applicationDirPath();
69    int pos = rx.indexIn(path);
70    if (pos)
71       path = path.remove(pos, 6);
72    path += "/help";
73    new Help(path, file);
74 }