summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/abview.h
Unidiff
Diffstat (limited to 'core/pim/addressbook/abview.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/abview.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/pim/addressbook/abview.h b/core/pim/addressbook/abview.h
index 201b521..2c10cfa 100644
--- a/core/pim/addressbook/abview.h
+++ b/core/pim/addressbook/abview.h
@@ -20,25 +20,26 @@ public:
20 enum Views{ TableView=0, CardView, PersonalView }; 20 enum Views{ TableView=0, CardView, PersonalView };
21 21
22 AbView( QWidget* parent, const QValueList<int>& ordered ); 22 AbView( QWidget* parent, const QValueList<int>& ordered );
23 ~AbView(); 23 ~AbView();
24 24
25 bool save(); 25 bool save();
26 void load(); 26 void load();
27 void reload(); 27 void reload();
28 void clear(); 28 void clear();
29 29
30 void setView( Views view ); 30 void setView( Views view );
31 void showPersonal( bool personal ); 31 void showPersonal( bool personal );
32 void setShowByCategory( Views view, const QString& cat ); 32 void setShowByCategory( const QString& cat );
33 void setShowToView( Views view );
33 void setShowByLetter( char c ); 34 void setShowByLetter( char c );
34 void setListOrder( const QValueList<int>& ordered ); 35 void setListOrder( const QValueList<int>& ordered );
35 36
36 // Add Entry and put to current 37 // Add Entry and put to current
37 void addEntry( const OContact &newContact ); 38 void addEntry( const OContact &newContact );
38 void removeEntry( const int UID ); 39 void removeEntry( const int UID );
39 void replaceEntry( const OContact &contact ); 40 void replaceEntry( const OContact &contact );
40 OContact currentEntry(); 41 OContact currentEntry();
41 42
42 void inSearch() { m_inSearch = true; } 43 void inSearch() { m_inSearch = true; }
43 void offSearch(); 44 void offSearch();
44 45