-rw-r--r-- | libopie2/opiepim/ui/opimmainwindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libopie2/opiepim/ui/opimmainwindow.cpp b/libopie2/opiepim/ui/opimmainwindow.cpp index 40bbb7b..d46df69 100644 --- a/libopie2/opiepim/ui/opimmainwindow.cpp +++ b/libopie2/opiepim/ui/opimmainwindow.cpp | |||
@@ -340,65 +340,66 @@ void OPimMainWindow::initBars( const QString &itemName ) { | |||
340 | QMenuBar *menubar = new QMenuBar( mbHold ); | 340 | QMenuBar *menubar = new QMenuBar( mbHold ); |
341 | menubar->setMargin( 0 ); | 341 | menubar->setMargin( 0 ); |
342 | 342 | ||
343 | // Create application menu bar | 343 | // Create application menu bar |
344 | QToolBar *toolbar = new QToolBar( this ); | 344 | QToolBar *toolbar = new QToolBar( this ); |
345 | 345 | ||
346 | // Create sub-menus | 346 | // Create sub-menus |
347 | m_itemMenu = new QPopupMenu( this ); | 347 | m_itemMenu = new QPopupMenu( this ); |
348 | m_itemMenu->setCheckable( true ); | 348 | m_itemMenu->setCheckable( true ); |
349 | menubar->insertItem( itemName, m_itemMenu ); | 349 | menubar->insertItem( itemName, m_itemMenu ); |
350 | m_viewMenu = new QPopupMenu( this ); | 350 | m_viewMenu = new QPopupMenu( this ); |
351 | m_viewMenu->setCheckable( true ); | 351 | m_viewMenu->setCheckable( true ); |
352 | menubar->insertItem( tr( "View" ), m_viewMenu ); | 352 | menubar->insertItem( tr( "View" ), m_viewMenu ); |
353 | 353 | ||
354 | m_viewMenuCategories = 0l; | 354 | m_viewMenuCategories = 0l; |
355 | m_viewMenuAppGroup = 0l; | 355 | m_viewMenuAppGroup = 0l; |
356 | 356 | ||
357 | // Item menu | 357 | // Item menu |
358 | m_itemMenuGroup1 = new QActionGroup( this, QString::null, false ); | 358 | m_itemMenuGroup1 = new QActionGroup( this, QString::null, false ); |
359 | 359 | ||
360 | QAction *a = new QAction( tr( "New" ), Resource::loadPixmap( "new" ), | 360 | QAction *a = new QAction( tr( "New" ), Resource::loadPixmap( "new" ), |
361 | QString::null, 0, m_itemMenuGroup1, 0 ); | 361 | QString::null, 0, m_itemMenuGroup1, 0 ); |
362 | connect( a, SIGNAL(activated()), this, SLOT(slotItemNew()) ); | 362 | connect( a, SIGNAL(activated()), this, SLOT(slotItemNew()) ); |
363 | a->setWhatsThis( tr( "Click here to create a new item." ) ); | 363 | a->setWhatsThis( tr( "Click here to create a new item." ) ); |
364 | a->addTo( toolbar ); | 364 | a->addTo( toolbar ); |
365 | 365 | ||
366 | m_itemEditAction = new QAction( tr( "Edit" ), Resource::loadPixmap( "edit" ), | 366 | m_itemEditAction = new QAction( tr( "Edit" ), Resource::loadPixmap( "edit" ), |
367 | QString::null, 0, m_itemMenuGroup1, 0 ); | 367 | QString::null, 0, m_itemMenuGroup1, 0 ); |
368 | connect( m_itemEditAction, SIGNAL(activated()), this, SLOT(slotItemEdit()) ); | 368 | connect( m_itemEditAction, SIGNAL(activated()), this, SLOT(slotItemEdit()) ); |
369 | m_itemEditAction->setWhatsThis( tr( "Click here to edit the selected item." ) ); | 369 | m_itemEditAction->setWhatsThis( tr( "Click here to edit the selected item." ) ); |
370 | m_itemEditAction->addTo( toolbar ); | 370 | m_itemEditAction->addTo( toolbar ); |
371 | 371 | ||
372 | m_itemDuplicateAction = new QAction( tr( "Duplicate" ), QString::null, 0, m_itemMenuGroup1, 0 ); | 372 | m_itemDuplicateAction = new QAction( tr( "Duplicate" ), Resource::loadPixmap( "copy" ), |
373 | QString::null, 0, m_itemMenuGroup1, 0 ); | ||
373 | connect( m_itemDuplicateAction, SIGNAL(activated()), this, SLOT(slotItemDuplicate()) ); | 374 | connect( m_itemDuplicateAction, SIGNAL(activated()), this, SLOT(slotItemDuplicate()) ); |
374 | m_itemDuplicateAction->setWhatsThis( tr( "Click here to duplicate the selected item." ) ); | 375 | m_itemDuplicateAction->setWhatsThis( tr( "Click here to duplicate the selected item." ) ); |
375 | 376 | ||
376 | m_itemDeleteAction = new QAction( tr( "Delete" ), Resource::loadPixmap( "trash" ), | 377 | m_itemDeleteAction = new QAction( tr( "Delete" ), Resource::loadPixmap( "trash" ), |
377 | QString::null, 0, m_itemMenuGroup1, 0 ); | 378 | QString::null, 0, m_itemMenuGroup1, 0 ); |
378 | connect( m_itemDeleteAction, SIGNAL(activated()), this, SLOT(slotItemDelete()) ); | 379 | connect( m_itemDeleteAction, SIGNAL(activated()), this, SLOT(slotItemDelete()) ); |
379 | m_itemDeleteAction->setWhatsThis( tr( "Click here to delete the selected item." ) ); | 380 | m_itemDeleteAction->setWhatsThis( tr( "Click here to delete the selected item." ) ); |
380 | m_itemDeleteAction->addTo( toolbar ); | 381 | m_itemDeleteAction->addTo( toolbar ); |
381 | 382 | ||
382 | if ( Ir::supported() ) { | 383 | if ( Ir::supported() ) { |
383 | a = new QAction( tr( "Beam" ), Resource::loadPixmap( "beam" ), | 384 | a = new QAction( tr( "Beam" ), Resource::loadPixmap( "beam" ), |
384 | QString::null, 0, m_itemMenuGroup1, 0 ); | 385 | QString::null, 0, m_itemMenuGroup1, 0 ); |
385 | connect( a, SIGNAL(activated()), this, SLOT(slotItemBeam()) ); | 386 | connect( a, SIGNAL(activated()), this, SLOT(slotItemBeam()) ); |
386 | a->setWhatsThis( tr( "Click here to transmit the selected item." ) ); | 387 | a->setWhatsThis( tr( "Click here to transmit the selected item." ) ); |
387 | //a->addTo( m_itemMenu ); | 388 | //a->addTo( m_itemMenu ); |
388 | a->addTo( toolbar ); | 389 | a->addTo( toolbar ); |
389 | } | 390 | } |
390 | 391 | ||
391 | m_itemMenuGroup1->addTo( m_itemMenu ); | 392 | m_itemMenuGroup1->addTo( m_itemMenu ); |
392 | 393 | ||
393 | m_itemMenu->insertSeparator(); | 394 | m_itemMenu->insertSeparator(); |
394 | 395 | ||
395 | m_itemMenuGroup2 = new QActionGroup( this, QString::null, false ); | 396 | m_itemMenuGroup2 = new QActionGroup( this, QString::null, false ); |
396 | 397 | ||
397 | a = new QAction( tr( "Find" ), Resource::loadPixmap( "find" ), | 398 | a = new QAction( tr( "Find" ), Resource::loadPixmap( "find" ), |
398 | QString::null, 0, m_itemMenuGroup2, 0 ); | 399 | QString::null, 0, m_itemMenuGroup2, 0 ); |
399 | connect( a, SIGNAL(activated()), this, SLOT(slotItemFind()) ); | 400 | connect( a, SIGNAL(activated()), this, SLOT(slotItemFind()) ); |
400 | a->setWhatsThis( tr( "Click here to search for an item." ) ); | 401 | a->setWhatsThis( tr( "Click here to search for an item." ) ); |
401 | a->addTo( toolbar ); | 402 | a->addTo( toolbar ); |
402 | 403 | ||
403 | a = new QAction( tr( "Configure" ), Resource::loadPixmap( "SettingsIcon" ), | 404 | a = new QAction( tr( "Configure" ), Resource::loadPixmap( "SettingsIcon" ), |
404 | QString::null, 0, m_itemMenuGroup2, 0 ); | 405 | QString::null, 0, m_itemMenuGroup2, 0 ); |