blob: 177a8b6ec28ffadb82f36d1863a222d68836a36b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include <kapplication.h>
#include <keditlistbox.h>
#include <kcombobox.h>
int main( int argc, char **argv )
{
TDEApplication app( argc, argv, "keditlistboxtest" );
KEditListBox::CustomEditor editor( new KComboBox( true, 0L, "test" ) );
KEditListBox *box = new KEditListBox( TQString::fromLatin1("KEditListBox"),
editor );
box->insertItem( TQString::fromLatin1("Test") );
box->insertItem( TQString::fromLatin1("for") );
box->insertItem( TQString::fromLatin1("this") );
box->insertItem( TQString::fromLatin1("KEditListBox") );
box->insertItem( TQString::fromLatin1("Widget") );
box->show();
return app.exec();
}
|