summaryrefslogtreecommitdiffstats
path: root/lskat/lskat/msgdlg.h
blob: b2b0bfe0fe031dac24fec23c6a4ebe0fab925c78 (plain)
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
/***************************************************************************
                          LSKat for KDE
                             -------------------
    begin                : March 2000 
    copyright            : (C) 1995-2000 by Martin Heni
    email                : martin@heni-online.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 <tqmultilineedit.h>
#include <tqstring.h>
#include <tqdialog.h>

class MsgDlg : public TQDialog
{
  Q_OBJECT
  TQ_OBJECT

  public:
   MsgDlg (TQWidget* tqparent = NULL,const char* name = NULL,const char *sufi=NULL);
   TQString GetMsg();

protected slots:

protected:
  TQMultiLineEdit *MultiLine;



};
#endif