summaryrefslogtreecommitdiff
path: root/libopie2/opiepim/core/opimrecord.h
Unidiff
Diffstat (limited to 'libopie2/opiepim/core/opimrecord.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiepim/core/opimrecord.h19
1 files changed, 16 insertions, 3 deletions
diff --git a/libopie2/opiepim/core/opimrecord.h b/libopie2/opiepim/core/opimrecord.h
index e4d33d6..dbb94ed 100644
--- a/libopie2/opiepim/core/opimrecord.h
+++ b/libopie2/opiepim/core/opimrecord.h
@@ -4,15 +4,22 @@
4#include <qmap.h> 4#include <qmap.h>
5#include <qstring.h> 5#include <qstring.h>
6#include <qstringlist.h> 6#include <qstringlist.h>
7 7
8#include <qpe/palmtoprecord.h> 8#include <qpe/palmtoprecord.h>
9 9
10
11/**
12 * This is the base class for
13 * all PIM Records
14 *
15 */
10class OPimRecord : public Qtopia::Record { 16class OPimRecord : public Qtopia::Record {
11public: 17public:
12 /** 18 /**
19 * c'tor
13 * uid of 0 isEmpty 20 * uid of 0 isEmpty
14 * uid of 1 will be assigned a new one 21 * uid of 1 will be assigned a new one
15 */ 22 */
16 OPimRecord(int uid = 0); 23 OPimRecord(int uid = 0);
17 ~OPimRecord(); 24 ~OPimRecord();
18 25
@@ -41,12 +48,13 @@ public:
41 * to the internal category list 48 * to the internal category list
42 */ 49 */
43 void addCategoryName( const QString& ); 50 void addCategoryName( const QString& );
44 51
45 /** 52 /**
46 * if a Record isEmpty 53 * if a Record isEmpty
54 * it's empty if it's 0
47 */ 55 */
48 virtual bool isEmpty()const; 56 virtual bool isEmpty()const;
49 57
50 /** 58 /**
51 * toRichText summary 59 * toRichText summary
52 */ 60 */
@@ -85,25 +93,30 @@ public:
85 /** 93 /**
86 * the realtions between an app 94 * the realtions between an app
87 */ 95 */
88 QArray<int> relations( const QString& app )const; 96 QArray<int> relations( const QString& app )const;
89 97
90 /** 98 /**
91 * 99 * clear the relations for all relations
100 * with app
92 */ 101 */
93 void clearRelation( const QString& app ); 102 void clearRelation( const QString& app );
94 103
95 /** 104 /**
96 * 105 * add a relation
97 */ 106 */
98 void addRelation( const QString& app, int id ); 107 void addRelation( const QString& app, int id );
99 108
100 /** 109 /**
101 * 110 * set the relations for an app
102 */ 111 */
103 void setRelations( const QString&, QArray<int> ids ); 112 void setRelations( const QString&, QArray<int> ids );
113
114 /**
115 * set the uid
116 */
104 virtual void setUid( int uid ); 117 virtual void setUid( int uid );
105 118
106protected: 119protected:
107 Qtopia::UidGen &uidGen(); 120 Qtopia::UidGen &uidGen();
108 QString crossToString()const; 121 QString crossToString()const;
109 122