author | drw <drw> | 2005-02-06 23:10:54 (UTC) |
---|---|---|
committer | drw <drw> | 2005-02-06 23:10:54 (UTC) |
commit | 266d71ee80151b3c97671acc95275aa65b682388 (patch) (side-by-side diff) | |
tree | 97e7b79df613e4f7b1896bf1fd02db13dd9f3166 /libopie2/opiepim | |
parent | ab32151cd8e85deb354bab04e25efb1f3f399dee (diff) | |
download | opie-266d71ee80151b3c97671acc95275aa65b682388.zip opie-266d71ee80151b3c97671acc95275aa65b682388.tar.gz opie-266d71ee80151b3c97671acc95275aa65b682388.tar.bz2 |
Additional menu functionality for OPimMainWindow
-rw-r--r-- | libopie2/opiepim/ui/opimmainwindow.cpp | 53 | ||||
-rw-r--r-- | libopie2/opiepim/ui/opimmainwindow.h | 10 |
2 files changed, 48 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 @@ -272,2 +272,26 @@ void OPimMainWindow::reloadCategories() { +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 ) { @@ -299,7 +323,7 @@ void OPimMainWindow::initBars( const QString &itemName ) { - 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 ); @@ -323,8 +347,7 @@ void OPimMainWindow::initBars( const QString &itemName ) { 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 ); } @@ -343,6 +366,6 @@ void OPimMainWindow::initBars( const QString &itemName ) { - 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." ) ); @@ -353,3 +376,3 @@ void OPimMainWindow::initBars( const QString &itemName ) { - 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()) ); diff --git a/libopie2/opiepim/ui/opimmainwindow.h b/libopie2/opiepim/ui/opimmainwindow.h index b446583..9aa0ded 100644 --- a/libopie2/opiepim/ui/opimmainwindow.h +++ b/libopie2/opiepim/ui/opimmainwindow.h @@ -130,2 +130,9 @@ protected: + void setItemNewEnabled( bool enable ); + void setItemEditEnabled( bool enable ); + void setItemDuplicateEnabled( bool enable ); + void setItemDeleteEnabled( bool enable ); + void setItemBeamEnabled( bool enable ); + void setConfigureEnabled( bool enable ); + private slots: @@ -158,2 +165,3 @@ private: QActionGroup *m_viewMenuGroup; // Action group containing default items in View menu + QAction *m_itemNewAction; // Add new item action QAction *m_itemEditAction; // Edit current item action @@ -161,2 +169,4 @@ private: QAction *m_itemDeleteAction; // Delete current item action + QAction *m_itemBeamAction; // Beam current item action + QAction *m_configureAction; // Configure application dialog action |