-rw-r--r-- | examples/qpepim-addressbook/abexample.desktop | 6 | ||||
-rw-r--r-- | examples/qpepim-addressbook/abexample.png | bin | 0 -> 1262 bytes | |||
-rw-r--r-- | examples/qpepim-addressbook/addressbookdumper.cpp | 65 | ||||
-rw-r--r-- | examples/qpepim-addressbook/addressbookdumper.h | 39 | ||||
-rw-r--r-- | examples/qpepim-addressbook/main.cpp | 47 | ||||
-rw-r--r-- | examples/qpepim-addressbook/qpepim-abexample.control | 9 | ||||
-rw-r--r-- | examples/qpepim-addressbook/qpepim-addressbook.pro | 8 |
7 files changed, 174 insertions, 0 deletions
diff --git a/examples/qpepim-addressbook/abexample.desktop b/examples/qpepim-addressbook/abexample.desktop new file mode 100644 index 0000000..24b44d1 --- a/dev/null +++ b/examples/qpepim-addressbook/abexample.desktop | |||
@@ -0,0 +1,6 @@ | |||
1 | [Desktop Entry] | ||
2 | Comment=Simple QPEPIM Example | ||
3 | Exec=abexample | ||
4 | Icon=abexample | ||
5 | Type=Application | ||
6 | Name=AB QPEPIM | ||
diff --git a/examples/qpepim-addressbook/abexample.png b/examples/qpepim-addressbook/abexample.png new file mode 100644 index 0000000..f63d0bc --- a/dev/null +++ b/examples/qpepim-addressbook/abexample.png | |||
Binary files differ | |||
diff --git a/examples/qpepim-addressbook/addressbookdumper.cpp b/examples/qpepim-addressbook/addressbookdumper.cpp new file mode 100644 index 0000000..c47e05c --- a/dev/null +++ b/examples/qpepim-addressbook/addressbookdumper.cpp | |||
@@ -0,0 +1,65 @@ | |||
1 | /********************************************************************** | ||
2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. | ||
3 | ** | ||
4 | ** This file is part of the Qtopia Environment. | ||
5 | ** | ||
6 | ** This file may be distributed and/or modified under the terms of the | ||
7 | ** GNU General Public License version 2 as published by the Free Software | ||
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
9 | ** packaging of this file. | ||
10 | ** | ||
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
13 | ** | ||
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | ||
15 | ** | ||
16 | ** Contact info@trolltech.com if any conditions of this licensing are | ||
17 | ** not clear to you. | ||
18 | ** | ||
19 | **********************************************************************/ | ||
20 | |||
21 | #include <qpe/contact.h> | ||
22 | #include <qvaluelist.h> | ||
23 | #include "addressbookdumper.h" | ||
24 | |||
25 | AddressBookDumper::AddressBookDumper(QWidget* parent) : QMultiLineEdit(parent) { | ||
26 | // connect(&m_ABAccess, SIGNAL(addressbookUpdated()), this, SLOT(abChanged())); | ||
27 | } | ||
28 | |||
29 | AddressBookDumper::~AddressBookDumper() { | ||
30 | } | ||
31 | |||
32 | void AddressBookDumper::abChanged() { | ||
33 | QString newText; | ||
34 | QValueList<Contact> contacts = m_ABAccess.contacts(); | ||
35 | QValueListConstIterator<Contact> it; | ||
36 | for (it = contacts.begin() ; it != contacts.end(); it++) { | ||
37 | newText.append((*it).firstName() + " " + (*it).lastName() + "\n"); | ||
38 | } | ||
39 | setText(newText); | ||
40 | } | ||
41 | |||
42 | void AddressBookDumper::startBigEdit() { | ||
43 | if (m_ABAccess.startBlockEdit()) | ||
44 | qDebug("*** Block edit successfully started."); | ||
45 | else | ||
46 | qDebug("*** Block edit start failed."); | ||
47 | } | ||
48 | |||
49 | void AddressBookDumper::endBigEdit() { | ||
50 | if (m_ABAccess.endBlockEdit()) | ||
51 | qDebug("*** Block edit successfully ended."); | ||
52 | else | ||
53 | qDebug("*** Block edit end failed."); | ||
54 | } | ||
55 | |||
56 | void AddressBookDumper::addContact() { | ||
57 | Contact foo; | ||
58 | foo.setFirstName("Foo"); | ||
59 | foo.setLastName("Bar"); | ||
60 | foo.setFileAs(); | ||
61 | if (m_ABAccess.addContact(foo)) | ||
62 | qDebug("*** Add succeeded.."); | ||
63 | else | ||
64 | qDebug("*** Add failed.."); | ||
65 | } | ||
diff --git a/examples/qpepim-addressbook/addressbookdumper.h b/examples/qpepim-addressbook/addressbookdumper.h new file mode 100644 index 0000000..cc83d32 --- a/dev/null +++ b/examples/qpepim-addressbook/addressbookdumper.h | |||
@@ -0,0 +1,39 @@ | |||
1 | /********************************************************************** | ||
2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. | ||
3 | ** | ||
4 | ** This file is part of the Qtopia Environment. | ||
5 | ** | ||
6 | ** This file may be distributed and/or modified under the terms of the | ||
7 | ** GNU General Public License version 2 as published by the Free Software | ||
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
9 | ** packaging of this file. | ||
10 | ** | ||
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
13 | ** | ||
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | ||
15 | ** | ||
16 | ** Contact info@trolltech.com if any conditions of this licensing are | ||
17 | ** not clear to you. | ||
18 | ** | ||
19 | **********************************************************************/ | ||
20 | |||
21 | #include <qmultilineedit.h> | ||
22 | #include <qpe/pim/addressbookaccess.h> | ||
23 | |||
24 | class AddressBookDumper : public QMultiLineEdit { | ||
25 | Q_OBJECT | ||
26 | |||
27 | public: | ||
28 | AddressBookDumper(QWidget* parent); | ||
29 | ~AddressBookDumper(); | ||
30 | |||
31 | public slots: | ||
32 | void abChanged(); | ||
33 | void startBigEdit(); | ||
34 | void endBigEdit(); | ||
35 | void addContact(); | ||
36 | |||
37 | private: | ||
38 | AddressBookAccess m_ABAccess; | ||
39 | }; | ||
diff --git a/examples/qpepim-addressbook/main.cpp b/examples/qpepim-addressbook/main.cpp new file mode 100644 index 0000000..590fffe --- a/dev/null +++ b/examples/qpepim-addressbook/main.cpp | |||
@@ -0,0 +1,47 @@ | |||
1 | /********************************************************************** | ||
2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. | ||
3 | ** | ||
4 | ** This file is part of the Qtopia Environment. | ||
5 | ** | ||
6 | ** This file may be distributed and/or modified under the terms of the | ||
7 | ** GNU General Public License version 2 as published by the Free Software | ||
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
9 | ** packaging of this file. | ||
10 | ** | ||
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
13 | ** | ||
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | ||
15 | ** | ||
16 | ** Contact info@trolltech.com if any conditions of this licensing are | ||
17 | ** not clear to you. | ||
18 | ** | ||
19 | **********************************************************************/ | ||
20 | |||
21 | #include <qpe/qpeapplication.h> | ||
22 | #ifdef QWS | ||
23 | #include <qpe/qcopenvelope_qws.h> | ||
24 | #endif | ||
25 | #include <qapplication.h> | ||
26 | #include <qpe/pim/addressbookaccess.h> | ||
27 | #include "addressbookdumper.h" | ||
28 | #include <qvbox.h> | ||
29 | #include <qpushbutton.h> | ||
30 | |||
31 | int main( int argc, char ** argv ) | ||
32 | { | ||
33 | QPEApplication a( argc, argv ); | ||
34 | QVBox* vbox = new QVBox(0L); | ||
35 | QPushButton* clicker = new QPushButton("Refresh", vbox); | ||
36 | QPushButton* startBigEditButton = new QPushButton("Start Big Edit", vbox); | ||
37 | QPushButton* endBigEditButton = new QPushButton("End Big Edit", vbox); | ||
38 | QPushButton* addContactButton = new QPushButton("Add Contact", vbox); | ||
39 | AddressBookDumper* abDumper = new AddressBookDumper(vbox); | ||
40 | QObject::connect(clicker, SIGNAL(clicked()), abDumper, SLOT(abChanged())); | ||
41 | QObject::connect(startBigEditButton, SIGNAL(clicked()), abDumper, SLOT(startBigEdit())); | ||
42 | QObject::connect(endBigEditButton, SIGNAL(clicked()), abDumper, SLOT(endBigEdit())); | ||
43 | QObject::connect(addContactButton, SIGNAL(clicked()), abDumper, SLOT(addContact())); | ||
44 | a.setMainWidget(vbox); | ||
45 | vbox->show(); | ||
46 | return a.exec(); | ||
47 | } | ||
diff --git a/examples/qpepim-addressbook/qpepim-abexample.control b/examples/qpepim-addressbook/qpepim-abexample.control new file mode 100644 index 0000000..5a31c97 --- a/dev/null +++ b/examples/qpepim-addressbook/qpepim-abexample.control | |||
@@ -0,0 +1,9 @@ | |||
1 | Files: bin/abexample apps/Applications/abexample.desktop | ||
2 | Priority: optional | ||
3 | Section: qpe/applications | ||
4 | Maintainer: Warwick Allison <warwick@trolltech.com> | ||
5 | Architecture: arm | ||
6 | Version: $QPE_VERSION-1 | ||
7 | Depends: qpe-pim, qpe-base ($QPE_VERSION) | ||
8 | Description: Example Addressbook reader | ||
9 | Simple example for using the QPEPIM access library. | ||
diff --git a/examples/qpepim-addressbook/qpepim-addressbook.pro b/examples/qpepim-addressbook/qpepim-addressbook.pro new file mode 100644 index 0000000..7e918e0 --- a/dev/null +++ b/examples/qpepim-addressbook/qpepim-addressbook.pro | |||
@@ -0,0 +1,8 @@ | |||
1 | TEMPLATE = app | ||
2 | CONFIG = qt warn_on debug | ||
3 | |||
4 | HEADERS = addressbookdumper.h | ||
5 | SOURCES = main.cpp addressbookdumper.cpp | ||
6 | TARGET = abexample | ||
7 | INCLUDEPATH = $(QPEDIR)/include | ||
8 | LIBS += -lqpepim -lqpe -lqte | ||