blob: c66ed3ff2f8c3bfe689a41a9f9cb49ec3a2b0135 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <kapplication.h>
#include <kdirselectdialog.h>
#include <kmessagebox.h>
#include <kurl.h>
int main( int argc, char **argv )
{
KApplication app(argc, argv, "kdirselectdialogtest");
KURL u = KDirSelectDialog::selectDirectory( (argc >= 1) ? argv[1] : TQString::null );
if ( u.isValid() )
KMessageBox::information( 0L,
TQString::tqfromLatin1("You selected the url: %1")
.arg( u.prettyURL() ), "Selected URL" );
return 0;
}
|