Canorus  0.7
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
/home/iurt/rpm/BUILD/canorus-0.7.R1002/src/control/helpctl.h
Go to the documentation of this file.
00001 
00008 #ifndef HELPCTL_H_
00009 #define HELPCTL_H_
00010 
00011 #include <QString>
00012 #include <QUrl>
00013 
00014 class QHelpEngine;
00015 class QWidget;
00016 
00017 class CAHelpCtl {
00018 public:
00019         CAHelpCtl();
00020         virtual ~CAHelpCtl();
00021 
00022         void showUsersGuide( QString chapter="", QWidget *helpWidget=0 );
00023 
00024 private:
00025         void displayHelp( QUrl url, QWidget *helpWidget );
00026         QString usersGuideLanguage();
00027 
00028         QHelpEngine *_helpEngine;
00029 };
00030 
00031 #endif /* HELPCTL_H_ */