You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
#include <tdeapplication.h>
|
|
#include <tdelocale.h>
|
|
#include <tdeaboutdata.h>
|
|
#include <kpropertiesdialog.h>
|
|
#include <tdecmdlineargs.h>
|
|
|
|
|
|
static TDECmdLineOptions options[] =
|
|
{
|
|
{ "+url", "the path or url to the file/dir for which to show properties", 0 },
|
|
TDECmdLineLastOption
|
|
};
|
|
|
|
int main ( int argc, char** argv )
|
|
{
|
|
TDEAboutData aboutData("kpropertiesdialogtest", "TDEIO Properties Dialog Test", "1.0");
|
|
TDECmdLineArgs::init(argc, argv, &aboutData);
|
|
TDECmdLineArgs::addCmdLineOptions( options );
|
|
|
|
TDEApplication app;
|
|
|
|
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
|
|
if ( args->count() < 1 )
|
|
TDECmdLineArgs::usage();
|
|
KURL u = args->url( 0 );
|
|
|
|
// This is the test for the KPropertiesDialog constructor that is now
|
|
// documented to NOT work. Passing only a URL means a TDEIO::stat will happen,
|
|
// and asking for the dialog to be modal too creates problems.
|
|
// (A non-modal, URL-only dialog is the one kicker uses for app buttons, no problem there)
|
|
KPropertiesDialog* dlg = new KPropertiesDialog( u, 0, 0, true /*modal*/, false /*we do exec ourselves*/ );
|
|
dlg->exec();
|
|
|
|
return 0;
|
|
}
|