summaryrefslogtreecommitdiffstats
path: root/tdeabc/tests/testdistlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeabc/tests/testdistlist.cpp')
-rw-r--r--tdeabc/tests/testdistlist.cpp59
1 files changed, 59 insertions, 0 deletions
diff --git a/tdeabc/tests/testdistlist.cpp b/tdeabc/tests/testdistlist.cpp
new file mode 100644
index 000000000..69a309ff9
--- /dev/null
+++ b/tdeabc/tests/testdistlist.cpp
@@ -0,0 +1,59 @@
+#include <tqwidget.h>
+
+#include <tdeaboutdata.h>
+#include <tdeapplication.h>
+#include <kdebug.h>
+#include <tdelocale.h>
+#include <tdecmdlineargs.h>
+
+#include "stdaddressbook.h"
+
+#include "distributionlisteditor.h"
+#include "distributionlist.h"
+
+using namespace KABC;
+
+static const TDECmdLineOptions options[] =
+{
+ {"list <listname>", I18N_NOOP("Show distribution list with name <listname>"), 0},
+ TDECmdLineLastOption
+};
+
+
+int main(int argc,char **argv)
+{
+ TDEAboutData aboutData("testdistlist",I18N_NOOP("Test Distribution Lists"),"0.1");
+ TDECmdLineArgs::init(argc,argv,&aboutData);
+ TDECmdLineArgs::addCmdLineOptions( options );
+
+ TDEApplication app;
+
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
+ if (args->isSet("list")) {
+ TQString name = args->getOption("list");
+
+ DistributionListManager *manager =
+ new DistributionListManager( StdAddressBook::self() );
+ manager->load();
+ DistributionList *list = manager->list( name );
+ if ( !list ) {
+ kdDebug() << "No list with name '" << name << "'" << endl;
+ return 1;
+ } else {
+ kdDebug() << "RESULT: " << list->emails().join(", ") << endl;
+ return 0;
+ }
+ }
+
+ DistributionListEditor *editor =
+ new DistributionListEditor( StdAddressBook::self(), 0 );
+
+ editor->show();
+ app.setMainWidget(editor);
+
+ TQObject::connect( &app, TQT_SIGNAL( lastWindowClosed() ), &app, TQT_SLOT( quit() ) );
+
+ app.exec();
+
+ delete editor;
+}