1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
/** Copyright (C) 2010, J.M.Reneau, S.W.Irupin
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License along
** with this program; if not, write to the Free Software Foundation, Inc.,
** 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
**/
#include <iostream>
using namespace std;
#include "DocumentationWin.h"
#include "MainWindow.h"
DocumentationWin::DocumentationWin (QWidget * parent)
:QDialog(parent)
{
QString localecode = ((MainWindow *) parent)->localecode;
QString windowsPath = QApplication::applicationDirPath() + "/help/";
QString linuxPath = "/usr/share/basic256/help/";
QString currentPath = "./";
QString indexfile = "index.html";
// position where it was last on screen
QSettings settings(SETTINGSORG, SETTINGSAPP);
resize(settings.value(SETTINGSDOCSIZE, QSize(700, 500)).toSize());
move(settings.value(SETTINGSDOCPOS, QPoint(150, 150)).toPoint());
docs = new QTextBrowser( this );
toolbar = new QToolBar( this );
QAction *backward = new QAction(QIcon(":images/backward.png"), tr("&Back"), this);
connect(backward, SIGNAL(triggered()), docs, SLOT(backward()));
connect(docs, SIGNAL(backwardAvailable(bool)), backward, SLOT(setEnabled(bool)));
toolbar->addAction(backward);
QAction *forward = new QAction(QIcon(":images/forward.png"), tr("&Forward"), this);
connect(forward, SIGNAL(triggered()), docs, SLOT(forward()));
connect(docs, SIGNAL(forwardAvailable(bool)), forward, SLOT(setEnabled(bool)));
toolbar->addAction(forward);
QAction *home = new QAction(QIcon(":images/home.png"), tr("&Home"), this);
connect(home, SIGNAL(triggered()), docs, SLOT(home()));
toolbar->addAction(home);
toolbar->addSeparator();
QAction *exit = new QAction(QIcon(":images/exit.png"), tr("&Exit"), this);
connect(exit, SIGNAL(triggered()), this, SLOT(close()));
toolbar->addAction(exit);
layout = new QVBoxLayout;
layout->addWidget(toolbar);
layout->addWidget(docs);
this->setLayout(layout);
this->setWindowTitle(QObject::tr("BASIC-256 Reference"));
this->show();
docs->setSearchPaths(QStringList()
<< windowsPath+localecode.left(2)
<< linuxPath+localecode.left(2)
<< currentPath+localecode.left(2)
<< windowsPath+"en"
<< linuxPath+"en"
<< currentPath+"en");
docs->setSource(QUrl(indexfile));
}
void DocumentationWin::resizeEvent(QResizeEvent *e) {
this->resize(size());
}
void DocumentationWin::closeEvent(QCloseEvent *e) {
QSettings settings(SETTINGSORG, SETTINGSAPP);
settings.setValue(SETTINGSDOCSIZE, size());
settings.setValue(SETTINGSDOCPOS, pos());
}
|