-
Notifications
You must be signed in to change notification settings - Fork 0
/
Panel.h
63 lines (48 loc) · 1.36 KB
/
Panel.h
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
#ifndef __PANEL_H__
#define __PANEL_H__
/**
* Panel.h
*
* $Revision$
* $Id$
*
* Containeri ruudulla, jolla on sijainti, koko ja mahdollisesti
* border.
*/
#include "Graphics.h"
class VPanel {
public:
// asetetaan jonkunlaiset defaultit
VPanel();
// virtual ~VPanel();
virtual void setLocation(const int x, const int y);
virtual int getX();
virtual int getY();
virtual void setX(const int newX);
virtual void setY(const int newY);
virtual int getWidth(void);
virtual int getHeight(void);
// TODO: tämä ei ole vielä kokonaan tuettu, pidetään borderit toistaiseksi päällä..
// virtual void setBorderVisible(bool visible);
void setBorderColor(const SGraphics::GCOLOR fg, const SGraphics::GCOLOR bg);
void setBorderStyle(const SGraphics::BORDER_STYLE bs);
// panelin tulee piirtää itsensä kun tätä kutsutaan
virtual void draw(void);
// piirtää taustaväriä paneelin kohtaan
virtual void hide(void);
protected:
SGraphics::BORDER_STYLE m_borderStyle;
SGraphics::GCOLOR m_borderBG;
SGraphics::GCOLOR m_borderFG;
SGraphics::GCOLOR m_foreground;
SGraphics::GCOLOR m_background;
bool m_border;
int m_x;
int m_y;
int m_width;
int m_height;
// piirretään borderi
void drawBorder(void);
private:
};
#endif // __PANEL_H__