Subversion Repositories svn1

Rev

Rev 383 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
188 - 1
#ifndef QMSTATUSITEM_H
2
#define QMSTATUSITEM_H
3
 
384 david 4
#include "consts.h"
188 - 5
#include <QWidget>
6
#include <QEvent>
7
 
8
namespace Ui {
9
    class QmStatusItem;
10
}
11
 
12
class QmStatusItem : public QWidget
13
{
14
    Q_OBJECT
15
 
16
public:
17
    explicit QmStatusItem(const QString &title, QWidget *parent = 0);
18
    ~QmStatusItem();
384 david 19
    void setData(int team, maraTime_t best, maraTime_t avg );
188 - 20
 
21
private:
22
    Ui::QmStatusItem *ui;
23
    bool eventFilter(QObject *obj, QEvent *event);
24
    int team;
25
 
26
};
27
 
28
#endif // QMSTATUSITEM_H