blob: fdc90a7426fd7f8c787a6c43acc64c76cf9da7a7 (
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::tqfromLatin1("KEditListBox"),
editor );
box->insertItem( TQString::tqfromLatin1("Test") );
box->insertItem( TQString::tqfromLatin1("for") );
box->insertItem( TQString::tqfromLatin1("this") );
box->insertItem( TQString::tqfromLatin1("KEditListBox") );
box->insertItem( TQString::tqfromLatin1("Widget") );
box->show();
return app.exec();
}
|