~ubuntu-branches/ubuntu/maverick/qgo/maverick

« back to all changes in this revision

Viewing changes to src/helpviewer.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin A. Godisch
  • Date: 2005-01-01 23:07:10 UTC
  • Revision ID: james.westby@ubuntu.com-20050101230710-fhng6yidm47xlb2i
Tags: upstream-1.0.0-r2
ImportĀ upstreamĀ versionĀ 1.0.0-r2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* helpviewer.h
 
3
*/
 
4
 
 
5
#ifndef HELPVIEWER_H
 
6
#define HELPVIEWER_H
 
7
 
 
8
#include <qmainwindow.h>
 
9
#include <qtextbrowser.h>
 
10
#include <qtoolbutton.h>
 
11
 
 
12
class HelpViewer : public QMainWindow
 
13
{
 
14
        Q_OBJECT
 
15
                
 
16
public:
 
17
        HelpViewer(QWidget* parent = 0, const char* name = 0, WFlags f = WType_TopLevel);
 
18
        ~HelpViewer();
 
19
        
 
20
protected:
 
21
        void initToolBar();
 
22
        
 
23
private:
 
24
        QTextBrowser *browser;
 
25
        QToolBar *toolBar;
 
26
        QToolButton *buttonHome, *buttonClose;
 
27
};
 
28
 
 
29
#endif