blob: fa7e8b23448343ee2a7cb5eeeff2acf744c07587 (
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
|
#ifndef QCOMPLETIONEDIT_H
#define QCOMPLETIONEDIT_H
#include <qlineedit.h>
#include <qstringlist.h>
class QListBox;
class QVBox;
class QCompletionEdit : public QLineEdit
{
Q_OBJECT
Q_PROPERTY( bool autoAdd READ autoAdd WRITE setAutoAdd )
Q_PROPERTY( bool caseSensitive READ isCaseSensitive WRITE setCaseSensitive )
public:
QCompletionEdit( QWidget *parent = 0, const char *name = 0 );
bool autoAdd() const;
QStringList completionList() const;
bool eventFilter( QObject *o, QEvent *e );
bool isCaseSensitive() const;
public slots:
void setCompletionList( const QStringList &l );
void setAutoAdd( bool add );
void clear();
void addCompletionEntry( const QString &entry );
void removeCompletionEntry( const QString &entry );
void setCaseSensitive( bool b );
signals:
void chosen( const QString &text );
private slots:
void textDidChange( const QString &text );
private:
void placeListBox();
void updateListBox();
private:
bool aAdd;
QStringList compList;
QListBox *listbox;
QVBox *popup;
bool caseSensitive;
};
#endif
|