summaryrefslogtreecommitdiffstats
path: root/kdecore/tests/kcmdlineargstest.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch)
tree5ac38a06f3dde268dc7927dc155896926aaf7012 /kdecore/tests/kcmdlineargstest.cpp
downloadtdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz
tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/tests/kcmdlineargstest.cpp')
-rw-r--r--kdecore/tests/kcmdlineargstest.cpp91
1 files changed, 91 insertions, 0 deletions
diff --git a/kdecore/tests/kcmdlineargstest.cpp b/kdecore/tests/kcmdlineargstest.cpp
new file mode 100644
index 000000000..2d6c7ecd2
--- /dev/null
+++ b/kdecore/tests/kcmdlineargstest.cpp
@@ -0,0 +1,91 @@
+#include <kcmdlineargs.h>
+#include <klocale.h>
+#include <kapplication.h>
+
+#include <stdio.h>
+
+// we use our own macro to not bother translators
+// but still demonstrate the use. You would use I18N_NOOP
+#define I18N_NOP(x) x
+
+static const char version[] = "v0.0.2 1999 (c) Waldo Bastian";
+static const char description[] = I18N_NOP("This is a test program.");
+
+static KCmdLineOptions options[] =
+{
+ { "test", I18N_NOP("do a short test only, note that\n"
+ "this is rather long comment"), 0 },
+ { "baud <baudrate>", I18N_NOP("set baudrate"), "9600" },
+ { "+file(s)", I18N_NOP("Files to load"), 0 },
+ KCmdLineLastOption
+};
+
+#if 1
+int
+main(int argc, char *argv[])
+{
+ KLocale::setMainCatalogue("kdelibs");
+ KCmdLineArgs::init( argc, argv, "testapp", description, version);
+
+ KCmdLineArgs::addCmdLineOptions( options ); // Add my own options.
+
+ // MyWidget::addCmdLineOptions();
+
+ KApplication k( false, false /*true, true*/ );
+
+ // Get application specific arguments
+ KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ // Check if an option is set
+ if (args->isSet("test"))
+ {
+ // Do stuff
+ printf("Option 'test' is set.\n");
+ }
+
+ if (args->isSet("baud"))
+ {
+ // Do stuff
+ printf("Option 'baud' is set.\n");
+ }
+
+ // Read the value of an option.
+ QCString baudrate = args->getOption("baud"); // 9600 is the default value.
+
+ printf("Baudrate = %s\n", baudrate.data());
+
+ printf("Full list of baudrates:\n");
+ QCStringList result = args->getOptionList("baud");
+ for(QCStringList::ConstIterator it=result.begin();
+ it != result.end();
+ ++it)
+ {
+ printf("Baudrate = %s\n", (*it).data());
+ }
+ printf("End of list\n");
+
+ for(int i = 0; i < args->count(); i++)
+ {
+ printf("%d: %s\n", i, args->arg(i));
+ printf("%d: %s\n", i, args->url(i).url().ascii());
+ }
+
+ args->clear(); // Free up memory.
+
+
+// k.exec();
+ return 0;
+}
+#else
+int
+main(int argc, char *argv[])
+{
+ KCmdLineArgs::init( argc, argv, "testapp", description, version);
+
+ KApplication k( true, true );
+
+ k.exec();
+ return 0;
+}
+#endif
+
+