summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/abtable.h
Side-by-side diff
Diffstat (limited to 'core/pim/addressbook/abtable.h') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/addressbook/abtable.h36
1 files changed, 23 insertions, 13 deletions
diff --git a/core/pim/addressbook/abtable.h b/core/pim/addressbook/abtable.h
index d5ff279..84aef1e 100644
--- a/core/pim/addressbook/abtable.h
+++ b/core/pim/addressbook/abtable.h
@@ -23,5 +23,5 @@
#include <qpe/categories.h>
-#include <qpe/contact.h>
+#include <opie/ocontact.h>
#include <qmap.h>
@@ -30,4 +30,6 @@
#include <qcombobox.h>
+#include <opie/ocontactaccess.h>
+
class AbTableItem : public QTableItem
{
@@ -65,7 +67,7 @@ public:
~AbTable();
// NEW
- void addEntry( const Contact &newContact );
- Contact currentEntry();
- void replaceCurrentEntry( const Contact &newContact );
+ void addEntry( const OContact &newContact );
+ OContact currentEntry();
+ void replaceCurrentEntry( const OContact &newContact );
void init();
@@ -84,13 +86,16 @@ public:
void setChoiceSelection(int index, const QStringList& list);
QStringList choiceSelection(int index) const;
- void setShowCategory( const QString &c );
+ void setShowCategory( const QString &b, const QString &c );
void setShowByLetter( char c );
QString showCategory() const;
QStringList categories();
- void resizeRows( int size );
+
+ void resizeRows();
void show();
void setPaintingEnabled( bool e );
+ QString showBook() const;
+
public slots:
void slotDoFind( const QString &str, bool caseSensitive, bool backwards,
@@ -120,11 +125,10 @@ private:
void fitColumns();
void resort();
- void updateJournal( const Contact &contact, Contact::journal_action action,
+ void updateJournal( const OContact &contact, OContact::journal_action action,
int row = -1 );
- void insertIntoTable( const Contact &contact, int row );
- void internalAddEntries( QList<Contact> &list );
- QString findContactName( const Contact &entry );
- QString findContactContact( const Contact &entry );
- void journalFreeReplace( const Contact &cnt, int row );
+ void insertIntoTable( const OContact &contact, int row );
+ QString findContactName( const OContact &entry );
+ QString findContactContact( const OContact &entry, int row );
+ void journalFreeReplace( const OContact &cnt, int row );
void journalFreeRemove( int row );
void realignTable( int );
@@ -133,5 +137,5 @@ private:
bool asc;
char showChar;
- QMap<AbTableItem*, Contact> contactList;
+ QMap<AbTableItem*, OContact> contactList;
const QValueList<int> *intFields;
int currFindRow;
@@ -140,4 +144,10 @@ private:
bool enablePainting;
Categories mCat;
+
+ QString showBk;
+ bool columnVisible;
+
+ OContactAccess m_contactdb;
+
};
#endif // ABTABLE_H