summaryrefslogtreecommitdiffstats
path: root/src/kvirc/ui/kvi_imagedialog.h
blob: 7e1da54da9dfddfbde26442d0d44a03549b855aa (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#ifndef _KVI_IMAGEDIALOG_H_
#define _KVI_IMAGEDIALOG_H_
//
//   File : kvi_imagedialog.h
//   Creation date : Sun Dec 22 2002 19:42 by Szymon Stefanek
//
//   This file is part of the KVirc irc client distribution
//   Copyright (C) 2002 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_settings.h"




#include <qdialog.h>
#include <qcombobox.h>
#include "kvi_tal_listbox.h"
#include "kvi_valuelist.h"
#include <qtimer.h>
#include <qstringlist.h>

#include "kvi_dynamictooltip.h"

class KviImageDialogItem : public KviTalListBoxPixmap
{
public:
	bool m_bIsFolder;
	QString m_szImageId;
	QString m_szTipText;
public:
	KviImageDialogItem(KviTalListBox * b,const QPixmap &thumb,const QString &szFile,const QString &image_id,const QString &szTipText = QString::null,bool bIsFolder = false)
	: KviTalListBoxPixmap(b,thumb,szFile) , m_bIsFolder(bIsFolder) , m_szImageId(image_id) , m_szTipText(szTipText) {};
	~KviImageDialogItem(){};
public:
	bool isFolder(){ return m_bIsFolder; };
	const QString & imageId(){ return m_szImageId; };
	const QString & tipText(){ return m_szTipText; };
	virtual int height(const KviTalListBox *) const;
	virtual int width(const KviTalListBox *) const;
	virtual void paint(QPainter * p);
};


#define KID_TYPE_BUILTIN_IMAGES_SMALL 1
#define KID_TYPE_FULL_PATH 2

#define KID_TYPE_ALL 3

class KVIRC_API KviImageDialog : public QDialog
{
	Q_OBJECT
public:
	KviImageDialog(QWidget * par,
		const QString &szCaption = QString::null,
		int types = KID_TYPE_ALL,
		int initialType = 0,
		const QString &szInitialDir = QString::null,
		int maxPreviewFileSize = 256000, bool modal=false);
	virtual ~KviImageDialog();
protected:
	QComboBox       * m_pTypeComboBox;
	KviValueList<int> * m_pTypeList;
	KviTalListBox        * m_pListBox;
	QTimer          * m_pTimer;
	int               m_iJobType;

	int               m_iMaxPreviewFileSize;

	QString           m_szJobPath;
	QStringList       m_lJobFileList;
	
	int               m_iJobIndexHelper;

	QString           m_szSelectedImage;

	QString           m_szInitialPath;

	KviDynamicToolTip * m_pTip;
public:
	const QString & selectedImage(){ return m_szSelectedImage; };
protected:
	void startJob(int type,const QString &szInitialPath = QString::null);
	void jobTerminated();
	virtual void closeEvent(QCloseEvent *e);
protected slots:
	void okClicked();
	void cancelClicked();
	void heartbeat();
	void jobTypeSelected(int index);
	void itemDoubleClicked(KviTalListBoxItem * it);
	void tipRequest(KviDynamicToolTip *,const QPoint &pnt);
};

#endif //_KVI_IMAGEDIALOG_H_