62ff5b31b944f85807888cb68d70277c36904d62
[kitchenalert] / src / stickydialog.h
1 #ifndef STICKYDIALOG_H
2 #define STICKYDIALOG_H
3
4 #include <QDialog>
5 #include <QListView>
6 #include <QStringListModel>
7
8 class StickyDialog : public QDialog
9 {
10     Q_OBJECT
11 public:
12     explicit StickyDialog(QString defaultDirectory,  QWidget *parent = 0);
13
14     QStringList getStickyList();
15
16
17 signals:
18
19 public slots:
20
21     void add();
22     void remove();
23
24 protected:
25
26     QListView * pStickiesView_;
27     QStringListModel * pStickiesModel_;
28
29     QString defaultDirectory_;
30
31
32
33 };
34
35 #endif // STICKYDIALOG_H