summaryrefslogtreecommitdiff
path: root/src/frontend/cinputdialog.h
blob: 7cd30b2a2acc150f9d42036db1a71669d2fbac27 (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
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2008 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/



#ifndef CINPUTDIALOG_H
#define CINPUTDIALOG_H


#include <QDialog>

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 QDialog  {
	Q_OBJECT
public:
	CInputDialog(const QString& caption, const QString& description, const QString& text, QWidget *parent=0, Qt::WindowFlags wflags = Qt::Dialog);
	/**
	* 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, Qt::WindowFlags wflags = Qt::Dialog);
	/**
	* Returns the text entered at the moment.
	*/
	const QString text();
	// ~CInputDialog();

private:
	QTextEdit* m_textEdit;
};

#endif