blob: 90dbb74d00b24dd4dd717274ec1757c62f97e18a (
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( 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();
}
|