summaryrefslogtreecommitdiffstats
path: root/tdeio/tests/kpropsdlgtest.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:04:16 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:04:16 -0600
commit5159cd2beb2e87806a5b54e9991b7895285c9d3e (patch)
tree9b70e8be47a390f8f4d56ead812ab0c9dad88709 /tdeio/tests/kpropsdlgtest.cpp
parentc17cb900dcf52b8bd6dc300d4f103392900ec2b4 (diff)
downloadtdelibs-5159cd2beb2e87806a5b54e9991b7895285c9d3e.tar.gz
tdelibs-5159cd2beb2e87806a5b54e9991b7895285c9d3e.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'tdeio/tests/kpropsdlgtest.cpp')
-rw-r--r--tdeio/tests/kpropsdlgtest.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/tdeio/tests/kpropsdlgtest.cpp b/tdeio/tests/kpropsdlgtest.cpp
new file mode 100644
index 000000000..811f03923
--- /dev/null
+++ b/tdeio/tests/kpropsdlgtest.cpp
@@ -0,0 +1,35 @@
+#include <kapplication.h>
+#include <klocale.h>
+#include <kaboutdata.h>
+#include <kpropertiesdialog.h>
+#include <kcmdlineargs.h>
+
+
+static KCmdLineOptions options[] =
+{
+ { "+url", "the path or url to the file/dir for which to show properties", 0 },
+ KCmdLineLastOption
+};
+
+int main ( int argc, char** argv )
+{
+ TDEAboutData aboutData("kpropertiesdialogtest", "KIO 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;
+}