summaryrefslogtreecommitdiffstats
path: root/kio/kfile/tests/kurlrequestertest.cpp
blob: 9248eec5d45bdc2199b538c9dc86f7fcebbc43b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <kapplication.h>
#include <keditlistbox.h>
#include <kurlrequester.h>
#include <kurlrequesterdlg.h>

int main( int argc, char **argv )
{
    KApplication app( argc, argv, "kurlrequestertest" );
    KURL url = KURLRequesterDlg::getURL( "ftp://ftp.kde.org" );
    qDebug( "Selected url: %s", url.url().latin1());

    KURLRequester *req = new KURLRequester();
    KEditListBox *el = new KEditListBox( TQString::fromLatin1("Test"), req->customEditor() );
    el->show();
    return app.exec();
}