first release
[groupsms] / sms / contactpage.h
1 #ifndef CONTACTPAGE_H
2 #define CONTACTPAGE_H
3
4 #include "abstractpage.h"
5
6 class ContactPage : public AbstractPage
7 {
8     Q_OBJECT
9 public:
10     ContactPage(QWidget* parent = 0);
11
12     void updateSize();
13     void update();
14     void initContactWidget();
15     void refreshContactList();
16     void cleanSelectedContactList();
17     void removeSelectedContact();
18     void setContactItemObserver();
19     QVector<ContactWidgetItem*>* getSelectedContacts();
20     QString title();
21
22 Q_SIGNALS:
23     void validRecycle(bool valid);
24
25 public Q_SLOTS:
26     void onValidRecyele(bool valid);
27 };
28
29 #endif // CONTACTPAGE_H