X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Fstickydialog.h;fp=src%2Fstickydialog.h;h=62ff5b31b944f85807888cb68d70277c36904d62;hb=a06334fdc173e26d116b5625aa50b1236d119dfe;hp=0000000000000000000000000000000000000000;hpb=9a5278861b2b61209cce7ee2d215045d8dcbdd12;p=kitchenalert diff --git a/src/stickydialog.h b/src/stickydialog.h new file mode 100644 index 0000000..62ff5b3 --- /dev/null +++ b/src/stickydialog.h @@ -0,0 +1,35 @@ +#ifndef STICKYDIALOG_H +#define STICKYDIALOG_H + +#include +#include +#include + +class StickyDialog : public QDialog +{ + Q_OBJECT +public: + explicit StickyDialog(QString defaultDirectory, QWidget *parent = 0); + + QStringList getStickyList(); + + +signals: + +public slots: + + void add(); + void remove(); + +protected: + + QListView * pStickiesView_; + QStringListModel * pStickiesModel_; + + QString defaultDirectory_; + + + +}; + +#endif // STICKYDIALOG_H