author | eilers <eilers> | 2002-11-18 09:36:41 (UTC) |
---|---|---|
committer | eilers <eilers> | 2002-11-18 09:36:41 (UTC) |
commit | 4d0773414a0fb59e53f30d4d2363f73304f474dc (patch) (side-by-side diff) | |
tree | e1d972774367a7d24239c8a00a5a3e47d9bd309c /libopie/pim/ocontact.h | |
parent | bbe119475b8cb5c03ffb10e4dd328ee281970608 (diff) | |
download | opie-4d0773414a0fb59e53f30d4d2363f73304f474dc.zip opie-4d0773414a0fb59e53f30d4d2363f73304f474dc.tar.gz opie-4d0773414a0fb59e53f30d4d2363f73304f474dc.tar.bz2 |
Back to main tree.. Waiting for feature freeze
-rw-r--r-- | libopie/pim/ocontact.h | 42 |
1 files changed, 8 insertions, 34 deletions
diff --git a/libopie/pim/ocontact.h b/libopie/pim/ocontact.h index 9643e8b..d97af1c 100644 --- a/libopie/pim/ocontact.h +++ b/libopie/pim/ocontact.h @@ -31,35 +31,22 @@ #if defined(QPC_TEMPLATEDLL) // MOC_SKIP_BEGIN QPC_TEMPLATEEXTERN template class QPC_EXPORT QMap<int, QString>; // MOC_SKIP_END #endif -class ContactPrivate; // Wozu ist das gut und wo ist das decrariert ? (se) - /* Stefan das ist eine forward declaration - * dann machst du in der private section - * ContactPrivate *d; - * - * und wenn du bei Opie1.1 was hinzufuegen moechtest - * packst du es in ContactPrivate damit Opie - * binaer kompatibel bleibt - * -zecke - */ +class ContactPrivate; + class QPC_EXPORT OContact : public OPimRecord { friend class DataSet; public: OContact(); OContact( const QMap<int, QString> &fromMap ); virtual ~OContact(); - /* VCARD stuff should vanish! -zecke */ - static void writeVCard( const QString &filename, const QValueList<OContact> &contacts); - static void writeVCard( const QString &filename, const OContact &c ); - static QValueList<OContact> readVCard( const QString &filename ); - enum journal_action { ACTION_ADD, ACTION_REMOVE, ACTION_REPLACE }; /* * do we need to inline them * if yes do we need to inline them this way? * -zecke @@ -203,29 +190,19 @@ public: QStringList groupList() const; // // custom // const QString &customField( const QString &key ) // { return find( Custom- + key ); } - static QStringList fields(); - static QStringList trfields(); - static QStringList untrfields(); QString toRichText() const; QMap<int, QString> toMap() const; QString field( int key ) const { return find( key ); } - // journaling... - /* do we still need them? Stefan your backend takes care of these -zecke */ - void saveJournal( journal_action action, const QString &key = QString::null ); - void save( QString &buf ) const; - - /* we shouldn't inline this one -zecke */ - void setUid( int i ) -{ OPimRecord::setUid(i); replace( Qtopia::AddressUid , QString::number(i)); } + void setUid( int i ); QString toShortText()const; QString OContact::type()const; QMap<QString,QString> OContact::toExtraMap() const; class QString OContact::recordField(int) const; @@ -234,24 +211,21 @@ public: // the emails should be seperated by a comma void setEmails( const QString &v ); QString emails() const { return find( Qtopia::Emails ); } private: - /* I do not like friends ;) - * besides that I think we do not need them - * anymore -zecke - */ - friend class AbEditor; - friend class AbTable; - friend class AddressBookAccessPrivate; - friend class XMLIO; + // The XML-Backend needs some access to the private functions + friend class OContactAccessBackend_XML; void insert( int key, const QString &value ); void replace( int key, const QString &value ); QString find( int key ) const; + static QStringList fields(); + + void save( QString &buf ) const; QString displayAddress( const QString &street, const QString &city, const QString &state, const QString &zip, const QString &country ) const; |