summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/listviewplus.cpp
blob: 722b34767c11ec34d8331a35b384c559d8c0f8d1 (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
#include <qpopupmenu.h>
#include <qtimer.h>

#include "listviewplus.h"

ListViewPlus::ListViewPlus(QWidget *parent, const char *name, WFlags fl)
	: QListView(parent, name, fl)
{

}

void ListViewPlus::keyPressEvent(QKeyEvent *event)
{
	switch(event->key()) {
		case Qt::Key_Space:		// FALLTHROUGH
		case Qt::Key_Enter:
			if (currentItem() != 0)
				emit clicked(currentItem());
			break;
		default: break;
	}

	QListView::keyPressEvent(event);
}

void ListViewPlus::setPopup(QPopupMenu *popup, int delay)
{
	_popup = popup;
	_delay = delay;

	connect(this, SIGNAL(pressed(QListViewItem*,const QPoint&,int)), SLOT(_initPopup(QListViewItem*,const QPoint&,int)));
	connect(this, SIGNAL(clicked(QListViewItem*,const QPoint&,int)), SLOT(_cancelPopup(QListViewItem*,const QPoint&,int)));
}

void ListViewPlus::_initPopup(QListViewItem *, const QPoint &point, int)
{
	_point = point;

	_timer = new QTimer();
	_timer->start(_delay, true);

	connect(_timer, SIGNAL(timeout()), this, SLOT(_showPopup()));
}

void ListViewPlus::_cancelPopup(QListViewItem *, const QPoint &, int)
{
	delete _timer;
}

void ListViewPlus::_showPopup()
{
	_popup->popup(_point);
}