You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeedu/kwordquiz/src/wqscore.h

51 lines
1.5 KiB

/***************************************************************************
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