blob: 32dcab000639372026099e97981b6d74eb6a92a0 (
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
|
//
// C++ Interface: leitnersystemview
//
// Description:
//
//
// Author: Martin Pfeiffer <martin-pfeiffer-bensheim@web.de>, (C) 2005
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef LEITNERSYSTEMVIEW_H
#define LEITNERSYSTEMVIEW_H
#include <tqscrollview.h>
#include <tqpixmap.h>
class LeitnerSystem;
/**
@author Martin Pfeiffer
*/
class LeitnerSystemView : public TQScrollView
{
Q_OBJECT
public:
LeitnerSystemView(TQWidget* parent = 0, const char* name = 0, WFlags f = 0);
~LeitnerSystemView();
void setSystem(LeitnerSystem* system); //set a new system to view on
void highlightBox(int box); //highlight a box
signals:
void boxClicked(int box); //is emited if the user clicks on a box
protected:
virtual void drawContents(TQPainter* p, int clipx, int clipy, int clipw, int cliph);
virtual void mousePressEvent(TQMouseEvent* e);
private:
LeitnerSystem* m_leitnerSystem; //the system which is shown
void drawSystem(TQPainter*); //paints the boxes
void drawConnections(TQPainter*); //paints the arrows between the boxes
void calculateSize();
//TQRect m_viewArea;
int m_imageY; //high border of the images
int m_distPixmap;
int m_highlightedBox; //the box which is currently highlighted
};
#endif
|