summaryrefslogtreecommitdiffstats
path: root/src/kvirc/ui/kvi_htmldialog.h
blob: 3f9a6d2a41148b283fbdd47eb7117e34c5558f6e (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#ifndef _KVI_HTMLDIALOG_H_
#define _KVI_HTMLDIALOG_H_
//=============================================================================
//
//   File : kvi_htmldialog.h
//   Created on Wed 03 Jan 2007 03:36:36 by Szymon Stefanek
//
//   This file is part of the KVIrc IRC Client distribution
//   Copyright (C) 2007 Szymon Stefanek <pragma at kvirc dot net>
//
//   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 opinion) any later version.
//
//   This program is distributed in the HOPE that it will be USEFUL,
//   but WITHOUT ANY WARRANTY; without even the implied warranty of
//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//   See the GNU General Public License for more details.
//
//   You should have received a copy of the GNU General Public License
//   along with this program. If not, write to the Free Software Foundation,
//   Inc. ,51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
//=============================================================================

#include "kvi_qstring.h"
#include "kvi_settings.h"


#include <qpixmap.h>
#include <qdialog.h>

class KviHtmlDialogData
{
public:
	// input
	
	// mandatory fields
	enum Flags { ForceMinimumSize = 1 };
	int iFlags;               // da flags :)
	int iDefaultButton;       // the button to use when Enter is pressed (1,2 or 3)
	int iCancelButton;        // the button to use when Esc is pressed (1,2 or 3)
	QString szHtmlText;       // Shouldn't be empty :D
	
	// optional fields
	QString szCaption;        // KVIrc is used when this is empty
	QString szUpperLabelText; // no label is shown if this is empty
	QString szLowerLabelText; // no label is shown if this is empty
	QString szButton1Text;    // OK is used if this is empty
	QString szButton2Text;    // no button is shown if this is empty
	QString szButton3Text;    // no button is shown if this is empty

	int iMinimumWidth;
	int iMinimumHeight;

	QPixmap pixIcon;          // may be null

	// output
	int iSelectedButton;      // returns 1,2 or 3
};

class KVIRC_API KviHtmlDialog : public QDialog
{
	Q_OBJECT
public:
	// the dialog does NOT delete this structure and assumes that
	// it remains alive until the dialog closes (i.e. it may access
	// the structure in the destructor
	KviHtmlDialog(QWidget * pParent,KviHtmlDialogData * pData);
	~KviHtmlDialog();
protected:
	KviHtmlDialogData * m_pData;
public:
	// displays the dialog as modal and returns 1,2 or 3
	static int display(QWidget * pParent,KviHtmlDialogData * pData);
protected slots:
	void button1Pressed();
	void button2Pressed();
	void button3Pressed();
protected:
	virtual void reject();
};



#endif //!_KVI_HTMLDIALOG_H_