blob: 0cbbece8a3f7ca2480867c0bea2115974e20650a (
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 )
{
KApplication app( argc, argv, "keditlistboxtest" );
KEditListBox::CustomEditor editor( new KComboBox( true, 0L, "test" ) );
KEditListBox *box = new KEditListBox( QString::fromLatin1("KEditListBox"),
editor );
box->insertItem( QString::fromLatin1("Test") );
box->insertItem( QString::fromLatin1("for") );
box->insertItem( QString::fromLatin1("this") );
box->insertItem( QString::fromLatin1("KEditListBox") );
box->insertItem( QString::fromLatin1("Widget") );
box->show();
return app.exec();
}
|