summaryrefslogtreecommitdiffstats
path: root/kalzium/src/eqresult.h
blob: 39e7d85a290552c2a04f739397079eeb44478265 (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
81
82
83
84
85
86
87
88
89
90
/***************************************************************************
 *   Copyright (C) 2004, 2005 by Thomas Nagy                               *
 *   tnagy2^8@yahoo.fr                                                     *
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.             *
 ***************************************************************************/

#ifndef _EQRESULT_H_
#define _EQRESULT_H_

#include <tqlistbox.h>
#include <tqsimplerichtext.h>

/**
 * @author Thomas Nagy
 */
class QuestionItem : public QListBoxItem
{
    public:
	QuestionItem( TQListBox*, const TQString&, TQColor bg );
    protected:
	void paint( TQPainter* p );
	int width( const TQListBox* ) const;
	int height( const TQListBox* ) const;
    private:
	TQString m_msg;
	TQColor m_bgcolor;
};

/**
 * @author Thomas Nagy
 */
class AnswerItem : public QListBoxItem
{
    public:
	AnswerItem(  TQListBox*, const TQString&, const TQString&, TQColor bg );
	~AnswerItem() { delete m_richtext; }
	void checkSize();
    protected:
	void paint( TQPainter* p );
	int width( const TQListBox* ) const{
		return m_richtext->height();
	}
	
	int height( const TQListBox* ) const{
		return m_richtext->height();
	}
	
    private:
	TQString m_msg;
	TQString m_origmsg;
	TQColor m_bgcolor;
	TQSimpleRichText * m_richtext;
};

/**
 * @author Thomas Nagy
 */
class EqResult : public QListBox
{
    Q_OBJECT
public:
    
    EqResult(TQWidget *parent);
    ~EqResult();

public slots:
    void add(const TQString &, const TQString &);
    void scrollToEnd();
    void resizeEvent( TQResizeEvent* );

private:
    bool m_alternate_color;
};

#endif // _EQRESULT_H_