-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathListBoxElement.cpp
More file actions
58 lines (48 loc) · 793 Bytes
/
Copy pathListBoxElement.cpp
File metadata and controls
58 lines (48 loc) · 793 Bytes
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
#include "ListBoxElement.h"
ListBoxElement::ListBoxElement(void)
{
this->obj = nullptr;
this->text = nullptr;
this->selected = false;
}
void* ListBoxElement::getObject()
{
return this->obj;
}
void ListBoxElement::setValue(void* e)
{
this->obj = e;
}
void ListBoxElement::setSelection(bool b)
{
if(boxParent == 0x00)
this->selected = b;
else
{
__raise selectionChanged(this, b);
this->selected = b;
}
}
void ListBoxElement::setText(char* text)
{
this->text = text;
}
char* ListBoxElement::getText()
{
return this->text;
}
bool ListBoxElement::isSelected()
{
return this->selected;
}
void ListBoxElement::setParent(void * parent)
{
this->boxParent = parent;
}
void* ListBoxElement::getParent()
{
return this->boxParent;
}
ListBoxElement::~ListBoxElement(void)
{
}