summaryrefslogtreecommitdiff
path: root/libopie2/opiepim/ui/opimmainwindow.cpp
Unidiff
Diffstat (limited to 'libopie2/opiepim/ui/opimmainwindow.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiepim/ui/opimmainwindow.cpp24
1 files changed, 6 insertions, 18 deletions
diff --git a/libopie2/opiepim/ui/opimmainwindow.cpp b/libopie2/opiepim/ui/opimmainwindow.cpp
index a72d174..053b250 100644
--- a/libopie2/opiepim/ui/opimmainwindow.cpp
+++ b/libopie2/opiepim/ui/opimmainwindow.cpp
@@ -51,12 +51,12 @@
51#include <qpopupmenu.h> 51#include <qpopupmenu.h>
52#include <qtoolbar.h> 52#include <qtoolbar.h>
53#include <qwhatsthis.h>
53 54
54namespace Opie { 55namespace Opie {
55OPimMainWindow::OPimMainWindow( const QString &serviceName, 56OPimMainWindow::OPimMainWindow( const QString &serviceName, const QString &catName,
56 const QString &appName, const QString &catName,
57 const QString &itemName, const QString &configName, 57 const QString &itemName, const QString &configName,
58 QWidget *parent, const char* name, WFlags f ) 58 QWidget *parent, const char* name, WFlags f )
59 : QMainWindow( parent, name, f ), m_rtti(-1), m_service( serviceName ), m_fallBack( 0l ), 59 : QMainWindow( parent, name, f ), m_rtti(-1), m_service( serviceName ), m_fallBack( 0l ),
60 m_appName( appName ), m_catGroupName( catName ), m_config( configName ), m_itemContextMenu( 0l ) 60 m_catGroupName( catName ), m_config( configName ), m_itemContextMenu( 0l )
61{ 61{
62 62
@@ -77,6 +77,4 @@ OPimMainWindow::OPimMainWindow( const QString &serviceName,
77 this, SLOT(reload() ) ); 77 this, SLOT(reload() ) );
78 78
79 // Initialize user interface items
80 setCaption( m_appName );
81 initBars( itemName ); 79 initBars( itemName );
82} 80}
@@ -248,15 +246,4 @@ void OPimMainWindow::insertViewMenuItems( QActionGroup *items ) {
248} 246}
249 247
250void OPimMainWindow::slotViewCategory( const QString &category ) {
251 // Set application caption
252 QString caption = m_appName;
253 if ( category != tr( "All" ) )
254 caption.append( QString( " - %1" ).arg( category ) );
255 setCaption( caption );
256
257 // Notify application
258 emit categorySelected( category );
259}
260
261void OPimMainWindow::setViewCategory( const QString &category ) { 248void OPimMainWindow::setViewCategory( const QString &category ) {
262 // Find category in list 249 // Find category in list
@@ -264,5 +251,5 @@ void OPimMainWindow::setViewCategory( const QString &category ) {
264 if ( m_catSelect->text( i ) == category ) { 251 if ( m_catSelect->text( i ) == category ) {
265 m_catSelect->setCurrentItem( i ); 252 m_catSelect->setCurrentItem( i );
266 slotViewCategory( category ); 253 emit categorySelected( category );
267 return; 254 return;
268 } 255 }
@@ -376,5 +363,6 @@ void OPimMainWindow::initBars( const QString &itemName ) {
376 toolbar = new QToolBar( this ); 363 toolbar = new QToolBar( this );
377 m_catSelect = new QComboBox( toolbar ); 364 m_catSelect = new QComboBox( toolbar );
378 connect( m_catSelect, SIGNAL(activated(const QString&)), this, SLOT(slotViewCategory(const QString&)) ); 365 connect( m_catSelect, SIGNAL(activated(const QString&)), this, SIGNAL(categorySelected(const QString&)) );
366 QWhatsThis::add( m_catSelect, tr( "Click here to filter items by category." ) );
379 367
380 // Do initial load of categories 368 // Do initial load of categories