author | zecke <zecke> | 2004-11-20 19:04:28 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-11-20 19:04:28 (UTC) |
commit | 9f8a51344b8324a6d093b56b75ca22802ea8818e (patch) (unidiff) | |
tree | 94ac144c4ab39ace045af0f12aa4d3306802ec08 | |
parent | 047944e061799d24fa337e8a20fcb7ef6916805b (diff) | |
download | opie-9f8a51344b8324a6d093b56b75ca22802ea8818e.zip opie-9f8a51344b8324a6d093b56b75ca22802ea8818e.tar.gz opie-9f8a51344b8324a6d093b56b75ca22802ea8818e.tar.bz2 |
Fix signature of connect statements to contain Opie::
-rw-r--r-- | examples/simple-pim/simple.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/simple-pim/simple.cpp b/examples/simple-pim/simple.cpp index d3ce2cc..00c5600 100644 --- a/examples/simple-pim/simple.cpp +++ b/examples/simple-pim/simple.cpp | |||
@@ -1,461 +1,461 @@ | |||
1 | /* We use a sane order of include files, from the most special to the least special | 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 */ | 2 | That helps to reduce the number of implicit includes hence increases the reuse */ |
3 | 3 | ||
4 | /* First the local include files */ | 4 | /* First the local include files */ |
5 | #include "simple.h" | 5 | #include "simple.h" |
6 | 6 | ||
7 | /* Then the Ope include files. | 7 | /* Then the Ope include files. |
8 | This includes qpe stuff which will eventually be merged with libopie2 */ | 8 | This includes qpe stuff which will eventually be merged with libopie2 */ |
9 | #include <opie2/odebug.h> // for odebug streams | 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 | 10 | #include <opie2/oapplicationfactory.h> // a template + macro to save the main method and allow quick launching |
11 | #include <opie2/otabwidget.h> | 11 | #include <opie2/otabwidget.h> |
12 | #include <opie2/owait.h> | 12 | #include <opie2/owait.h> |
13 | #include <qpe/qpeapplication.h> // the QPEApplication | 13 | #include <qpe/qpeapplication.h> // the QPEApplication |
14 | #include <qpe/resource.h> | 14 | #include <qpe/resource.h> |
15 | #include <qpe/sound.h> | 15 | #include <qpe/sound.h> |
16 | #include <qpe/qcopenvelope_qws.h> | 16 | #include <qpe/qcopenvelope_qws.h> |
17 | #include <qpe/datebookmonth.h> | 17 | #include <qpe/datebookmonth.h> |
18 | #include <qpe/timestring.h> | 18 | #include <qpe/timestring.h> |
19 | using namespace Opie::Core; | 19 | using namespace Opie::Core; |
20 | 20 | ||
21 | /* Now the Qt includes */ | 21 | /* Now the Qt includes */ |
22 | #include <qaction.h> // action | 22 | #include <qaction.h> // action |
23 | #include <qmenubar.h> // menubar | 23 | #include <qmenubar.h> // menubar |
24 | #include <qtoolbar.h> // toolbar | 24 | #include <qtoolbar.h> // toolbar |
25 | #include <qlabel.h> // a label | 25 | #include <qlabel.h> // a label |
26 | #include <qpushbutton.h> // the header file for the QPushButton | 26 | #include <qpushbutton.h> // the header file for the QPushButton |
27 | #include <qlayout.h> | 27 | #include <qlayout.h> |
28 | #include <qtimer.h> // we use it for the singleShot | 28 | #include <qtimer.h> // we use it for the singleShot |
29 | #include <qdatetime.h> // for QDate | 29 | #include <qdatetime.h> // for QDate |
30 | #include <qtextview.h> // a rich text widget | 30 | #include <qtextview.h> // a rich text widget |
31 | #include <qdialog.h> | 31 | #include <qdialog.h> |
32 | #include <qwhatsthis.h> // for whats this | 32 | #include <qwhatsthis.h> // for whats this |
33 | 33 | ||
34 | /* Add standard includes here if you need some | 34 | /* Add standard includes here if you need some |
35 | Examples are: stdlib.h, socket.h, etc. */ | 35 | Examples are: stdlib.h, socket.h, etc. */ |
36 | 36 | ||
37 | /* | 37 | /* |
38 | * implementation of simple | 38 | * implementation of simple |
39 | */ | 39 | */ |
40 | 40 | ||
41 | /* | 41 | /* |
42 | * The factory is used for quicklaunching | 42 | * The factory is used for quicklaunching |
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 | 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 |
44 | * | 44 | * |
45 | * Depending on the global quick launch setting this will create | 45 | * Depending on the global quick launch setting this will create |
46 | * either a main method or one for our component plugin system | 46 | * either a main method or one for our component plugin system |
47 | */ | 47 | */ |
48 | 48 | ||
49 | OPIE_EXPORT_APP( OApplicationFactory<MainWindow> ) | 49 | OPIE_EXPORT_APP( OApplicationFactory<MainWindow> ) |
50 | 50 | ||
51 | MainWindow::MainWindow(QWidget *parent, const char* name, WFlags fl ) | 51 | MainWindow::MainWindow(QWidget *parent, const char* name, WFlags fl ) |
52 | : QMainWindow( parent, name, fl ) { | 52 | : QMainWindow( parent, name, fl ) { |
53 | setCaption(tr("My MainWindow") ); | 53 | setCaption(tr("My MainWindow") ); |
54 | 54 | ||
55 | m_desktopChannel = 0; | 55 | m_desktopChannel = 0; |
56 | m_loading = 0; | 56 | m_loading = 0; |
57 | 57 | ||
58 | initUI(); | 58 | initUI(); |
59 | 59 | ||
60 | 60 | ||
61 | /* | 61 | /* |
62 | * Tab widget as central | 62 | * Tab widget as central |
63 | */ | 63 | */ |
64 | m_tab = new Opie::Ui::OTabWidget(this); | 64 | m_tab = new Opie::Ui::OTabWidget(this); |
65 | 65 | ||
66 | setCentralWidget( m_tab ); | 66 | setCentralWidget( m_tab ); |
67 | 67 | ||
68 | m_todoView = new PIMListView(m_tab, "Todo view" ); | 68 | m_todoView = new PIMListView(m_tab, "Todo view" ); |
69 | m_tab->addTab( m_todoView,"todo/TodoList", tr("Todos") ); | 69 | m_tab->addTab( m_todoView,"todo/TodoList", tr("Todos") ); |
70 | 70 | ||
71 | m_dateView = new PIMListView(m_tab, "Datebook view" ); | 71 | m_dateView = new PIMListView(m_tab, "Datebook view" ); |
72 | m_tab->addTab( m_dateView, "datebook/DateBook", tr("Events") ); | 72 | m_tab->addTab( m_dateView, "datebook/DateBook", tr("Events") ); |
73 | 73 | ||
74 | /* now connect the actions */ | 74 | /* now connect the actions */ |
75 | /* | 75 | /* |
76 | * we connect the activated to our show | 76 | * we connect the activated to our show |
77 | * and on activation we will show a detailed | 77 | * and on activation we will show a detailed |
78 | * summary of the record | 78 | * summary of the record |
79 | */ | 79 | */ |
80 | connect(m_fire, SIGNAL(activated() ), | 80 | connect(m_fire, SIGNAL(activated() ), |
81 | this, SLOT(slotShow() ) ); | 81 | this, SLOT(slotShow() ) ); |
82 | 82 | ||
83 | /* | 83 | /* |
84 | * We will change the date | 84 | * We will change the date |
85 | */ | 85 | */ |
86 | connect(m_dateAction, SIGNAL(activated() ), | 86 | connect(m_dateAction, SIGNAL(activated() ), |
87 | this, SLOT(slotDate() ) ); | 87 | this, SLOT(slotDate() ) ); |
88 | 88 | ||
89 | /* | 89 | /* |
90 | * connect the show signal of the PIMListView | 90 | * connect the show signal of the PIMListView |
91 | * to a slot to show a dialog | 91 | * to a slot to show a dialog |
92 | */ | 92 | */ |
93 | connect(m_todoView, SIGNAL(showRecord(const OPimRecord&) ), | 93 | connect(m_todoView, SIGNAL(showRecord(const Opie::OPimRecord&) ), |
94 | this, SLOT(slotShowRecord(const OPimRecord&) ) ); | 94 | this, SLOT(slotShowRecord(const Opie::OPimRecord&) ) ); |
95 | connect(m_dateView, SIGNAL(showRecord(const OPimRecord&) ), | 95 | connect(m_dateView, SIGNAL(showRecord(const Opie::OPimRecord&) ), |
96 | this, SLOT(slotShowRecord(const OPimRecord&) ) ); | 96 | this, SLOT(slotShowRecord(const Opie::OPimRecord&) ) ); |
97 | 97 | ||
98 | /* | 98 | /* |
99 | * Now comes the important lines of code for this example | 99 | * Now comes the important lines of code for this example |
100 | * We do not directly call load but delay loading until | 100 | * We do not directly call load but delay loading until |
101 | * all Events are dispatches and handled. | 101 | * all Events are dispatches and handled. |
102 | * SO we will load once our window is mapped to screen | 102 | * SO we will load once our window is mapped to screen |
103 | * to achieve that we use a QTimer::singleShot | 103 | * to achieve that we use a QTimer::singleShot |
104 | * After 10 milli seconds the timer fires and on TimerEvent | 104 | * After 10 milli seconds the timer fires and on TimerEvent |
105 | * out slot slotLoad will be called | 105 | * out slot slotLoad will be called |
106 | * Remember this a Constructor to construct your object and not | 106 | * Remember this a Constructor to construct your object and not |
107 | * to load | 107 | * to load |
108 | */ | 108 | */ |
109 | QTimer::singleShot( 10, this, SLOT(slotLoad() ) ); | 109 | QTimer::singleShot( 10, this, SLOT(slotLoad() ) ); |
110 | } | 110 | } |
111 | 111 | ||
112 | MainWindow::~MainWindow() { | 112 | MainWindow::~MainWindow() { |
113 | // again nothing to delete because Qt takes care | 113 | // again nothing to delete because Qt takes care |
114 | } | 114 | } |
115 | 115 | ||
116 | 116 | ||
117 | void MainWindow::setDocument( const QString& /*str*/ ) { | 117 | void MainWindow::setDocument( const QString& /*str*/ ) { |
118 | } | 118 | } |
119 | 119 | ||
120 | 120 | ||
121 | void MainWindow::initUI() { | 121 | void MainWindow::initUI() { |
122 | 122 | ||
123 | setToolBarsMovable( false ); | 123 | setToolBarsMovable( false ); |
124 | 124 | ||
125 | QToolBar *menuBarHolder = new QToolBar( this ); | 125 | QToolBar *menuBarHolder = new QToolBar( this ); |
126 | 126 | ||
127 | menuBarHolder->setHorizontalStretchable( true ); | 127 | menuBarHolder->setHorizontalStretchable( true ); |
128 | QMenuBar *mb = new QMenuBar( menuBarHolder ); | 128 | QMenuBar *mb = new QMenuBar( menuBarHolder ); |
129 | QToolBar *tb = new QToolBar( this ); | 129 | QToolBar *tb = new QToolBar( this ); |
130 | 130 | ||
131 | QPopupMenu *fileMenu = new QPopupMenu( this ); | 131 | QPopupMenu *fileMenu = new QPopupMenu( this ); |
132 | 132 | ||
133 | 133 | ||
134 | QAction *a = new QAction( tr("Quit"), Resource::loadIconSet("quit_icon"), | 134 | QAction *a = new QAction( tr("Quit"), Resource::loadIconSet("quit_icon"), |
135 | QString::null, 0, this, "quit_action" ); | 135 | QString::null, 0, this, "quit_action" ); |
136 | /* | 136 | /* |
137 | * Connect quit to the QApplication quit slot | 137 | * Connect quit to the QApplication quit slot |
138 | */ | 138 | */ |
139 | connect(a, SIGNAL(activated() ), | 139 | connect(a, SIGNAL(activated() ), |
140 | qApp, SLOT(quit() ) ); | 140 | qApp, SLOT(quit() ) ); |
141 | a->addTo( fileMenu ); | 141 | a->addTo( fileMenu ); |
142 | 142 | ||
143 | a = new QAction(tr("View Current"), | 143 | a = new QAction(tr("View Current"), |
144 | Resource::loadIconSet("zoom"), | 144 | Resource::loadIconSet("zoom"), |
145 | QString::null, 0, this, "view current"); | 145 | QString::null, 0, this, "view current"); |
146 | /* a simple whats this online explanation of out button */ | 146 | /* a simple whats this online explanation of out button */ |
147 | a->setWhatsThis(tr("Views the current record") ); | 147 | a->setWhatsThis(tr("Views the current record") ); |
148 | /* or QWhatsThis::add(widget, "description" ); */ | 148 | /* or QWhatsThis::add(widget, "description" ); */ |
149 | 149 | ||
150 | /* see the power? */ | 150 | /* see the power? */ |
151 | a->addTo( fileMenu ); | 151 | a->addTo( fileMenu ); |
152 | a->addTo( tb ); | 152 | a->addTo( tb ); |
153 | m_fire = a; | 153 | m_fire = a; |
154 | 154 | ||
155 | a = new QAction(tr("Choose Date"), | 155 | a = new QAction(tr("Choose Date"), |
156 | Resource::loadIconSet("day"), | 156 | Resource::loadIconSet("day"), |
157 | QString::null, 0, this, "choose date" ); | 157 | QString::null, 0, this, "choose date" ); |
158 | a->addTo( fileMenu ); | 158 | a->addTo( fileMenu ); |
159 | a->addTo( tb ); | 159 | a->addTo( tb ); |
160 | m_dateAction = a; | 160 | m_dateAction = a; |
161 | 161 | ||
162 | mb->insertItem(tr("File"), fileMenu ); | 162 | mb->insertItem(tr("File"), fileMenu ); |
163 | 163 | ||
164 | } | 164 | } |
165 | 165 | ||
166 | void MainWindow::slotLoad() { | 166 | void MainWindow::slotLoad() { |
167 | /* | 167 | /* |
168 | * There is no real shared access in the PIM API | 168 | * There is no real shared access in the PIM API |
169 | * It wasn't finish cause of health problems of one | 169 | * It wasn't finish cause of health problems of one |
170 | * of the authors so we do something fancy and use QCOP | 170 | * of the authors so we do something fancy and use QCOP |
171 | * the IPC system to get a current copy | 171 | * the IPC system to get a current copy |
172 | */ | 172 | */ |
173 | /* NOTES to QCOP: QCOP operates over channels and use QDataStream | 173 | /* NOTES to QCOP: QCOP operates over channels and use QDataStream |
174 | * to send data. You can check if a channel isRegistered or hook | 174 | * to send data. You can check if a channel isRegistered or hook |
175 | * yourself to that channel. A Channel is QCString and normally | 175 | * yourself to that channel. A Channel is QCString and normally |
176 | * prefix with QPE/ and then the system in example QPE/System, | 176 | * prefix with QPE/ and then the system in example QPE/System, |
177 | * QPE/Desktop a special channel is the application channel | 177 | * QPE/Desktop a special channel is the application channel |
178 | * it QPE/Application/appname this channel gets created on app | 178 | * it QPE/Application/appname this channel gets created on app |
179 | * startup by QPEApplication. QCOP is asynchronous | 179 | * startup by QPEApplication. QCOP is asynchronous |
180 | * | 180 | * |
181 | * To send you'll use QCopEnevelope | 181 | * To send you'll use QCopEnevelope |
182 | * | 182 | * |
183 | */ | 183 | */ |
184 | /* | 184 | /* |
185 | * What we will do is first is get to know if either | 185 | * What we will do is first is get to know if either |
186 | * datebook or todolist are running if so we will kindly | 186 | * datebook or todolist are running if so we will kindly |
187 | * asked to save the data for us. | 187 | * asked to save the data for us. |
188 | * If neither are running we can load directly | 188 | * If neither are running we can load directly |
189 | */ | 189 | */ |
190 | if (!QCopChannel::isRegistered("QPE/Application/todolist") && | 190 | if (!QCopChannel::isRegistered("QPE/Application/todolist") && |
191 | !QCopChannel::isRegistered("QPE/Application/datebook") ) { | 191 | !QCopChannel::isRegistered("QPE/Application/datebook") ) { |
192 | m_db.load(); | 192 | m_db.load(); |
193 | m_tb.load(); | 193 | m_tb.load(); |
194 | return slotLoadForDay( QDate::currentDate() ); | 194 | return slotLoadForDay( QDate::currentDate() ); |
195 | } | 195 | } |
196 | 196 | ||
197 | /* | 197 | /* |
198 | * prepare our answer machine the QCopChannel | 198 | * prepare our answer machine the QCopChannel |
199 | * QPE/Desktop will send "flushDone(QString)" when | 199 | * QPE/Desktop will send "flushDone(QString)" when |
200 | * the flush is done it emits a signal on receive | 200 | * the flush is done it emits a signal on receive |
201 | */ | 201 | */ |
202 | m_desktopChannel = new QCopChannel("QPE/Desktop"); | 202 | m_desktopChannel = new QCopChannel("QPE/Desktop"); |
203 | connect(m_desktopChannel, SIGNAL(received(const QCString&,const QByteArray&) ), | 203 | connect(m_desktopChannel, SIGNAL(received(const QCString&,const QByteArray&) ), |
204 | this, SLOT(slotDesktopReceive(const QCString&,const QByteArray&) ) ); | 204 | this, SLOT(slotDesktopReceive(const QCString&,const QByteArray&) ) ); |
205 | /* the numberof synced channels will be set to zero */ | 205 | /* the numberof synced channels will be set to zero */ |
206 | m_synced = 0; | 206 | m_synced = 0; |
207 | 207 | ||
208 | /* | 208 | /* |
209 | * We use {} around the QCopEnvelope because it sends its | 209 | * We use {} around the QCopEnvelope because it sends its |
210 | * data on destruction of QCopEnvelope with | 210 | * data on destruction of QCopEnvelope with |
211 | */ | 211 | */ |
212 | /* check again if not present increment synced*/ | 212 | /* check again if not present increment synced*/ |
213 | if ( QCopChannel::isRegistered("QPE/Application/todolist") ) { | 213 | if ( QCopChannel::isRegistered("QPE/Application/todolist") ) { |
214 | QCopEnvelope env("QPE/Application/todolist", "flush()" ); | 214 | QCopEnvelope env("QPE/Application/todolist", "flush()" ); |
215 | // env << data; but we do not have any parameters here | 215 | // env << data; but we do not have any parameters here |
216 | }else | 216 | }else |
217 | m_synced++; | 217 | m_synced++; |
218 | 218 | ||
219 | if ( QCopChannel::isRegistered("QPE/Application/datebook") ) { | 219 | if ( QCopChannel::isRegistered("QPE/Application/datebook") ) { |
220 | QCopEnvelope env("QPE/Application/datebook", "flush()" ); | 220 | QCopEnvelope env("QPE/Application/datebook", "flush()" ); |
221 | }else | 221 | }else |
222 | m_synced++; | 222 | m_synced++; |
223 | 223 | ||
224 | /* we will provide a wait scrren */ | 224 | /* we will provide a wait scrren */ |
225 | m_loading = new Opie::Ui::OWait(this, "wait screen" ); | 225 | m_loading = new Opie::Ui::OWait(this, "wait screen" ); |
226 | } | 226 | } |
227 | 227 | ||
228 | void MainWindow::slotDesktopReceive(const QCString& cmd, const QByteArray& data ) { | 228 | void MainWindow::slotDesktopReceive(const QCString& cmd, const QByteArray& data ) { |
229 | /* the bytearray was filled with the QDataStream now | 229 | /* the bytearray was filled with the QDataStream now |
230 | * we open it read only to get the value(s) | 230 | * we open it read only to get the value(s) |
231 | */ | 231 | */ |
232 | QDataStream stream(data, IO_ReadOnly ); | 232 | QDataStream stream(data, IO_ReadOnly ); |
233 | /* | 233 | /* |
234 | * we're only interested in the flushDone | 234 | * we're only interested in the flushDone |
235 | */ | 235 | */ |
236 | if ( cmd == "flushDone(QString)" ) { | 236 | if ( cmd == "flushDone(QString)" ) { |
237 | QString appname; | 237 | QString appname; |
238 | stream >> appname; // get the first argument out of stream | 238 | stream >> appname; // get the first argument out of stream |
239 | if (appname == QString::fromLatin1("datebook") || | 239 | if (appname == QString::fromLatin1("datebook") || |
240 | appname == QString::fromLatin1("todolist") ) | 240 | appname == QString::fromLatin1("todolist") ) |
241 | m_synced++; | 241 | m_synced++; |
242 | } | 242 | } |
243 | 243 | ||
244 | /* | 244 | /* |
245 | * If we synced both we can go ahead | 245 | * If we synced both we can go ahead |
246 | * In future this is not needed anymore when we finally | 246 | * In future this is not needed anymore when we finally |
247 | * implemented X-Ref and other PIM features | 247 | * implemented X-Ref and other PIM features |
248 | */ | 248 | */ |
249 | if (m_synced >= 2 ) { | 249 | if (m_synced >= 2 ) { |
250 | delete m_loading; | 250 | delete m_loading; |
251 | delete m_desktopChannel; | 251 | delete m_desktopChannel; |
252 | /* now we finally can start doing the actual loading */ | 252 | /* now we finally can start doing the actual loading */ |
253 | m_tb.load(); | 253 | m_tb.load(); |
254 | m_db.load(); | 254 | m_db.load(); |
255 | { | 255 | { |
256 | /* tell the applications to reload */ | 256 | /* tell the applications to reload */ |
257 | QCopEnvelope("QPE/Application/todolist", "reload()"); | 257 | QCopEnvelope("QPE/Application/todolist", "reload()"); |
258 | QCopEnvelope("QPE/Application/datebook", "reload()"); | 258 | QCopEnvelope("QPE/Application/datebook", "reload()"); |
259 | } | 259 | } |
260 | slotLoadForDay( QDate::currentDate() ); | 260 | slotLoadForDay( QDate::currentDate() ); |
261 | } | 261 | } |
262 | 262 | ||
263 | } | 263 | } |
264 | 264 | ||
265 | /* overloaded member for shortcoming of libqpe */ | 265 | /* overloaded member for shortcoming of libqpe */ |
266 | void MainWindow::slotLoadForDay(int y, int m, int d) { | 266 | void MainWindow::slotLoadForDay(int y, int m, int d) { |
267 | /* year,month, day */ | 267 | /* year,month, day */ |
268 | slotLoadForDay( QDate(y, m, d ) ); | 268 | slotLoadForDay( QDate(y, m, d ) ); |
269 | } | 269 | } |
270 | 270 | ||
271 | void MainWindow::slotLoadForDay(const QDate& date) { | 271 | void MainWindow::slotLoadForDay(const QDate& date) { |
272 | 272 | ||
273 | 273 | ||
274 | /* all todos for today including the ones without dueDate */ | 274 | /* all todos for today including the ones without dueDate */ |
275 | m_todoView->set( m_tb.effectiveToDos(date, date ) ); | 275 | m_todoView->set( m_tb.effectiveToDos(date, date ) ); |
276 | m_dateView->set( m_db.occurrences( date, date ) ); | 276 | m_dateView->set( m_db.occurrences( date, date ) ); |
277 | } | 277 | } |
278 | 278 | ||
279 | /* we want to show the current record */ | 279 | /* we want to show the current record */ |
280 | void MainWindow::slotShow() { | 280 | void MainWindow::slotShow() { |
281 | /* we only added PIMListViews so we can safely cast */ | 281 | /* we only added PIMListViews so we can safely cast */ |
282 | PIMListView *view = static_cast<PIMListView*>(m_tab->currentWidget() ); | 282 | PIMListView *view = static_cast<PIMListView*>(m_tab->currentWidget() ); |
283 | 283 | ||
284 | /* ask the view to send a signal */ | 284 | /* ask the view to send a signal */ |
285 | view->showCurrentRecord(); | 285 | view->showCurrentRecord(); |
286 | 286 | ||
287 | } | 287 | } |
288 | 288 | ||
289 | /* as answer this slot will be called */ | 289 | /* as answer this slot will be called */ |
290 | void MainWindow::slotShowRecord( const Opie::OPimRecord& rec) { | 290 | void MainWindow::slotShowRecord( const Opie::OPimRecord& rec) { |
291 | /* got a parent but still is a toplevel MODAL dialog */ | 291 | /* got a parent but still is a toplevel MODAL dialog */ |
292 | QDialog* dia = new QDialog(this,"dialog",TRUE ); | 292 | QDialog* dia = new QDialog(this,"dialog",TRUE ); |
293 | QVBoxLayout *box = new QVBoxLayout( dia ); | 293 | QVBoxLayout *box = new QVBoxLayout( dia ); |
294 | dia->setCaption( tr("View Record") ); | 294 | dia->setCaption( tr("View Record") ); |
295 | 295 | ||
296 | 296 | ||
297 | QTextView *view = new QTextView(dia ); | 297 | QTextView *view = new QTextView(dia ); |
298 | view->setText( rec.toRichText() ); | 298 | view->setText( rec.toRichText() ); |
299 | box->addWidget( view ); | 299 | box->addWidget( view ); |
300 | /* | 300 | /* |
301 | * execute via QPEApplication | 301 | * execute via QPEApplication |
302 | * this allows QPEApplication to make a sane decision | 302 | * this allows QPEApplication to make a sane decision |
303 | * on the size | 303 | * on the size |
304 | */ | 304 | */ |
305 | dia->showMaximized(); | 305 | dia->showMaximized(); |
306 | QPEApplication::execDialog( dia ); | 306 | QPEApplication::execDialog( dia ); |
307 | delete dia; | 307 | delete dia; |
308 | } | 308 | } |
309 | 309 | ||
310 | 310 | ||
311 | void MainWindow::slotDate() { | 311 | void MainWindow::slotDate() { |
312 | /* | 312 | /* |
313 | * called by the action we will show a Popup | 313 | * called by the action we will show a Popup |
314 | * at the current mouse position with a DateChooser | 314 | * at the current mouse position with a DateChooser |
315 | * to select the day | 315 | * to select the day |
316 | */ | 316 | */ |
317 | odebug << "slot Date" << oendl; | 317 | odebug << "slot Date" << oendl; |
318 | QPopupMenu *menu = new QPopupMenu(); | 318 | QPopupMenu *menu = new QPopupMenu(); |
319 | /* A Month to select a date from TRUE for auto close */ | 319 | /* A Month to select a date from TRUE for auto close */ |
320 | DateBookMonth *month = new DateBookMonth(menu, 0, true ); | 320 | DateBookMonth *month = new DateBookMonth(menu, 0, true ); |
321 | connect(month, SIGNAL(dateClicked(int,int,int) ), | 321 | connect(month, SIGNAL(dateClicked(int,int,int) ), |
322 | this, SLOT(slotLoadForDay(int,int,int) ) ); | 322 | this, SLOT(slotLoadForDay(int,int,int) ) ); |
323 | 323 | ||
324 | menu->insertItem( month ); | 324 | menu->insertItem( month ); |
325 | 325 | ||
326 | menu->exec( QCursor::pos() ); | 326 | menu->exec( QCursor::pos() ); |
327 | 327 | ||
328 | /* | 328 | /* |
329 | * we do not need to delete month because | 329 | * we do not need to delete month because |
330 | * we delete its parent menu | 330 | * we delete its parent menu |
331 | */ | 331 | */ |
332 | 332 | ||
333 | delete menu; | 333 | delete menu; |
334 | } | 334 | } |
335 | 335 | ||
336 | /* | 336 | /* |
337 | * An anonymous namespace this symbol is only available here | 337 | * An anonymous namespace this symbol is only available here |
338 | * so truely private | 338 | * so truely private |
339 | */ | 339 | */ |
340 | namespace { | 340 | namespace { |
341 | /* not static cause namespace does that what static would do */ | 341 | /* not static cause namespace does that what static would do */ |
342 | const int RTTI = 5050; | 342 | const int RTTI = 5050; |
343 | /* | 343 | /* |
344 | * every ListView got Items. we've special pim items | 344 | * every ListView got Items. we've special pim items |
345 | * holding ownership and the pointer to a pim record | 345 | * holding ownership and the pointer to a pim record |
346 | * it can't hold a pimrecord directly because this | 346 | * it can't hold a pimrecord directly because this |
347 | * would introduce slicing... any break | 347 | * would introduce slicing... any break |
348 | */ | 348 | */ |
349 | /* | 349 | /* |
350 | * A struct is a special class. Everything is public by | 350 | * A struct is a special class. Everything is public by |
351 | * default. | 351 | * default. |
352 | */ | 352 | */ |
353 | struct PIMListViewItem : public QListViewItem { | 353 | struct PIMListViewItem : public QListViewItem { |
354 | /* | 354 | /* |
355 | *currently no hierachies are planed for the example | 355 | *currently no hierachies are planed for the example |
356 | * so only one constructor with a QListView as parent | 356 | * so only one constructor with a QListView as parent |
357 | */ | 357 | */ |
358 | PIMListViewItem( QListView*, Opie::OPimRecord* record ); | 358 | PIMListViewItem( QListView*, Opie::OPimRecord* record ); |
359 | ~PIMListViewItem(); | 359 | ~PIMListViewItem(); |
360 | 360 | ||
361 | /* used by the QListViewItem to easily allow identifiying of different | 361 | /* used by the QListViewItem to easily allow identifiying of different |
362 | * items. Values greater than 1000 should be used */ | 362 | * items. Values greater than 1000 should be used */ |
363 | int rtti()const; | 363 | int rtti()const; |
364 | Opie::OPimRecord* record()const; | 364 | Opie::OPimRecord* record()const; |
365 | 365 | ||
366 | private: | 366 | private: |
367 | Opie::OPimRecord* m_record; | 367 | Opie::OPimRecord* m_record; |
368 | }; | 368 | }; |
369 | 369 | ||
370 | PIMListViewItem::PIMListViewItem( QListView *p, Opie::OPimRecord* rec ) | 370 | PIMListViewItem::PIMListViewItem( QListView *p, Opie::OPimRecord* rec ) |
371 | : QListViewItem(p), m_record( rec ) { | 371 | : QListViewItem(p), m_record( rec ) { |
372 | } | 372 | } |
373 | 373 | ||
374 | PIMListViewItem::~PIMListViewItem() { | 374 | PIMListViewItem::~PIMListViewItem() { |
375 | /* we've the onwership so we need to delete it */ | 375 | /* we've the onwership so we need to delete it */ |
376 | delete m_record; | 376 | delete m_record; |
377 | } | 377 | } |
378 | 378 | ||
379 | Opie::OPimRecord* PIMListViewItem::record()const { | 379 | Opie::OPimRecord* PIMListViewItem::record()const { |
380 | return m_record; | 380 | return m_record; |
381 | } | 381 | } |
382 | 382 | ||
383 | } | 383 | } |
384 | 384 | ||
385 | 385 | ||
386 | PIMListView::PIMListView( QWidget* widget, const char* name, WFlags fl ) | 386 | PIMListView::PIMListView( QWidget* widget, const char* name, WFlags fl ) |
387 | : QListView(widget, name, fl ) | 387 | : QListView(widget, name, fl ) |
388 | { | 388 | { |
389 | addColumn("Summary"); | 389 | addColumn("Summary"); |
390 | } | 390 | } |
391 | 391 | ||
392 | PIMListView::~PIMListView() { | 392 | PIMListView::~PIMListView() { |
393 | 393 | ||
394 | } | 394 | } |
395 | 395 | ||
396 | void PIMListView::set( Opie::OPimTodoAccess::List list ) { | 396 | void PIMListView::set( Opie::OPimTodoAccess::List list ) { |
397 | /* clear first and then add new items */ | 397 | /* clear first and then add new items */ |
398 | clear(); | 398 | clear(); |
399 | 399 | ||
400 | Opie::OPimTodoAccess::List::Iterator it; | 400 | Opie::OPimTodoAccess::List::Iterator it; |
401 | for (it = list.begin(); it != list.end(); ++it ) { | 401 | for (it = list.begin(); it != list.end(); ++it ) { |
402 | /* | 402 | /* |
403 | * make a new item which automatically gets added to the listview | 403 | * make a new item which automatically gets added to the listview |
404 | * and call the copy c'tor to create a new OPimTodo | 404 | * and call the copy c'tor to create a new OPimTodo |
405 | */ | 405 | */ |
406 | PIMListViewItem *i = new PIMListViewItem(this, new Opie::OPimTodo( *it ) ); | 406 | PIMListViewItem *i = new PIMListViewItem(this, new Opie::OPimTodo( *it ) ); |
407 | i->setText(0, (*it).summary() ); | 407 | i->setText(0, (*it).summary() ); |
408 | } | 408 | } |
409 | } | 409 | } |
410 | 410 | ||
411 | void PIMListView::set( const Opie::OPimOccurrence::List& lst ) { | 411 | void PIMListView::set( const Opie::OPimOccurrence::List& lst ) { |
412 | /* clear first and then add items */ | 412 | /* clear first and then add items */ |
413 | clear(); | 413 | clear(); |
414 | 414 | ||
415 | Opie::OPimOccurrence::List::ConstIterator it; | 415 | Opie::OPimOccurrence::List::ConstIterator it; |
416 | for ( it = lst.begin(); it != lst.end(); ++it ) { | 416 | for ( it = lst.begin(); it != lst.end(); ++it ) { |
417 | PIMListViewItem *i = new PIMListViewItem(this, new Opie::OPimEvent( (*it).toEvent() ) ); | 417 | PIMListViewItem *i = new PIMListViewItem(this, new Opie::OPimEvent( (*it).toEvent() ) ); |
418 | i->setText( 0, PIMListView::makeString( (*it) ) ); | 418 | i->setText( 0, PIMListView::makeString( (*it) ) ); |
419 | } | 419 | } |
420 | 420 | ||
421 | } | 421 | } |
422 | 422 | ||
423 | void PIMListView::showCurrentRecord() { | 423 | void PIMListView::showCurrentRecord() { |
424 | /* it could be possible that their is no currentItem */ | 424 | /* it could be possible that their is no currentItem */ |
425 | if (!currentItem() ) | 425 | if (!currentItem() ) |
426 | return; | 426 | return; |
427 | 427 | ||
428 | /* | 428 | /* |
429 | * we only add PIMListViewItems so it is save | 429 | * we only add PIMListViewItems so it is save |
430 | * to do this case. If this would not be the case | 430 | * to do this case. If this would not be the case |
431 | * use rtti() to check in a switch() case | 431 | * use rtti() to check in a switch() case |
432 | */ | 432 | */ |
433 | PIMListViewItem *item = static_cast<PIMListViewItem*>( currentItem() ); | 433 | PIMListViewItem *item = static_cast<PIMListViewItem*>( currentItem() ); |
434 | 434 | ||
435 | /* finally you see how to emit a signal */ | 435 | /* finally you see how to emit a signal */ |
436 | emit showRecord( (*item->record() ) ); | 436 | emit showRecord( (*item->record() ) ); |
437 | } | 437 | } |
438 | 438 | ||
439 | QString PIMListView::makeString( const Opie::OPimOccurrence& _ev ) { | 439 | QString PIMListView::makeString( const Opie::OPimOccurrence& _ev ) { |
440 | QString str; | 440 | QString str; |
441 | str += _ev.summary(); | 441 | str += _ev.summary(); |
442 | 442 | ||
443 | Opie::OPimEvent ev = _ev.toEvent(); | 443 | Opie::OPimEvent ev = _ev.toEvent(); |
444 | if ( !ev.isAllDay() ) { | 444 | if ( !ev.isAllDay() ) { |
445 | #if 0 | 445 | #if 0 |
446 | if ( ev.startDate() != ev.endDate() ) { | 446 | if ( ev.startDate() != ev.endDate() ) { |
447 | str += tr("Start ") + TimeString::timeString( ev.startDateTime().time() ); | 447 | str += tr("Start ") + TimeString::timeString( ev.startDateTime().time() ); |
448 | str += " - " + TimeString::longDateString( ev.startDateTime().date() ); | 448 | str += " - " + TimeString::longDateString( ev.startDateTime().date() ); |
449 | str += tr("End ") + TimeString::timeString( ev.endDateTime().time() ); | 449 | str += tr("End ") + TimeString::timeString( ev.endDateTime().time() ); |
450 | str += " - " + TimeString::longDateString( ev.endDateTime().date() ); | 450 | str += " - " + TimeString::longDateString( ev.endDateTime().date() ); |
451 | }else | 451 | }else |
452 | #endif | 452 | #endif |
453 | { | 453 | { |
454 | str += tr("Time ") + TimeString::timeString( _ev.startTime() ); | 454 | str += tr("Time ") + TimeString::timeString( _ev.startTime() ); |
455 | str += " - " + TimeString::timeString( _ev.endTime() ); | 455 | str += " - " + TimeString::timeString( _ev.endTime() ); |
456 | } | 456 | } |
457 | }else | 457 | }else |
458 | str += tr(" This is an All-Day Event"); | 458 | str += tr(" This is an All-Day Event"); |
459 | 459 | ||
460 | return str; | 460 | return str; |
461 | } | 461 | } |