-rw-r--r-- | libopie2/opiepim/ui/opimmainwindow.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/libopie2/opiepim/ui/opimmainwindow.cpp b/libopie2/opiepim/ui/opimmainwindow.cpp index bdf20a9..f22a302 100644 --- a/libopie2/opiepim/ui/opimmainwindow.cpp +++ b/libopie2/opiepim/ui/opimmainwindow.cpp | |||
@@ -89,312 +89,313 @@ QCopChannel* OPimMainWindow::channel() { | |||
89 | 89 | ||
90 | void OPimMainWindow::doSetDocument( const QString& ) { | 90 | void OPimMainWindow::doSetDocument( const QString& ) { |
91 | 91 | ||
92 | } | 92 | } |
93 | 93 | ||
94 | void OPimMainWindow::appMessage( const QCString& cmd, const QByteArray& array ) { | 94 | void OPimMainWindow::appMessage( const QCString& cmd, const QByteArray& array ) { |
95 | bool needShow = false; | 95 | bool needShow = false; |
96 | /* | 96 | /* |
97 | * create demands to create | 97 | * create demands to create |
98 | * a new record... | 98 | * a new record... |
99 | */ | 99 | */ |
100 | QDataStream stream(array, IO_ReadOnly); | 100 | QDataStream stream(array, IO_ReadOnly); |
101 | if ( cmd == "create()" ) { | 101 | if ( cmd == "create()" ) { |
102 | raise(); | 102 | raise(); |
103 | int uid = create(); | 103 | int uid = create(); |
104 | QCopEnvelope e(m_str, "created(int)" ); | 104 | QCopEnvelope e(m_str, "created(int)" ); |
105 | e << uid; | 105 | e << uid; |
106 | needShow = true; | 106 | needShow = true; |
107 | }else if ( cmd == "remove(int)" ) { | 107 | }else if ( cmd == "remove(int)" ) { |
108 | int uid; | 108 | int uid; |
109 | stream >> uid; | 109 | stream >> uid; |
110 | bool rem = remove( uid ); | 110 | bool rem = remove( uid ); |
111 | QCopEnvelope e(m_str, "removed(bool)" ); | 111 | QCopEnvelope e(m_str, "removed(bool)" ); |
112 | e << rem; | 112 | e << rem; |
113 | needShow = true; | 113 | needShow = true; |
114 | }else if ( cmd == "beam(int)" ) { | 114 | }else if ( cmd == "beam(int)" ) { |
115 | int uid; | 115 | int uid; |
116 | stream >> uid; | 116 | stream >> uid; |
117 | beam( uid); | 117 | beam( uid); |
118 | }else if ( cmd == "show(int)" ) { | 118 | }else if ( cmd == "show(int)" ) { |
119 | raise(); | 119 | raise(); |
120 | int uid; | 120 | int uid; |
121 | stream >> uid; | 121 | stream >> uid; |
122 | show( uid ); | 122 | show( uid ); |
123 | needShow = true; | 123 | needShow = true; |
124 | }else if ( cmd == "edit(int)" ) { | 124 | }else if ( cmd == "edit(int)" ) { |
125 | raise(); | 125 | raise(); |
126 | int uid; | 126 | int uid; |
127 | stream >> uid; | 127 | stream >> uid; |
128 | edit( uid ); | 128 | edit( uid ); |
129 | }else if ( cmd == "add(int,QByteArray)" ) { | 129 | }else if ( cmd == "add(int,QByteArray)" ) { |
130 | int rtti; | 130 | int rtti; |
131 | QByteArray array; | 131 | QByteArray array; |
132 | stream >> rtti; | 132 | stream >> rtti; |
133 | stream >> array; | 133 | stream >> array; |
134 | m_fallBack = record(rtti, array ); | 134 | m_fallBack = record(rtti, array ); |
135 | if (!m_fallBack) return; | 135 | if (!m_fallBack) return; |
136 | add( *m_fallBack ); | 136 | add( *m_fallBack ); |
137 | delete m_fallBack; | 137 | delete m_fallBack; |
138 | }else if ( cmd == "alarm(QDateTime,int)" ) { | 138 | }else if ( cmd == "alarm(QDateTime,int)" ) { |
139 | raise(); | 139 | raise(); |
140 | QDateTime dt; int uid; | 140 | QDateTime dt; int uid; |
141 | stream >> dt; | 141 | stream >> dt; |
142 | stream >> uid; | 142 | stream >> uid; |
143 | QDateTime current = QDateTime::currentDateTime(); | 143 | QDateTime current = QDateTime::currentDateTime(); |
144 | if ( current.time().hour() != dt.time().hour() && current.time().minute() != dt.time().minute() ) | 144 | if ( current.time().hour() != dt.time().hour() && current.time().minute() != dt.time().minute() ) |
145 | return; | 145 | return; |
146 | doAlarm( dt, uid ); | 146 | doAlarm( dt, uid ); |
147 | needShow = true; | 147 | needShow = true; |
148 | } | 148 | } |
149 | 149 | ||
150 | if (needShow ) | 150 | if (needShow ) |
151 | QPEApplication::setKeepRunning(); | 151 | QPEApplication::setKeepRunning(); |
152 | } | 152 | } |
153 | 153 | ||
154 | /* implement the url scripting here */ | 154 | /* implement the url scripting here */ |
155 | void OPimMainWindow::setDocument( const QString& str) { | 155 | void OPimMainWindow::setDocument( const QString& str) { |
156 | doSetDocument( str ); | 156 | doSetDocument( str ); |
157 | } | 157 | } |
158 | 158 | ||
159 | /* | 159 | /* |
160 | * we now try to get the array demarshalled | 160 | * we now try to get the array demarshalled |
161 | * check if the rtti matches this one | 161 | * check if the rtti matches this one |
162 | */ | 162 | */ |
163 | OPimRecord* OPimMainWindow::record( int rtti, const QByteArray& array ) { | 163 | OPimRecord* OPimMainWindow::record( int rtti, const QByteArray& array ) { |
164 | if ( service() != rtti ) | 164 | if ( service() != rtti ) |
165 | return 0l; | 165 | return 0l; |
166 | 166 | ||
167 | OPimRecord* record = OPimResolver::self()->record( rtti ); | 167 | OPimRecord* record = OPimResolver::self()->record( rtti ); |
168 | QDataStream str(array, IO_ReadOnly ); | 168 | QDataStream str(array, IO_ReadOnly ); |
169 | if ( !record || !record->loadFromStream(str) ) { | 169 | if ( !record || !record->loadFromStream(str) ) { |
170 | delete record; | 170 | delete record; |
171 | record = 0l; | 171 | record = 0l; |
172 | } | 172 | } |
173 | 173 | ||
174 | return record; | 174 | return record; |
175 | } | 175 | } |
176 | 176 | ||
177 | /* | 177 | /* |
178 | * get the rtti for the service | 178 | * get the rtti for the service |
179 | */ | 179 | */ |
180 | int OPimMainWindow::service() { | 180 | int OPimMainWindow::service() { |
181 | if ( m_rtti == -1 ) | 181 | if ( m_rtti == -1 ) |
182 | m_rtti = OPimResolver::self()->serviceId( m_service ); | 182 | m_rtti = OPimResolver::self()->serviceId( m_service ); |
183 | 183 | ||
184 | return m_rtti; | 184 | return m_rtti; |
185 | } | 185 | } |
186 | 186 | ||
187 | void OPimMainWindow::doAlarm( const QDateTime&, int ) { | 187 | void OPimMainWindow::doAlarm( const QDateTime&, int ) { |
188 | 188 | ||
189 | } | 189 | } |
190 | 190 | ||
191 | void OPimMainWindow::startAlarm(int count ) { | 191 | void OPimMainWindow::startAlarm(int count ) { |
192 | m_alarmCount = count; | 192 | m_alarmCount = count; |
193 | m_playedCount = 0; | 193 | m_playedCount = 0; |
194 | Sound::soundAlarm(); | 194 | Sound::soundAlarm(); |
195 | m_timerId = startTimer( 5000 ); | 195 | m_timerId = startTimer( 5000 ); |
196 | } | 196 | } |
197 | 197 | ||
198 | void OPimMainWindow::killAlarm() { | 198 | void OPimMainWindow::killAlarm() { |
199 | killTimer( m_timerId ); | 199 | killTimer( m_timerId ); |
200 | } | 200 | } |
201 | 201 | ||
202 | void OPimMainWindow::timerEvent( QTimerEvent* e) { | 202 | void OPimMainWindow::timerEvent( QTimerEvent* e) { |
203 | if ( m_playedCount <m_alarmCount ) { | 203 | if ( m_playedCount <m_alarmCount ) { |
204 | m_playedCount++; | 204 | m_playedCount++; |
205 | Sound::soundAlarm(); | 205 | Sound::soundAlarm(); |
206 | }else { | 206 | }else { |
207 | killTimer( e->timerId() ); | 207 | killTimer( e->timerId() ); |
208 | } | 208 | } |
209 | } | 209 | } |
210 | 210 | ||
211 | QPopupMenu *OPimMainWindow::itemContextMenu() { | 211 | QPopupMenu *OPimMainWindow::itemContextMenu() { |
212 | if ( !m_itemContextMenu ) { | 212 | if ( !m_itemContextMenu ) { |
213 | // Create context menu if hasn't been done before | 213 | // Create context menu if hasn't been done before |
214 | m_itemContextMenu = new QPopupMenu( this ); | 214 | m_itemContextMenu = new QPopupMenu( this ); |
215 | m_itemEditAction->addTo( m_itemContextMenu ); | 215 | m_itemEditAction->addTo( m_itemContextMenu ); |
216 | m_itemDuplicateAction->addTo( m_itemContextMenu ); | 216 | m_itemDuplicateAction->addTo( m_itemContextMenu ); |
217 | m_itemBeamAction->addTo( m_itemContextMenu ); | ||
217 | m_itemDeleteAction->addTo( m_itemContextMenu ); | 218 | m_itemDeleteAction->addTo( m_itemContextMenu ); |
218 | } | 219 | } |
219 | 220 | ||
220 | return m_itemContextMenu; | 221 | return m_itemContextMenu; |
221 | } | 222 | } |
222 | 223 | ||
223 | void OPimMainWindow::insertItemMenuItems( QActionGroup *items ) { | 224 | void OPimMainWindow::insertItemMenuItems( QActionGroup *items ) { |
224 | // Insert menu items into Item menu | 225 | // Insert menu items into Item menu |
225 | if ( items ) { | 226 | if ( items ) { |
226 | // Rebuild Item menu | 227 | // Rebuild Item menu |
227 | m_itemMenu->clear(); | 228 | m_itemMenu->clear(); |
228 | m_itemMenuGroup1->addTo( m_itemMenu ); | 229 | m_itemMenuGroup1->addTo( m_itemMenu ); |
229 | m_itemMenu->insertSeparator(); | 230 | m_itemMenu->insertSeparator(); |
230 | items->addTo( m_itemMenu ); | 231 | items->addTo( m_itemMenu ); |
231 | m_itemMenu->insertSeparator(); | 232 | m_itemMenu->insertSeparator(); |
232 | m_itemMenuGroup2->addTo( m_itemMenu ); | 233 | m_itemMenuGroup2->addTo( m_itemMenu ); |
233 | } | 234 | } |
234 | } | 235 | } |
235 | 236 | ||
236 | void OPimMainWindow::insertViewMenuItems( QActionGroup *items ) { | 237 | void OPimMainWindow::insertViewMenuItems( QActionGroup *items ) { |
237 | // Insert menu items into View menu | 238 | // Insert menu items into View menu |
238 | if ( items ) { | 239 | if ( items ) { |
239 | // Rebuild Item menu | 240 | // Rebuild Item menu |
240 | m_viewMenu->clear(); | 241 | m_viewMenu->clear(); |
241 | m_viewMenuGroup->addTo( m_viewMenu ); | 242 | m_viewMenuGroup->addTo( m_viewMenu ); |
242 | m_viewMenu->insertSeparator(); | 243 | m_viewMenu->insertSeparator(); |
243 | m_viewMenuAppGroup = items; | 244 | m_viewMenuAppGroup = items; |
244 | m_viewMenuAppGroup->addTo( m_viewMenu ); | 245 | m_viewMenuAppGroup->addTo( m_viewMenu ); |
245 | } | 246 | } |
246 | } | 247 | } |
247 | 248 | ||
248 | void OPimMainWindow::setViewCategory( const QString &category ) { | 249 | void OPimMainWindow::setViewCategory( const QString &category ) { |
249 | // Find category in list | 250 | // Find category in list |
250 | for ( int i = 0; i < m_catSelect->count(); i++ ) { | 251 | for ( int i = 0; i < m_catSelect->count(); i++ ) { |
251 | if ( m_catSelect->text( i ) == category ) { | 252 | if ( m_catSelect->text( i ) == category ) { |
252 | m_catSelect->setCurrentItem( i ); | 253 | m_catSelect->setCurrentItem( i ); |
253 | emit categorySelected( category ); | 254 | emit categorySelected( category ); |
254 | return; | 255 | return; |
255 | } | 256 | } |
256 | } | 257 | } |
257 | } | 258 | } |
258 | 259 | ||
259 | void OPimMainWindow::reloadCategories() { | 260 | void OPimMainWindow::reloadCategories() { |
260 | QString selected = m_catSelect->currentText(); | 261 | QString selected = m_catSelect->currentText(); |
261 | 262 | ||
262 | // Remove old categories from list | 263 | // Remove old categories from list |
263 | m_catSelect->clear(); | 264 | m_catSelect->clear(); |
264 | 265 | ||
265 | // Add categories to list | 266 | // Add categories to list |
266 | Categories cats; | 267 | Categories cats; |
267 | cats.load( categoryFileName() ); | 268 | cats.load( categoryFileName() ); |
268 | m_catSelect->insertItem( tr( "All" ) ); | 269 | m_catSelect->insertItem( tr( "All" ) ); |
269 | m_catSelect->insertStringList( cats.labels( m_catGroupName ) ); | 270 | m_catSelect->insertStringList( cats.labels( m_catGroupName ) ); |
270 | m_catSelect->insertItem( tr( "Unfiled" ) ); | 271 | m_catSelect->insertItem( tr( "Unfiled" ) ); |
271 | } | 272 | } |
272 | 273 | ||
273 | void OPimMainWindow::setItemNewEnabled( bool enable ) { | 274 | void OPimMainWindow::setItemNewEnabled( bool enable ) { |
274 | m_itemNewAction->setEnabled( enable ); | 275 | m_itemNewAction->setEnabled( enable ); |
275 | } | 276 | } |
276 | 277 | ||
277 | void OPimMainWindow::setItemEditEnabled( bool enable ) { | 278 | void OPimMainWindow::setItemEditEnabled( bool enable ) { |
278 | m_itemEditAction->setEnabled( enable ); | 279 | m_itemEditAction->setEnabled( enable ); |
279 | } | 280 | } |
280 | 281 | ||
281 | void OPimMainWindow::setItemDuplicateEnabled( bool enable ) { | 282 | void OPimMainWindow::setItemDuplicateEnabled( bool enable ) { |
282 | m_itemDuplicateAction->setEnabled( enable ); | 283 | m_itemDuplicateAction->setEnabled( enable ); |
283 | } | 284 | } |
284 | 285 | ||
285 | void OPimMainWindow::setItemDeleteEnabled( bool enable ) { | 286 | void OPimMainWindow::setItemDeleteEnabled( bool enable ) { |
286 | m_itemDeleteAction->setEnabled( enable ); | 287 | m_itemDeleteAction->setEnabled( enable ); |
287 | } | 288 | } |
288 | 289 | ||
289 | void OPimMainWindow::setItemBeamEnabled( bool enable ) { | 290 | void OPimMainWindow::setItemBeamEnabled( bool enable ) { |
290 | m_itemBeamAction->setEnabled( enable ); | 291 | m_itemBeamAction->setEnabled( enable ); |
291 | } | 292 | } |
292 | 293 | ||
293 | void OPimMainWindow::setConfigureEnabled( bool enable ) { | 294 | void OPimMainWindow::setConfigureEnabled( bool enable ) { |
294 | m_configureAction->setEnabled( enable ); | 295 | m_configureAction->setEnabled( enable ); |
295 | } | 296 | } |
296 | 297 | ||
297 | void OPimMainWindow::setShowCategories( bool show ) { | 298 | void OPimMainWindow::setShowCategories( bool show ) { |
298 | show ? m_catSelect->show() | 299 | show ? m_catSelect->show() |
299 | : m_catSelect->hide(); | 300 | : m_catSelect->hide(); |
300 | } | 301 | } |
301 | 302 | ||
302 | void OPimMainWindow::initBars( const QString &itemName ) { | 303 | void OPimMainWindow::initBars( const QString &itemName ) { |
303 | QString itemStr = itemName.lower(); | 304 | QString itemStr = itemName.lower(); |
304 | 305 | ||
305 | setToolBarsMovable( false ); | 306 | setToolBarsMovable( false ); |
306 | 307 | ||
307 | // Create application menu bar | 308 | // Create application menu bar |
308 | QToolBar *mbHold = new QToolBar( this ); | 309 | QToolBar *mbHold = new QToolBar( this ); |
309 | mbHold->setHorizontalStretchable( true ); | 310 | mbHold->setHorizontalStretchable( true ); |
310 | QMenuBar *menubar = new QMenuBar( mbHold ); | 311 | QMenuBar *menubar = new QMenuBar( mbHold ); |
311 | menubar->setMargin( 0 ); | 312 | menubar->setMargin( 0 ); |
312 | 313 | ||
313 | // Create application menu bar | 314 | // Create application menu bar |
314 | QToolBar *toolbar = new QToolBar( this ); | 315 | QToolBar *toolbar = new QToolBar( this ); |
315 | 316 | ||
316 | // Create sub-menus | 317 | // Create sub-menus |
317 | m_itemMenu = new QPopupMenu( this ); | 318 | m_itemMenu = new QPopupMenu( this ); |
318 | m_itemMenu->setCheckable( true ); | 319 | m_itemMenu->setCheckable( true ); |
319 | menubar->insertItem( itemName, m_itemMenu ); | 320 | menubar->insertItem( itemName, m_itemMenu ); |
320 | m_viewMenu = new QPopupMenu( this ); | 321 | m_viewMenu = new QPopupMenu( this ); |
321 | m_viewMenu->setCheckable( true ); | 322 | m_viewMenu->setCheckable( true ); |
322 | menubar->insertItem( tr( "View" ), m_viewMenu ); | 323 | menubar->insertItem( tr( "View" ), m_viewMenu ); |
323 | 324 | ||
324 | m_viewMenuAppGroup = 0l; | 325 | m_viewMenuAppGroup = 0l; |
325 | 326 | ||
326 | // Item menu | 327 | // Item menu |
327 | m_itemMenuGroup1 = new QActionGroup( this, QString::null, false ); | 328 | m_itemMenuGroup1 = new QActionGroup( this, QString::null, false ); |
328 | 329 | ||
329 | m_itemNewAction = new QAction( tr( "New" ), Resource::loadPixmap( "new" ), | 330 | m_itemNewAction = new QAction( tr( "New" ), Resource::loadPixmap( "new" ), |
330 | QString::null, 0, m_itemMenuGroup1, 0 ); | 331 | QString::null, 0, m_itemMenuGroup1, 0 ); |
331 | connect( m_itemNewAction, SIGNAL(activated()), this, SLOT(slotItemNew()) ); | 332 | connect( m_itemNewAction, SIGNAL(activated()), this, SLOT(slotItemNew()) ); |
332 | m_itemNewAction->setWhatsThis( tr( "Click here to create a new item." ) ); | 333 | m_itemNewAction->setWhatsThis( tr( "Click here to create a new item." ) ); |
333 | m_itemNewAction->addTo( toolbar ); | 334 | m_itemNewAction->addTo( toolbar ); |
334 | 335 | ||
335 | m_itemEditAction = new QAction( tr( "Edit" ), Resource::loadPixmap( "edit" ), | 336 | m_itemEditAction = new QAction( tr( "Edit" ), Resource::loadPixmap( "edit" ), |
336 | QString::null, 0, m_itemMenuGroup1, 0 ); | 337 | QString::null, 0, m_itemMenuGroup1, 0 ); |
337 | connect( m_itemEditAction, SIGNAL(activated()), this, SLOT(slotItemEdit()) ); | 338 | connect( m_itemEditAction, SIGNAL(activated()), this, SLOT(slotItemEdit()) ); |
338 | m_itemEditAction->setWhatsThis( tr( "Click here to edit the selected item." ) ); | 339 | m_itemEditAction->setWhatsThis( tr( "Click here to edit the selected item." ) ); |
339 | m_itemEditAction->addTo( toolbar ); | 340 | m_itemEditAction->addTo( toolbar ); |
340 | 341 | ||
341 | m_itemDuplicateAction = new QAction( tr( "Duplicate" ), Resource::loadPixmap( "copy" ), | 342 | m_itemDuplicateAction = new QAction( tr( "Duplicate" ), Resource::loadPixmap( "copy" ), |
342 | QString::null, 0, m_itemMenuGroup1, 0 ); | 343 | QString::null, 0, m_itemMenuGroup1, 0 ); |
343 | connect( m_itemDuplicateAction, SIGNAL(activated()), this, SLOT(slotItemDuplicate()) ); | 344 | connect( m_itemDuplicateAction, SIGNAL(activated()), this, SLOT(slotItemDuplicate()) ); |
344 | m_itemDuplicateAction->setWhatsThis( tr( "Click here to duplicate the selected item." ) ); | 345 | m_itemDuplicateAction->setWhatsThis( tr( "Click here to duplicate the selected item." ) ); |
345 | 346 | ||
346 | m_itemDeleteAction = new QAction( tr( "Delete" ), Resource::loadPixmap( "trash" ), | ||
347 | QString::null, 0, m_itemMenuGroup1, 0 ); | ||
348 | connect( m_itemDeleteAction, SIGNAL(activated()), this, SLOT(slotItemDelete()) ); | ||
349 | m_itemDeleteAction->setWhatsThis( tr( "Click here to delete the selected item." ) ); | ||
350 | m_itemDeleteAction->addTo( toolbar ); | ||
351 | |||
352 | if ( Ir::supported() ) { | 347 | if ( Ir::supported() ) { |
353 | m_itemBeamAction = new QAction( tr( "Beam" ), Resource::loadPixmap( "beam" ), | 348 | m_itemBeamAction = new QAction( tr( "Beam" ), Resource::loadPixmap( "beam" ), |
354 | QString::null, 0, m_itemMenuGroup1, 0 ); | 349 | QString::null, 0, m_itemMenuGroup1, 0 ); |
355 | connect( m_itemBeamAction, SIGNAL(activated()), this, SLOT(slotItemBeam()) ); | 350 | connect( m_itemBeamAction, SIGNAL(activated()), this, SLOT(slotItemBeam()) ); |
356 | m_itemBeamAction->setWhatsThis( tr( "Click here to transmit the selected item." ) ); | 351 | m_itemBeamAction->setWhatsThis( tr( "Click here to transmit the selected item." ) ); |
357 | m_itemBeamAction->addTo( toolbar ); | 352 | m_itemBeamAction->addTo( toolbar ); |
358 | } | 353 | } |
359 | 354 | ||
355 | m_itemDeleteAction = new QAction( tr( "Delete" ), Resource::loadPixmap( "trash" ), | ||
356 | QString::null, 0, m_itemMenuGroup1, 0 ); | ||
357 | connect( m_itemDeleteAction, SIGNAL(activated()), this, SLOT(slotItemDelete()) ); | ||
358 | m_itemDeleteAction->setWhatsThis( tr( "Click here to delete the selected item." ) ); | ||
359 | m_itemDeleteAction->addTo( toolbar ); | ||
360 | |||
360 | m_itemMenuGroup1->addTo( m_itemMenu ); | 361 | m_itemMenuGroup1->addTo( m_itemMenu ); |
361 | 362 | ||
362 | m_itemMenu->insertSeparator(); | 363 | m_itemMenu->insertSeparator(); |
363 | 364 | ||
364 | m_itemMenuGroup2 = new QActionGroup( this, QString::null, false ); | 365 | m_itemMenuGroup2 = new QActionGroup( this, QString::null, false ); |
365 | 366 | ||
366 | // a = new QAction( tr( "Find" ), Resource::loadPixmap( "find" ), | 367 | // a = new QAction( tr( "Find" ), Resource::loadPixmap( "find" ), |
367 | // QString::null, 0, m_itemMenuGroup2, 0 ); | 368 | // QString::null, 0, m_itemMenuGroup2, 0 ); |
368 | // connect( a, SIGNAL(activated()), this, SLOT(slotItemFind()) ); | 369 | // connect( a, SIGNAL(activated()), this, SLOT(slotItemFind()) ); |
369 | // a->setWhatsThis( tr( "Click here to search for an item." ) ); | 370 | // a->setWhatsThis( tr( "Click here to search for an item." ) ); |
370 | // a->addTo( toolbar ); | 371 | // a->addTo( toolbar ); |
371 | 372 | ||
372 | m_configureAction = new QAction( tr( "Configure" ), Resource::loadPixmap( "SettingsIcon" ), | 373 | m_configureAction = new QAction( tr( "Configure" ), Resource::loadPixmap( "SettingsIcon" ), |
373 | QString::null, 0, m_itemMenuGroup2, 0 ); | 374 | QString::null, 0, m_itemMenuGroup2, 0 ); |
374 | connect( m_configureAction, SIGNAL(activated()), this, SLOT(slotConfigure()) ); | 375 | connect( m_configureAction, SIGNAL(activated()), this, SLOT(slotConfigure()) ); |
375 | m_configureAction->setWhatsThis( tr( "Click here to set your preferences for this application." ) ); | 376 | m_configureAction->setWhatsThis( tr( "Click here to set your preferences for this application." ) ); |
376 | 377 | ||
377 | m_itemMenuGroup2->addTo( m_itemMenu ); | 378 | m_itemMenuGroup2->addTo( m_itemMenu ); |
378 | 379 | ||
379 | // View menu | 380 | // View menu |
380 | m_viewMenuGroup = new QActionGroup( this, QString::null, false ); | 381 | m_viewMenuGroup = new QActionGroup( this, QString::null, false ); |
381 | 382 | ||
382 | QAction *a = new QAction( tr( "Filter" ), QString::null, 0, m_viewMenuGroup, 0 ); | 383 | QAction *a = new QAction( tr( "Filter" ), QString::null, 0, m_viewMenuGroup, 0 ); |
383 | connect( a, SIGNAL(activated()), this, SLOT(slotViewFilter()) ); | 384 | connect( a, SIGNAL(activated()), this, SLOT(slotViewFilter()) ); |
384 | a->setWhatsThis( tr( "Click here to filter the items displayed." ) ); | 385 | a->setWhatsThis( tr( "Click here to filter the items displayed." ) ); |
385 | 386 | ||
386 | a = new QAction( tr( "Filter Settings" ), QString::null, 0, m_viewMenuGroup, 0 ); | 387 | a = new QAction( tr( "Filter Settings" ), QString::null, 0, m_viewMenuGroup, 0 ); |
387 | connect( a, SIGNAL(activated()), this, SLOT(slotViewFilterSettings()) ); | 388 | connect( a, SIGNAL(activated()), this, SLOT(slotViewFilterSettings()) ); |
388 | a->setWhatsThis( tr( "Click here to modify the current filter settings." ) ); | 389 | a->setWhatsThis( tr( "Click here to modify the current filter settings." ) ); |
389 | 390 | ||
390 | // Create view toolbar | 391 | // Create view toolbar |
391 | toolbar = new QToolBar( this ); | 392 | toolbar = new QToolBar( this ); |
392 | m_catSelect = new QComboBox( toolbar ); | 393 | m_catSelect = new QComboBox( toolbar ); |
393 | connect( m_catSelect, SIGNAL(activated(const QString&)), this, SIGNAL(categorySelected(const QString&)) ); | 394 | connect( m_catSelect, SIGNAL(activated(const QString&)), this, SIGNAL(categorySelected(const QString&)) ); |
394 | QWhatsThis::add( m_catSelect, tr( "Click here to filter items by category." ) ); | 395 | QWhatsThis::add( m_catSelect, tr( "Click here to filter items by category." ) ); |
395 | 396 | ||
396 | // Do initial load of categories | 397 | // Do initial load of categories |
397 | reloadCategories(); | 398 | reloadCategories(); |
398 | } | 399 | } |
399 | 400 | ||
400 | } // namespace Opie | 401 | } // namespace Opie |