author | mickeyl <mickeyl> | 2004-04-05 13:49:07 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-05 13:49:07 (UTC) |
commit | f44b1d4abe82cfb74db68bffcaf240f6f6134708 (patch) (unidiff) | |
tree | c150abb3cbc842fd930d3ab7543a0b34ec3145ad /examples/simple-pim | |
parent | 997a521a3ee84f614e2781a663911096ffb4a91a (diff) | |
download | opie-f44b1d4abe82cfb74db68bffcaf240f6f6134708.zip opie-f44b1d4abe82cfb74db68bffcaf240f6f6134708.tar.gz opie-f44b1d4abe82cfb74db68bffcaf240f6f6134708.tar.bz2 |
use opie debugging
-rw-r--r-- | examples/simple-pim/config.in | 2 | ||||
-rw-r--r-- | examples/simple-pim/example.pro | 2 | ||||
-rw-r--r-- | examples/simple-pim/simple.cpp | 38 |
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 | |||
@@ -12,6 +12,6 @@ DEPENDPATH += $(OPIEDIR)/include | |||
12 | 12 | ||
13 | 13 | ||
14 | # we now also include opie | 14 | # we now also include opie |
15 | LIBS += -lqpe -lopiepim2 -lopieui2 | 15 | LIBS += -lqpe -lopiecore2 -lopiepim2 -lopieui2 |
16 | 16 | ||
17 | include ( $(OPIEDIR)/include.pro ) | 17 | include ( $(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,3 +1,24 @@ | |||
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. | ||
8 | This 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> | ||
19 | using 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 |
@@ -10,18 +31,8 @@ | |||
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 |
@@ -35,7 +46,6 @@ | |||
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 | ||
38 | using namespace Opie::Core; | ||
39 | OPIE_EXPORT_APP( OApplicationFactory<MainWindow> ) | 49 | OPIE_EXPORT_APP( OApplicationFactory<MainWindow> ) |
40 | 50 | ||
41 | MainWindow::MainWindow(QWidget *parent, const char* name, WFlags fl ) | 51 | MainWindow::MainWindow(QWidget *parent, const char* name, WFlags fl ) |
@@ -304,7 +314,7 @@ void MainWindow::slotDate() { | |||
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 ); |