AlbumShaper  1.0a3
helpWindow.h
Go to the documentation of this file.
1 //==============================================
2 // copyright : (C) 2003-2005 by Will Stokes
3 //==============================================
4 // This program is free software; you can redistribute it
5 // and/or modify it under the terms of the GNU General
6 // Public License as published by the Free Software
7 // Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //==============================================
10 
11 #ifndef GUI_HELP_HELPWINDOW_H
12 #define GUI_HELP_HELPWINDOW_H
13 
14 #include <qdialog.h>
15 //Added by qt3to4:
16 #include <QCloseEvent>
17 #include "contents.h"
18 
19 class ALabel;
20 class Q3TextBrowser;
21 
22 //=====================================
25 //=====================================
26 
27 //======================
28 class HelpWindow : public QDialog
29 {
30 Q_OBJECT
31 //----------------------
32 public:
33  HelpWindow( QWidget *parent=0, const char* name=0);
34  ~HelpWindow();
35 //----------------------
36 signals:
37  void closed();
38 //----------------------
39 private slots:
40  void setPage(HELP_PAGE page);
41  void showFirstSelection();
42  void showCurrentPage();
43  void reject();
44 //----------------------
45 private:
46  void closeEvent( QCloseEvent* e);
47 
50 
52 
53  Q3MimeSourceFactory* loadingMimeSource;
54 //----------------------
55 };
56 //======================
57 
58 #endif //GUI_HELP_HELPWINDOW_H
void closed()
void showCurrentPage()
Definition: helpWindow.cpp:186
void showFirstSelection()
Definition: helpWindow.cpp:180
Help window widget.
Definition: helpWindow.h:28
HELP_PAGE
Contents window widget.
Definition: contents.h:24
HELP_PAGE currentPage
Definition: helpWindow.h:51
Definition: ALabel.h:41
Q3TextBrowser * content
Definition: helpWindow.h:49
void closeEvent(QCloseEvent *e)
Definition: helpWindow.cpp:151
Q3MimeSourceFactory * loadingMimeSource
Definition: helpWindow.h:53
ALabel * billboard
Definition: helpWindow.h:48
HelpWindow(QWidget *parent=0, const char *name=0)
Definition: helpWindow.cpp:44
void setPage(HELP_PAGE page)
Definition: helpWindow.cpp:163
void reject()
Definition: helpWindow.cpp:157