Diffstat (limited to 'libopie2/opiepim/ui/opimmainwindow.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libopie2/opiepim/ui/opimmainwindow.cpp | 53 |
1 files changed, 38 insertions, 15 deletions
diff --git a/libopie2/opiepim/ui/opimmainwindow.cpp b/libopie2/opiepim/ui/opimmainwindow.cpp index 053b250..cf05329 100644 --- a/libopie2/opiepim/ui/opimmainwindow.cpp +++ b/libopie2/opiepim/ui/opimmainwindow.cpp @@ -265,16 +265,40 @@ void OPimMainWindow::reloadCategories() { // Add categories to list Categories cats; cats.load( categoryFileName() ); m_catSelect->insertItem( tr( "All" ) ); m_catSelect->insertStringList( cats.labels( m_catGroupName ) ); m_catSelect->insertItem( tr( "Unfiled" ) ); } +void OPimMainWindow::setItemNewEnabled( bool enable ) { + m_itemNewAction->setEnabled( enable ); +} + +void OPimMainWindow::setItemEditEnabled( bool enable ) { + m_itemEditAction->setEnabled( enable ); +} + +void OPimMainWindow::setItemDuplicateEnabled( bool enable ) { + m_itemDuplicateAction->setEnabled( enable ); +} + +void OPimMainWindow::setItemDeleteEnabled( bool enable ) { + m_itemDeleteAction->setEnabled( enable ); +} + +void OPimMainWindow::setItemBeamEnabled( bool enable ) { + m_itemBeamAction->setEnabled( enable ); +} + +void OPimMainWindow::setConfigureEnabled( bool enable ) { + m_configureAction->setEnabled( enable ); +} + void OPimMainWindow::initBars( const QString &itemName ) { QString itemStr = itemName.lower(); setToolBarsMovable( false ); // Create application menu bar QToolBar *mbHold = new QToolBar( this ); mbHold->setHorizontalStretchable( true ); @@ -292,21 +316,21 @@ void OPimMainWindow::initBars( const QString &itemName ) { m_viewMenu->setCheckable( true ); menubar->insertItem( tr( "View" ), m_viewMenu ); m_viewMenuAppGroup = 0l; // Item menu m_itemMenuGroup1 = new QActionGroup( this, QString::null, false ); - QAction *a = new QAction( tr( "New" ), Resource::loadPixmap( "new" ), + m_itemNewAction = new QAction( tr( "New" ), Resource::loadPixmap( "new" ), QString::null, 0, m_itemMenuGroup1, 0 ); - connect( a, SIGNAL(activated()), this, SLOT(slotItemNew()) ); - a->setWhatsThis( tr( "Click here to create a new item." ) ); - a->addTo( toolbar ); + connect( m_itemNewAction, SIGNAL(activated()), this, SLOT(slotItemNew()) ); + m_itemNewAction->setWhatsThis( tr( "Click here to create a new item." ) ); + m_itemNewAction->addTo( toolbar ); m_itemEditAction = new QAction( tr( "Edit" ), Resource::loadPixmap( "edit" ), QString::null, 0, m_itemMenuGroup1, 0 ); connect( m_itemEditAction, SIGNAL(activated()), this, SLOT(slotItemEdit()) ); m_itemEditAction->setWhatsThis( tr( "Click here to edit the selected item." ) ); m_itemEditAction->addTo( toolbar ); m_itemDuplicateAction = new QAction( tr( "Duplicate" ), Resource::loadPixmap( "copy" ), @@ -316,47 +340,46 @@ void OPimMainWindow::initBars( const QString &itemName ) { m_itemDeleteAction = new QAction( tr( "Delete" ), Resource::loadPixmap( "trash" ), QString::null, 0, m_itemMenuGroup1, 0 ); connect( m_itemDeleteAction, SIGNAL(activated()), this, SLOT(slotItemDelete()) ); m_itemDeleteAction->setWhatsThis( tr( "Click here to delete the selected item." ) ); m_itemDeleteAction->addTo( toolbar ); if ( Ir::supported() ) { - a = new QAction( tr( "Beam" ), Resource::loadPixmap( "beam" ), - QString::null, 0, m_itemMenuGroup1, 0 ); - connect( a, SIGNAL(activated()), this, SLOT(slotItemBeam()) ); - a->setWhatsThis( tr( "Click here to transmit the selected item." ) ); - //a->addTo( m_itemMenu ); - a->addTo( toolbar ); + m_itemBeamAction = new QAction( tr( "Beam" ), Resource::loadPixmap( "beam" ), + QString::null, 0, m_itemMenuGroup1, 0 ); + connect( m_itemBeamAction, SIGNAL(activated()), this, SLOT(slotItemBeam()) ); + m_itemBeamAction->setWhatsThis( tr( "Click here to transmit the selected item." ) ); + m_itemBeamAction->addTo( toolbar ); } m_itemMenuGroup1->addTo( m_itemMenu ); m_itemMenu->insertSeparator(); m_itemMenuGroup2 = new QActionGroup( this, QString::null, false ); // a = new QAction( tr( "Find" ), Resource::loadPixmap( "find" ), // QString::null, 0, m_itemMenuGroup2, 0 ); // connect( a, SIGNAL(activated()), this, SLOT(slotItemFind()) ); // a->setWhatsThis( tr( "Click here to search for an item." ) ); // a->addTo( toolbar ); - a = new QAction( tr( "Configure" ), Resource::loadPixmap( "SettingsIcon" ), - QString::null, 0, m_itemMenuGroup2, 0 ); - connect( a, SIGNAL(activated()), this, SLOT(slotConfigure()) ); - a->setWhatsThis( tr( "Click here to set your preferences for this application." ) ); + m_configureAction = new QAction( tr( "Configure" ), Resource::loadPixmap( "SettingsIcon" ), + QString::null, 0, m_itemMenuGroup2, 0 ); + connect( m_configureAction, SIGNAL(activated()), this, SLOT(slotConfigure()) ); + m_configureAction->setWhatsThis( tr( "Click here to set your preferences for this application." ) ); m_itemMenuGroup2->addTo( m_itemMenu ); // View menu m_viewMenuGroup = new QActionGroup( this, QString::null, false ); - a = new QAction( tr( "Filter" ), QString::null, 0, m_viewMenuGroup, 0 ); + QAction *a = new QAction( tr( "Filter" ), QString::null, 0, m_viewMenuGroup, 0 ); connect( a, SIGNAL(activated()), this, SLOT(slotViewFilter()) ); a->setWhatsThis( tr( "Click here to filter the items displayed." ) ); a = new QAction( tr( "Filter Settings" ), QString::null, 0, m_viewMenuGroup, 0 ); connect( a, SIGNAL(activated()), this, SLOT(slotViewFilterSettings()) ); a->setWhatsThis( tr( "Click here to modify the current filter settings." ) ); // Create view toolbar |