summaryrefslogtreecommitdiff
path: root/examples/simple-pim
Unidiff
Diffstat (limited to 'examples/simple-pim') (more/less context) (show whitespace changes)
-rw-r--r--examples/simple-pim/config.in2
-rw-r--r--examples/simple-pim/example.pro2
-rw-r--r--examples/simple-pim/simple.cpp38
3 files changed, 26 insertions, 16 deletions
diff --git a/examples/simple-pim/config.in b/examples/simple-pim/config.in
index aa1a426..9e6adc9 100644
--- a/examples/simple-pim/config.in
+++ b/examples/simple-pim/config.in
@@ -1,4 +1,4 @@
1 config SIMPLE_PIM_EXAMPLE 1 config SIMPLE_PIM_EXAMPLE
2 boolean "Mainwindow with PIM and QCOP usage" 2 boolean "Mainwindow with PIM and QCOP usage"
3 default "y" 3 default "y"
4 depends ( LIBQPE || LIBQPE-X11 ) && EXAMPLES && LIBOPIEPIM2 4 depends ( LIBQPE || LIBQPE-X11 ) && EXAMPLES && LIBOPIE2CORE && LIBOPIE2PIM
diff --git a/examples/simple-pim/example.pro b/examples/simple-pim/example.pro
index ebcdb2b..b8b2c69 100644
--- a/examples/simple-pim/example.pro
+++ b/examples/simple-pim/example.pro
@@ -3,15 +3,15 @@ CONFIG += qt warn_on quick-app
3 3
4TARGET = simple-pim 4TARGET = simple-pim
5 5
6HEADERS = simple.h 6HEADERS = simple.h
7SOURCES = simple.cpp 7SOURCES = simple.cpp
8 8
9 9
10INCLUDEPATH += $(OPIEDIR)/include 10INCLUDEPATH += $(OPIEDIR)/include
11DEPENDPATH += $(OPIEDIR)/include 11DEPENDPATH += $(OPIEDIR)/include
12 12
13 13
14# we now also include opie 14# we now also include opie
15LIBS += -lqpe -lopiepim2 -lopieui2 15LIBS += -lqpe -lopiecore2 -lopiepim2 -lopieui2
16 16
17include ( $(OPIEDIR)/include.pro ) 17include ( $(OPIEDIR)/include.pro )
diff --git a/examples/simple-pim/simple.cpp b/examples/simple-pim/simple.cpp
index 50905bf..efd5070 100644
--- a/examples/simple-pim/simple.cpp
+++ b/examples/simple-pim/simple.cpp
@@ -1,50 +1,60 @@
1/* We use a sane order of include files, from the most special to the least special
2 That helps to reduce the number of implicit includes hence increases the reuse */
3
4/* First the local include files */
5#include "simple.h"
6
7/* Then the Ope include files.
8This includes qpe stuff which will eventually be merged with libopie2 */
9#include <opie2/odebug.h> // for odebug streams
10#include <opie2/oapplicationfactory.h> // a template + macro to save the main method and allow quick launching
11#include <opie2/otabwidget.h>
12#include <opie2/owait.h>
13#include <qpe/qpeapplication.h> // the QPEApplication
14#include <qpe/resource.h>
15#include <qpe/sound.h>
16#include <qpe/qcopenvelope_qws.h>
17#include <qpe/datebookmonth.h>
18#include <qpe/timestring.h>
19using namespace Opie::Core;
20
21/* Now the Qt includes */
1#include <qaction.h> // action 22#include <qaction.h> // action
2#include <qmenubar.h> // menubar 23#include <qmenubar.h> // menubar
3#include <qtoolbar.h> // toolbar 24#include <qtoolbar.h> // toolbar
4#include <qlabel.h> // a label 25#include <qlabel.h> // a label
5#include <qpushbutton.h> // the header file for the QPushButton 26#include <qpushbutton.h> // the header file for the QPushButton
6#include <qlayout.h> 27#include <qlayout.h>
7#include <qtimer.h> // we use it for the singleShot 28#include <qtimer.h> // we use it for the singleShot
8#include <qdatetime.h> // for QDate 29#include <qdatetime.h> // for QDate
9#include <qtextview.h> // a rich text widget 30#include <qtextview.h> // a rich text widget
10#include <qdialog.h> 31#include <qdialog.h>
11#include <qwhatsthis.h> // for whats this 32#include <qwhatsthis.h> // for whats this
12 33
13#include <qpe/qpeapplication.h> // the QPEApplication 34/* Add standard includes here if you need some
14#include <qpe/resource.h> 35 Examples are: stdlib.h, socket.h, etc. */
15#include <qpe/sound.h>
16#include <qpe/qcopenvelope_qws.h>
17#include <qpe/datebookmonth.h>
18#include <qpe/timestring.h>
19
20#include <opie2/oapplicationfactory.h> // a template + macro to save the main method and allow quick launching
21#include <opie2/otabwidget.h>
22#include <opie2/owait.h>
23
24#include "simple.h"
25 36
26/* 37/*
27 * implementation of simple 38 * implementation of simple
28 */ 39 */
29 40
30/* 41/*
31 * The factory is used for quicklaunching 42 * The factory is used for quicklaunching
32 * It needs a constructor ( c'tor ) with at least QWidget, const char* and WFlags as parameter and a static QString appName() matching the TARGET of the .pro 43 * It needs a constructor ( c'tor ) with at least QWidget, const char* and WFlags as parameter and a static QString appName() matching the TARGET of the .pro
33 * 44 *
34 * Depending on the global quick launch setting this will create 45 * Depending on the global quick launch setting this will create
35 * either a main method or one for our component plugin system 46 * either a main method or one for our component plugin system
36 */ 47 */
37 48
38using namespace Opie::Core;
39OPIE_EXPORT_APP( OApplicationFactory<MainWindow> ) 49OPIE_EXPORT_APP( OApplicationFactory<MainWindow> )
40 50
41MainWindow::MainWindow(QWidget *parent, const char* name, WFlags fl ) 51MainWindow::MainWindow(QWidget *parent, const char* name, WFlags fl )
42 : QMainWindow( parent, name, fl ) { 52 : QMainWindow( parent, name, fl ) {
43 setCaption(tr("My MainWindow") ); 53 setCaption(tr("My MainWindow") );
44 54
45 m_desktopChannel = 0; 55 m_desktopChannel = 0;
46 m_loading = 0; 56 m_loading = 0;
47 57
48 initUI(); 58 initUI();
49 59
50 60
@@ -295,25 +305,25 @@ void MainWindow::slotShowRecord( const Opie::OPimRecord& rec) {
295 dia->showMaximized(); 305 dia->showMaximized();
296 QPEApplication::execDialog( dia ); 306 QPEApplication::execDialog( dia );
297 delete dia; 307 delete dia;
298} 308}
299 309
300 310
301void MainWindow::slotDate() { 311void MainWindow::slotDate() {
302 /* 312 /*
303 * called by the action we will show a Popup 313 * called by the action we will show a Popup
304 * at the current mouse position with a DateChooser 314 * at the current mouse position with a DateChooser
305 * to select the day 315 * to select the day
306 */ 316 */
307 qWarning("slot Date"); 317 odebug << "slot Date" << oendl;
308 QPopupMenu *menu = new QPopupMenu(); 318 QPopupMenu *menu = new QPopupMenu();
309 /* A Month to select a date from TRUE for auto close */ 319 /* A Month to select a date from TRUE for auto close */
310 DateBookMonth *month = new DateBookMonth(menu, 0, true ); 320 DateBookMonth *month = new DateBookMonth(menu, 0, true );
311 connect(month, SIGNAL(dateClicked(int,int,int) ), 321 connect(month, SIGNAL(dateClicked(int,int,int) ),
312 this, SLOT(slotLoadForDay(int,int,int) ) ); 322 this, SLOT(slotLoadForDay(int,int,int) ) );
313 323
314 menu->insertItem( month ); 324 menu->insertItem( month );
315 325
316 menu->exec( QCursor::pos() ); 326 menu->exec( QCursor::pos() );
317 327
318 /* 328 /*
319 * we do not need to delete month because 329 * we do not need to delete month because