diff options
Diffstat (limited to 'lskat/lskat/msgdlg.h')
-rw-r--r-- | lskat/lskat/msgdlg.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/lskat/lskat/msgdlg.h b/lskat/lskat/msgdlg.h new file mode 100644 index 00000000..614fa332 --- /dev/null +++ b/lskat/lskat/msgdlg.h @@ -0,0 +1,39 @@ +/*************************************************************************** + LSKat for KDE + ------------------- + begin : March 2000 + copyright : (C) 1995-2000 by Martin Heni + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + * * + * 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 __MSGDLG_H_ +#define __MSGDLG_H_ +#include <qmultilineedit.h> +#include <qstring.h> +#include <qdialog.h> + +class MsgDlg : public QDialog +{ + Q_OBJECT + + public: + MsgDlg (QWidget* parent = NULL,const char* name = NULL,const char *sufi=NULL); + QString GetMsg(); + +protected slots: + +protected: + QMultiLineEdit *MultiLine; + + + +}; +#endif |