blob: f0752a2d36440b7ea3b0b7a23d04178111383405 (
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
|
#ifndef ENTER_COMBO_H
#define ENTER_COMBO_H
#include <qcombobox.h>
#include <qevent.h>
#include <qkeycode.h>
#include <qlineedit.h>
#undef KeyPress // X headers...
class EnterCombo : public QComboBox {
Q_OBJECT
public:
EnterCombo ( QWidget * parent=0, const char * name=0 )
: QComboBox(TRUE, parent, name)
{
}
EnterCombo ( bool rw, QWidget * parent=0, const char * name=0 )
: QComboBox(rw, parent, name)
{
QKeyEvent ke(QEvent::KeyPress, SHIFT|Key_Home, 0, 0);
keyPressEvent(&ke);
}
virtual void show(){
QComboBox::show();
lineEdit()->selectAll();
}
signals:
void enterPressed();
protected:
virtual void keyPressEvent( QKeyEvent *e );
};
#endif
|