1 | /* |
---|
2 | orxonox - the future of 3D-vertical-scrollers |
---|
3 | |
---|
4 | Copyright (C) 2004 orx |
---|
5 | |
---|
6 | This program is free software; you can redistribute it and/or modify |
---|
7 | it under the terms of the GNU General Public License as published by |
---|
8 | the Free Software Foundation; either version 2, or (at your option) |
---|
9 | any later version. |
---|
10 | |
---|
11 | ### File Specific: |
---|
12 | main-programmer: Benjamin Grauer |
---|
13 | co-programmer: ... |
---|
14 | */ |
---|
15 | |
---|
16 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GUI |
---|
17 | |
---|
18 | #include "glgui_box.h" |
---|
19 | |
---|
20 | #include "list.h" |
---|
21 | |
---|
22 | using namespace std; |
---|
23 | |
---|
24 | /** |
---|
25 | * standard constructor |
---|
26 | */ |
---|
27 | GLGuiBox::GLGuiBox (GLGuiBoxType type) |
---|
28 | { |
---|
29 | this->init(); |
---|
30 | |
---|
31 | this->setType (type); |
---|
32 | } |
---|
33 | |
---|
34 | |
---|
35 | /** |
---|
36 | * standard deconstructor |
---|
37 | */ |
---|
38 | GLGuiBox::~GLGuiBox() |
---|
39 | { |
---|
40 | delete this->children; |
---|
41 | } |
---|
42 | |
---|
43 | /** |
---|
44 | * initializes the GUI-element |
---|
45 | */ |
---|
46 | void GLGuiBox::init() |
---|
47 | { |
---|
48 | this->setClassID(CL_GLGUI_BOX, "GLGuiBox"); |
---|
49 | this->children = new tList<GLGuiWidget>; |
---|
50 | } |
---|
51 | |
---|
52 | void GLGuiBox::pack(GLGuiWidget* widget) |
---|
53 | { |
---|
54 | if (widget == NULL) |
---|
55 | return; |
---|
56 | |
---|
57 | this->children->add(widget); |
---|
58 | } |
---|
59 | |
---|
60 | |
---|
61 | void GLGuiBox::unpack(GLGuiWidget* widget) |
---|
62 | { |
---|
63 | if (widget == NULL) |
---|
64 | { |
---|
65 | delete this->children; |
---|
66 | this->children = new tList<GLGuiWidget>; |
---|
67 | } |
---|
68 | else |
---|
69 | { |
---|
70 | this->children->remove(widget); |
---|
71 | } |
---|
72 | } |
---|
73 | |
---|
74 | void GLGuiBox::showAll() |
---|
75 | { |
---|
76 | tIterator<GLGuiWidget>* itC = this->children->getIterator(); |
---|
77 | GLGuiWidget* enumC = itC->firstElement(); |
---|
78 | while (enumC != NULL) |
---|
79 | { |
---|
80 | if (enumC->isA(CL_GLGUI_CONTAINER)) |
---|
81 | static_cast<GLGuiContainer*>(enumC)->showAll(); |
---|
82 | else |
---|
83 | enumC->show(); |
---|
84 | enumC = itC->nextElement(); |
---|
85 | } |
---|
86 | delete itC; |
---|
87 | |
---|
88 | this->show(); |
---|
89 | |
---|
90 | } |
---|
91 | |
---|
92 | void GLGuiBox::hideAll() |
---|
93 | { |
---|
94 | tIterator<GLGuiWidget>* itC = this->children->getIterator(); |
---|
95 | GLGuiWidget* enumC = itC->firstElement(); |
---|
96 | while (enumC != NULL) |
---|
97 | { |
---|
98 | if (enumC->isA(CL_GLGUI_CONTAINER)) |
---|
99 | static_cast<GLGuiContainer*>(enumC)->showAll(); |
---|
100 | else |
---|
101 | enumC->hide(); |
---|
102 | enumC = itC->nextElement(); |
---|
103 | } |
---|
104 | delete itC; |
---|
105 | |
---|
106 | this->hide(); |
---|
107 | } |
---|
108 | |
---|
109 | |
---|
110 | /** |
---|
111 | * draws the GLGuiBox |
---|
112 | */ |
---|
113 | void GLGuiBox::draw() const |
---|
114 | { |
---|
115 | |
---|
116 | } |
---|