Canorus  0.0
helpctl.h
Go to the documentation of this file.
1 
8 #ifndef HELPCTL_H_
9 #define HELPCTL_H_
10 
11 #include <QString>
12 #include <QUrl>
13 
14 class QWidget;
15 
16 class CAHelpCtl {
17 public:
18  CAHelpCtl();
19  virtual ~CAHelpCtl();
20 
21  bool showUsersGuide( QString chapter="", QWidget *helpWidget=nullptr );
22 
23 private:
24  QUrl _homeUrl;
25 
26  QUrl detectHomeUrl();
27  void displayHelp( QUrl url, QWidget *helpWidget );
28 };
29 
30 #endif /* HELPCTL_H_ */
CAHelpCtl::displayHelp
void displayHelp(QUrl url, QWidget *helpWidget)
Definition: helpctl.cpp:98
CAHelpCtl::~CAHelpCtl
virtual ~CAHelpCtl()
Definition: helpctl.cpp:32
CAHelpCtl::CAHelpCtl
CAHelpCtl()
Definition: helpctl.cpp:28
CAHelpCtl::showUsersGuide
bool showUsersGuide(QString chapter="", QWidget *helpWidget=nullptr)
Definition: helpctl.cpp:76
mainwin.h
CAHelpCtl
Class for showing User's guide, What's new, Did you know tips etc.
Definition: helpctl.h:16
CAHelpCtl::detectHomeUrl
QUrl detectHomeUrl()
Definition: helpctl.cpp:38
helpctl.h
CAMainWin
Canorus main window Class CAMainWin represents Canorus main window. The core layout is generated usin...
Definition: plugins_swig.h:6
helpbrowser.h
canorus.h
CAHelpBrowser
Definition: helpbrowser.h:16
CAHelpCtl::_homeUrl
QUrl _homeUrl
Definition: helpctl.h:24