-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathListBox.cpp
103 lines (85 loc) · 2.19 KB
/
ListBox.cpp
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
91
92
93
94
95
96
97
98
99
100
101
102
103
#include "ListBox.h"
ListBox::ListBox(WindowHandler* handler, WindowID id, int x, int y, int width, int height, D3DCOLOR color)
: Window(handler, id, x, y, width, height, color)
{
mItems = 0;
mMouseOver = false;
mValue = " ";
}
ListBox::~ListBox()
{
// dtor
}
bool ListBox::pressed(int mx, int my)
{
for(int i = 0; i<mItemList.size();i++)
{
if(mx > mItemList[i].getRect().left && mx < mItemList[i].getRect().right && my > mItemList[i].getRect().top && my < mItemList[i].getRect().bottom)
{
setValue(mItemList[i].itemName); // buttons uses this information!
break;
}
else
setValue("none"); // innanför boxen, men inte på ett item
}
return true;
}
void ListBox::hoover(int mx, int my)
{
mMouseOver = true;
for(int i = 0; i < mItems; i++)
{
if(gDInput->cursorInsideRect(mItemList[i].getRect()))
mHooverRect = mItemList[i].getRect();
}
}
void ListBox::draw(void)
{
// draw items
for(int i = 0; i<mItemList.size();i++)
{
if(mItemList[i].itemName == getValue() && mActive)
gGraphics->BlitRect(mItemList[i].x, mItemList[i].y, mItemList[i].width, mItemList[i].height, D3DCOLOR_ARGB(255, 255, 166, 0));
else
{
gGraphics->BlitRect(mItemList[i].x, mItemList[i].y, mItemList[i].width, mItemList[i].height, mItemList[i].color);
if(mMouseOver)
gGraphics->BlitRect(mHooverRect, D3DCOLOR_ARGB(255, 255, 166, 255));
}
strcpy(buffer, mItemList[i].itemName.c_str());
gGraphics->drawText(buffer, mItemList[i].x - mItemList[i].width/2, mItemList[i].y - mItemList[i].height/2);
}
mMouseOver = false;
}
void ListBox::addItem(string name, int height, D3DCOLOR color)
{
ListItem tmpItem;
tmpItem.itemName = name;
if(mItems == 0)
tmpItem.y = mY - (mHeight/2) + height/2;//mPosition.top + height/2;
else
tmpItem.y = mY - (mHeight/2) + height/2 + mItems *height;
tmpItem.x = mX;
tmpItem.width = mWidth;
tmpItem.height = height;
tmpItem.color = color;
mItems++;
mItemList.push_back(tmpItem);
}
void ListBox::move(int dx, int dy)
{
Window::move(dx, dy);
for(int i = 0; i<mItemList.size();i++)
{
mItemList[i].x += dx;
mItemList[i].y += dy;
}
}
void ListBox::setValue(string value)
{
mValue = value;
}
string ListBox::getValue(void)
{
return mValue;
}