summaryrefslogtreecommitdiff
path: root/bibletime/frontend/cinputdialog.h
blob: 8fa2c11241510a0e8f87f283f3c183031d30c472 (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
41
42
43
44
45
46
47
48
49
/***************************************************************************
                          cinputdialog.h  -  description
                             -------------------
    begin                : Sun May 13 2001
    copyright            : (C) 2001 by The BibleTime team
    email                : info@bibletime.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 CINPUTDIALOG_H
#define CINPUTDIALOG_H

//KDE includes
#include <kdialog.h>

class QTextEdit;
class QWidget;

/** This is a small input dialog with
	* a multiline edit for the text input.
  * @author The BibleTime team
  */
class CInputDialog : public KDialog  {
   Q_OBJECT
public: 	
	CInputDialog(const QString& caption, const QString& description, const QString& text, QWidget *parent=0, const char *name=0, const bool modal = true);
  /**
 	* A static function to get some using CInputDialog.
 	*/
  static const QString getText( const QString& caption, const QString& description, const QString& text = QString::null, bool* ok = 0, QWidget* parent = 0, bool modal = true);
  /**
 	* Returns the text entered at the moment.
 	*/
  const QString text();
//	~CInputDialog();

private:
	QTextEdit* m_editWidget;
};

#endif