summaryrefslogtreecommitdiffstats
path: root/kexi/widget/utils/kexidropdownbutton.cpp
blob: a17e5cfb1721a76af04726dbf342e57f68abc60f (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
/* This file is part of the KDE project
   Copyright (C) 2006 Jaroslaw Staniek <js@iidea.pl>

   This program is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) 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
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this program; see the file COPYING.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#include "kexidropdownbutton.h"

#include <kpopupmenu.h>
#include <kdebug.h>

#include <qstyle.h>
#include <qapplication.h>

KexiDropDownButton::KexiDropDownButton(QWidget *parent)
 : QToolButton(parent, "KexiDBImageBox::Button")
{
	setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding);
//! @todo get this from a KStyle
//	setFixedWidth(QMAX(18, qApp->globalStrut().width()));
	int fixedWidth;
	//hack
	if (qstricmp(style().name(),"thinkeramik")==0)
		fixedWidth = 18; //typical width as in "windows" style
	else
		fixedWidth = style().querySubControlMetrics( QStyle::CC_ComboBox, 
			this, QStyle::SC_ComboBoxArrow ).width();
	setFixedWidth( fixedWidth );
	setPopupDelay(10/*ms*/);
}

KexiDropDownButton::~KexiDropDownButton()
{
}

void KexiDropDownButton::drawButton( QPainter *p )
{
	QToolButton::drawButton(p);
	QStyle::SFlags arrowFlags = QStyle::Style_Default;
	if (isDown() || state()==On)
		arrowFlags |= QStyle::Style_Down;
	if (isEnabled())
		arrowFlags |= QStyle::Style_Enabled;
	style().drawPrimitive(QStyle::PE_ArrowDown, p,
		QRect((width()-7)/2, height()-9, 7, 7), colorGroup(),
		arrowFlags, QStyleOption() );
}

QSize KexiDropDownButton::sizeHint () const
{
	return QSize( fontMetrics().maxWidth() + 2*2, fontMetrics().height()*2 + 2*2 );
}

void KexiDropDownButton::keyPressEvent( QKeyEvent * e ) 
{
	const int k = e->key();
	const bool dropDown = (e->state() == Qt::NoButton && (k==Qt::Key_Space || k==Qt::Key_Enter || k==Qt::Key_Return || k==Qt::Key_F2 || k==Qt::Key_F4))
	  || (e->state() == Qt::AltButton && k==Qt::Key_Down);
	if (dropDown) {
		e->accept();
		animateClick();
		QMouseEvent me( QEvent::MouseButtonPress, QPoint(2,2), Qt::LeftButton, Qt::NoButton );
		QApplication::sendEvent( this, &me );
		return;
	}
	QToolButton::keyPressEvent(e);
}

#include "kexidropdownbutton.moc"