Subversion Repositories svn1-original

Rev

Rev 312 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 312 Rev 319
Line 48... Line 48...
48
    team_type   team_buf;                            // Holds team data currently under display
48
    team_type   team_buf;                            // Holds team data currently under display
49
    QmLegTimes *lt[MAX_LEGS+1];                      // Per Leg Widgets
49
    QmLegTimes *lt[MAX_LEGS+1];                      // Per Leg Widgets
50
    bool        dirty;                               // Unsaved changes
50
    bool        dirty;                               // Unsaved changes
51
    bool        populating;
51
    bool        populating;
52
    bool        enableDone;                          // Dialog usage
52
    bool        enableDone;                          // Dialog usage
-
 
53
    QString     noteFileName;                        // Current Note Filename
53
 
54
 
54
    void showEvent ( QShowEvent * event );           // Reimplement Widget Method
55
    void showEvent ( QShowEvent * event );           // Reimplement Widget Method
-
 
56
    void populateNote(void);
55
 
57
 
56
 
58
 
57
public slots:
59
public slots:
58
    void save(void);
60
    void save(void);
59
    void suckData(void);
61
    void suckData(void);
Line 61... Line 63...
61
    void populate(int team_number);
63
    void populate(int team_number);
62
    void recalculateTimes( void );
64
    void recalculateTimes( void );
63
    void changed(void);
65
    void changed(void);
64
    void updateChanged(bool dirty);
66
    void updateChanged(bool dirty);
65
    void updateCategory(void);
67
    void updateCategory(void);
-
 
68
    void editNote(void);
66
 
69
 
67
signals:
70
signals:
68
    void dialogDone(int);
71
    void dialogDone(int);
69
};
72
};
70
 
73