summaryrefslogtreecommitdiffstats
path: root/keduca/keduca/kquestion.h
blob: 01ecfce74c80e88e431c6906ff0ac13500ad1588 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/***************************************************************************
                          kquestion.h  -  description
                             -------------------
    begin                : Tue May 22 2001
    copyright            : (C) 2001 by Javier Campos Morales
    email                : javi@asyris.org
***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 KQUESTION_H
#define KQUESTION_H

#include <tqhbox.h>
#include <tqtextedit.h>
#include <tqlabel.h>

class TQTimer;
class KProgress;

/**Question view
 * The Widget that is used to display the Question.
 *@author Javier Campos Morales
 */
class KQuestion : public TQHBox
{
    Q_OBJECT
  

public:
    KQuestion(TQWidget *parent=0, const char *name=0);
    ~KQuestion();
    /** Set pixmap */
    void setPixmap( const TQPixmap pixmap);
    /** Set text */
    void setText( const TQString &text);

    /** show a countdown, starting at "starttime" and counting
        down to 0, each second one count.

        0 disables the countdown.
    */
    void countdown(int starttime);

    void countdownVisible(bool visible);

    /** Get current time */
    int getCurrentTime();
  
private slots:
    void countDownOne();

private:

    // Private methods

    /** Init graphical interface */
    void initGUI();

    // Private attributes

    /** Main View */
    TQTextEdit *_view;
    /** Main Picture */
    TQLabel *_picture;
    TQTimer *_countdownTimer;
    KProgress *_countdownWidget;
    int _currentCount;
    int _totalCount;
};

#endif