You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/lskat/lskat/msgdlg.h

41 lines
1.3 KiB

/***************************************************************************
LSKat for TDE
-------------------
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
{
TQ_OBJECT
public:
MsgDlg (TQWidget* parent = NULL,const char* name = NULL,const char *sufi=NULL);
TQString GetMsg();
protected slots:
protected:
TQMultiLineEdit *MultiLine;
};
#endif