blob: 10e575fa567b7e3be7ab2787fe42e07cc384d9b0 (
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
45
46
47
48
49
50
|
/***************************************************************************
wqscore.h - description
-------------------
copyright : (C) 2003 by Peter Hedlund
email : peter.hedlund@kdemail.net
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef WTQSCORE_H
#define WTQSCORE_H
#include <tqwidget.h>
/**
@author Peter Hedlund
*/
class WTQScore{
public:
enum CountDirection {cdCorrect, cdError, cdNone};
WTQScore();
~WTQScore();
void setAsPercent(bool p);
void setQuestionCount(int c);
void countIncrement(CountDirection d);
TQString answerText();
TQString correctText();
TQString errorText();
private:
bool m_percent;
int m_questionCount;
int m_error;
int m_correct;
int m_answerCount;
TQString valueToString(int i);
};
#endif
|