1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#include <tqwidget.h>
#include <kaboutdata.h>
#include <kapplication.h>
#include <kdebug.h>
#include <klocale.h>
#include <kcmdlineargs.h>
#include "stdaddressbook.h"
#include "distributionlisteditor.h"
#include "distributionlist.h"
using namespace KABC;
static const KCmdLineOptions options[] =
{
{"list <listname>", I18N_NOOP("Show distribution list with name <listname>"), 0},
KCmdLineLastOption
};
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;
}
|