blob: 5b4e45ddb7194b5676d52a6ae5585a1049c564e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include <tdeapplication.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();
}
|