summaryrefslogtreecommitdiff
path: root/core/pim/todo/templatedialog.h
blob: 5886c347c4cd649851d7060f5ad625a26650c07f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef OPIE_TEMPLATE_DIALOG_H
#define OPIE_TEMPLATE_DIALOG_H

#include <qdialog.h>
#include <qstring.h>

class QListView;
class QPushButton;
class QLabel;
class QHBox;
class QVBoxLayout;
class QLineEdit;


namespace Todo {
    class TemplateDialog : public QDialog {
        Q_OBJECT
    public:
        /* it'll be modal */
        TemplateDialog( QWidget* parent );
        virtual ~TemplateDialog();

    protected:
        QListView* listView();
        QLineEdit* edit();
private slots:
        virtual void slotAdd();
        virtual void slotRemove();
        virtual void slotEdit();
        virtual void slotReturn();

    private:
        QVBoxLayout* m_main;
        QHBox* m_btnBar;
        QListView* m_list;
        QLineEdit *m_lne;
        QPushButton* m_add;
        QPushButton* m_rem;
        QPushButton* m_edit;

    };
}

#endif