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