summaryrefslogtreecommitdiffstats
path: root/src/kvirc/ui/kvi_imagedialog.h
blob: 20339f03188f0881d4c6a3eaa35cd7c51bfd009c (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
110
#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 <tqdialog.h>
#include <tqcombobox.h>
#include "kvi_tal_listbox.h"
#include "kvi_valuelist.h"
#include <tqtimer.h>
#include <tqstringlist.h>

#include "kvi_dynamictooltip.h"

class KviImageDialogItem : public KviTalListBoxPixmap
{
public:
	bool m_bIsFolder;
	TQString m_szImageId;
	TQString m_szTipText;
public:
	KviImageDialogItem(KviTalListBox * b,const TQPixmap &thumb,const TQString &szFile,const TQString &image_id,const TQString &szTipText = TQString(),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 TQString & imageId(){ return m_szImageId; };
	const TQString & tipText(){ return m_szTipText; };
	virtual int height(const KviTalListBox *) const;
	virtual int width(const KviTalListBox *) const;
	virtual void paint(TQPainter * p);
};


#define KID_TYPE_BUILTIN_IMAGES_SMALL 1
#define KID_TYPE_FULL_PATH 2

#define KID_TYPE_ALL 3

class KVIRC_API KviImageDialog : public TQDialog
{
	Q_OBJECT
  
public:
	KviImageDialog(TQWidget * par,
		const TQString &szCaption = TQString(),
		int types = KID_TYPE_ALL,
		int initialType = 0,
		const TQString &szInitialDir = TQString(),
		int maxPreviewFileSize = 256000, bool modal=false);
	virtual ~KviImageDialog();
protected:
	TQComboBox       * m_pTypeComboBox;
	KviValueList<int> * m_pTypeList;
	KviTalListBox        * m_pListBox;
	TQTimer          * m_pTimer;
	int               m_iJobType;

	int               m_iMaxPreviewFileSize;

	TQString           m_szJobPath;
	TQStringList       m_lJobFileList;
	
	int               m_iJobIndexHelper;

	TQString           m_szSelectedImage;

	TQString           m_szInitialPath;

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

#endif //_KVI_IMAGEDIALOG_H_