summaryrefslogtreecommitdiff
authordrw <drw>2005-02-07 20:32:21 (UTC)
committer drw <drw>2005-02-07 20:32:21 (UTC)
commitaeda5d05178f635c05ce4556e3a0b7f9be7d6401 (patch) (side-by-side diff)
treefd7dffb1ce16c02e80396294ac100cf0522c9bfe
parented8328723ff32caee7db4064a0436703623a2de2 (diff)
downloadopie-aeda5d05178f635c05ce4556e3a0b7f9be7d6401.zip
opie-aeda5d05178f635c05ce4556e3a0b7f9be7d6401.tar.gz
opie-aeda5d05178f635c05ce4556e3a0b7f9be7d6401.tar.bz2
Minor addition
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiepim/ui/opimmainwindow.cpp5
-rw-r--r--libopie2/opiepim/ui/opimmainwindow.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/libopie2/opiepim/ui/opimmainwindow.cpp b/libopie2/opiepim/ui/opimmainwindow.cpp
index cf05329..bdf20a9 100644
--- a/libopie2/opiepim/ui/opimmainwindow.cpp
+++ b/libopie2/opiepim/ui/opimmainwindow.cpp
@@ -285,24 +285,29 @@ void OPimMainWindow::setItemDuplicateEnabled( bool 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::setShowCategories( bool show ) {
+ show ? m_catSelect->show()
+ : m_catSelect->hide();
+}
+
void OPimMainWindow::initBars( const QString &itemName ) {
QString itemStr = itemName.lower();
setToolBarsMovable( false );
// Create application menu bar
QToolBar *mbHold = new QToolBar( this );
mbHold->setHorizontalStretchable( true );
QMenuBar *menubar = new QMenuBar( mbHold );
menubar->setMargin( 0 );
// Create application menu bar
diff --git a/libopie2/opiepim/ui/opimmainwindow.h b/libopie2/opiepim/ui/opimmainwindow.h
index 9aa0ded..fa7a730 100644
--- a/libopie2/opiepim/ui/opimmainwindow.h
+++ b/libopie2/opiepim/ui/opimmainwindow.h
@@ -125,24 +125,25 @@ protected:
void insertItemMenuItems( QActionGroup *items );
void insertViewMenuItems( QActionGroup *items );
void setViewCategory( const QString &category );
void reloadCategories();
void setItemNewEnabled( bool enable );
void setItemEditEnabled( bool enable );
void setItemDuplicateEnabled( bool enable );
void setItemDeleteEnabled( bool enable );
void setItemBeamEnabled( bool enable );
void setConfigureEnabled( bool enable );
+ void setShowCategories( bool show );
private slots:
void appMessage( const QCString&, const QByteArray& );
void setDocument( const QString& );
private:
class Private;
Private* d;
int m_rtti;
QCopChannel* m_channel;
QString m_service;