代码拉取完成,页面将自动刷新
#ifndef __HELPWINDOW_HH_INCLUDED__
#define __HELPWINDOW_HH_INCLUDED__
#include <QDialog>
#include <QToolBar>
#include <QtHelp/QHelpEngine>
#include <QString>
#include <QTextBrowser>
#include <QTableWidget>
#include <QAction>
#include <QSplitter>
#include <exception>
#include "config.hh"
namespace Help {
class HelpBrowser : public QTextBrowser
{
Q_OBJECT
public:
HelpBrowser( QHelpEngineCore * engine, QWidget *parent );
void showHelpForKeyword( QString const & id );
private:
QVariant loadResource( int type, QUrl const & name );
QHelpEngineCore * helpEngine;
private slots:
void linkClicked( QUrl const & url );
};
class HelpWindow : public QDialog
{
Q_OBJECT
Config::Class & cfg;
QToolBar * navToolBar;
QHelpEngine * helpEngine;
QTabWidget * tabWidget;
HelpBrowser * helpBrowser;
QAction * navForward, * navBack, * navHome;
QAction * zoomInAction, * zoomOutAction, * zoomBaseAction;
QSplitter * splitter;
QString helpFile, helpCollectionFile;
int fontSize;
void applyZoomFactor();
public:
HelpWindow( QWidget * parent, Config::Class & cfg_ );
~HelpWindow();
QHelpEngine const * getHelpEngine()
{ return helpEngine; }
void showHelpFor( QString const & keyword );
public slots:
virtual void reject();
virtual void accept();
void forwardEnabled( bool enabled );
void backwardEnabled( bool enabled );
void contentsItemClicked( QModelIndex const & index );
void zoomIn();
void zoomOut();
void zoomBase();
signals:
void needClose();
};
} // namespace Help
#endif // __HELPWINDOW_HH_INCLUDED__
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。