-rw-r--r-- | core/pim/addressbook/abview.cpp | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/core/pim/addressbook/abview.cpp b/core/pim/addressbook/abview.cpp index 7226e82..161b163 100644 --- a/core/pim/addressbook/abview.cpp +++ b/core/pim/addressbook/abview.cpp @@ -56,9 +56,9 @@ AbView::AbView ( QWidget* parent, const QValueList<int>& ordered ): // Create Layout and put WidgetStack into it. QVBoxLayout *vb = new QVBoxLayout( this ); m_viewStack = new QWidgetStack( this ); vb->addWidget( m_viewStack ); - + // Creat TableView QVBox* tableBox = new QVBox( m_viewStack ); m_abTable = new AbTable( m_orderedFields, tableBox, "table" ); m_abTable->setCurrentCell( 0, 0 ); @@ -72,10 +72,10 @@ AbView::AbView ( QWidget* parent, const QValueList<int>& ordered ): m_ablabel = new AbLabel( cardBox, "CardView"); m_viewStack -> addWidget( cardBox , CardView ); // Connect views to me - connect ( m_abTable, SIGNAL( signalSwitch( void ) ), - this, SLOT( slotSwitch( void ) ) ); + connect ( m_abTable, SIGNAL( signalSwitch( void ) ), + this, SLOT( slotSwitch( void ) ) ); connect ( m_ablabel, SIGNAL( signalOkPressed( void ) ), this, SLOT( slotSwitch( void ) ) ); load(); @@ -104,9 +104,9 @@ void AbView::addEntry( const OContact &newContact ) { qWarning("abview:AddContact"); m_contactdb->add ( newContact ); load(); - + } void AbView::removeEntry( const int UID ) { qWarning("abview:RemoveContact"); @@ -150,9 +150,9 @@ void AbView::load() qWarning("abView:Load data"); // Letter Search is stopped at this place emit signalClearLetterPicker(); - + if ( m_inPersonal ) m_list = m_contactdb->allRecords(); else{ m_list = m_contactdb->sorted( true, 0, 0, 0 ); @@ -160,10 +160,10 @@ void AbView::load() } qWarning ("Number of contacts: %d", m_list.count()); - updateView( true ); - + updateView( true ); + } void AbView::reload() { @@ -195,9 +195,9 @@ void AbView::setShowByCategory( const QString& cat ) qWarning ("Categories: Selected %s.. Number: %d", cat.latin1(), m_curr_category); m_curr_category = intCat; emit signalClearLetterPicker(); - + load(); } } @@ -239,9 +239,9 @@ void AbView::setListOrder( const QValueList<int>& ordered ) updateView(); } -QString AbView::showCategory() const +QString AbView::showCategory() const { return mCat.label( "Contacts", m_curr_category ); } @@ -258,15 +258,15 @@ void AbView::showPersonal( bool personal ) // The current default backend will be stored // to avoid unneeded load/stores. m_storedDB = m_contactdb; - OContactAccessBackend* vcard_backend = new OContactAccessBackend_VCard( QString::null, + OContactAccessBackend* vcard_backend = new OContactAccessBackend_VCard( QString::null, addressbookPersonalVCardName() ); m_contactdb = new OContactAccess ( "addressbook", QString::null , vcard_backend, true ); m_inPersonal = true; m_curr_View = CardView; - + }else{ if ( !m_inPersonal ) return; @@ -279,23 +279,23 @@ void AbView::showPersonal( bool personal ) m_storedDB = 0l; m_curr_View = TableView; m_inPersonal = false; - + } load(); } -QStringList AbView::categories() +QStringList AbView::categories() { mCat.load( categoryFileName() ); QStringList categoryList = mCat.labels( "Contacts" ); return categoryList; } - -// BEGIN: Slots -void AbView::slotDoFind( const QString &str, bool caseSensitive, bool useRegExp, - bool , QString cat = QString::null ) + +// BEGIN: Slots +void AbView::slotDoFind( const QString &str, bool caseSensitive, bool useRegExp, + bool , QString cat ) { qWarning( "void AbView::slotDoFind" ); // We reloading the data: Deselect Letterpicker @@ -314,9 +314,9 @@ void AbView::slotDoFind( const QString &str, bool caseSensitive, bool useRegExp, QRegExp r( str ); r.setCaseSensitive( caseSensitive ); r.setWildcard( !useRegExp ); - + // Get all matching entries out of the database m_list = m_contactdb->matchRegexp( r ); qWarning( "found: %d", m_list.count() ); @@ -328,9 +328,9 @@ void AbView::slotDoFind( const QString &str, bool caseSensitive, bool useRegExp, // Now remove all contacts with wrong category (if any selected) // This algorithm is a litte bit ineffective, but // we will not have a lot of matching entries.. clearForCategory(); - + // Now show all found entries updateView( true ); } @@ -355,9 +355,9 @@ void AbView::slotSwitch(){ m_curr_View = TableView; break; } updateView(); - + } // END: Slots @@ -368,9 +368,9 @@ void AbView::clearForCategory() OContactAccess::List allList = m_list; if ( m_curr_category != -1 ){ for ( it = allList.begin(); it != allList.end(); ++it ){ - if ( !contactCompare( *it, m_curr_category ) ){ + if ( !contactCompare( *it, m_curr_category ) ){ qWarning("Removing %d", (*it).uid()); m_list.remove( (*it).uid() ); } } @@ -434,9 +434,9 @@ void AbView::updateView( bool newdata ) } }else m_curr_Contact = 0; } - + // Feed all views with new lists if ( newdata ) updateListinViews(); @@ -459,9 +459,9 @@ void AbView::updateView( bool newdata ) m_ablabel -> selectContact( m_curr_Contact ); m_ablabel -> setFocus(); break; } - + // Raise the current View m_viewStack -> raiseWidget( m_curr_View ); } |