Subversion Repositories svn1

Rev

Rev 286 | Rev 312 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 286 Rev 311
Line 15... Line 15...
15
    bool        dirty;                               // Unsaved changes
15
    bool        dirty;                               // Unsaved changes
16
    void populate(void);
16
    void populate(void);
17
 
17
 
18
protected:
18
protected:
19
    void changeEvent(QEvent *e);
19
    void changeEvent(QEvent *e);
20
    bool statusShown;
-
 
21
    bool populating;
20
    bool populating;
22
    void updateChanged(bool dirty);
21
    void updateChanged(bool dirty);
23
 
22
 
24
private:
23
private:
25
    QTableWidget *tableWidget;
24
    QTableWidget *tableWidget;
26
    QPushButton  *statusButton;
-
 
27
    QPushButton  *pushButtonRestore;
25
    QPushButton  *pushButtonRestore;
28
    QPushButton  *pushButtonSave;
26
    QPushButton  *pushButtonSave;
29
 
27
 
30
public slots:
28
public slots:
31
    void save(void);
29
    void save(void);
32
    void cancel(void);
30
    void cancel(void);
33
    void updateStatus(void);
-
 
34
    void ctxMenu(const QPoint &);
31
    void ctxMenu(const QPoint &);
35
    void ctxMenuDeleteRow(void);
32
    void ctxMenuDeleteRow(void);
36
    void ctxMenuAddRow(void);
33
    void ctxMenuAddRow(void);
37
    void cellChanged(int,int);
34
    void cellChanged(int,int);
38
 
35