Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef SUIT_LICENSEDLG_H
00021 #define SUIT_LICENSEDLG_H
00022
00023 #include "SUIT.h"
00024
00025 #include <QDialog>
00026 class QTextEdit;
00027
00028 #ifdef WIN32
00029 #pragma warning( disable:4251 )
00030 #endif
00031
00032 class SUIT_EXPORT SUIT_LicenseDlg :public QDialog
00033 {
00034 Q_OBJECT
00035 public:
00036 SUIT_LicenseDlg( bool firstShow = true, QWidget* = 0, const char* = 0, bool = true );
00037 virtual ~SUIT_LicenseDlg();
00038
00039 private slots:
00040 void onAgree();
00041 void onCancel();
00042 void onPrint();
00043
00044 private:
00045 QTextEdit* myTextEdit;
00046 };
00047
00048 #ifdef WIN32
00049 #pragma warning( default:4251 )
00050 #endif
00051
00052 #endif