Canorus  0.7
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 QHelpEngine;
15 class QWidget;
16 
17 class CAHelpCtl {
18 public:
19  CAHelpCtl();
20  virtual ~CAHelpCtl();
21 
22  void showUsersGuide( QString chapter="", QWidget *helpWidget=0 );
23 
24 private:
25  void displayHelp( QUrl url, QWidget *helpWidget );
26  QString usersGuideLanguage();
27 
28  QHelpEngine *_helpEngine;
29 };
30 
31 #endif /* HELPCTL_H_ */