Rev 119 | Rev 123 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#ifndef TEAMDISPLAY_H#define TEAMDISPLAY_H#include <QWidget>#include "consts.h"#include "structs.h"#include "proto.h"#include "qmlegtimes.h"namespace Ui {class teamDisplay;}class teamDisplay : public QWidget {Q_OBJECTpublic:teamDisplay(QWidget *parent = 0);~teamDisplay();protected:void changeEvent(QEvent *e);private:Ui::teamDisplay *ui;int team; /* Current team number */team_type team_buf; /* Holds team data currently under display */QmLegTimes *lt[MAX_LEGS]; // Per Leg Widgetspublic slots:void save(void);void cancel(void);void populate(int team_number);void recalculateTimes( void );};#endif // TEAMDISPLAY_H