-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathhelpdialog.h
45 lines (36 loc) · 1.34 KB
/
helpdialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/***************************************************************************
helpdialog.h
-------------------
begin : Sun Apr 03 2005
copyright : (C) 2005 by Stefan Jahn
email : stefan@lkcc.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef HELPDIALOG_H
#define HELPDIALOG_H
#include <QDialog>
#include <QVBoxLayout>
class QTextEdit;
class QVBoxLayout;
/**
*@author Stefan Jahn
*/
class HelpDialog : public QDialog {
Q_OBJECT
public:
HelpDialog(QWidget *parent = 0);
~HelpDialog();
private slots:
void slotClose();
private:
QVBoxLayout *vLayout;
QTextEdit *Text;
};
#endif