blob: d708d005dc509b1db13c6db5895afc2caaeeb3cf (
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
|
#ifndef ENTER_COMBO_H
#define ENTER_COMBO_H
#include <tqcombobox.h>
#include <tqevent.h>
#include <tqkeycode.h>
#include <tqlineedit.h>
#undef KeyPress // X headers...
class EnterCombo : public TQComboBox {
Q_OBJECT
TQ_OBJECT
public:
EnterCombo ( TQWidget * parent=0, const char * name=0 )
: TQComboBox(TRUE, parent, name)
{
}
EnterCombo ( bool rw, TQWidget * parent=0, const char * name=0 )
: TQComboBox(rw, parent, name)
{
TQKeyEvent ke(TQEvent::KeyPress, SHIFT|Key_Home, 0, 0);
keyPressEvent(&ke);
}
virtual void show(){
TQComboBox::show();
lineEdit()->selectAll();
}
signals:
void enterPressed();
protected:
virtual void keyPressEvent( TQKeyEvent *e );
};
#endif
|