| [4744] | 1 | /* |
|---|
| [1853] | 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. |
|---|
| [1855] | 10 | |
|---|
| 11 | ### File Specific: |
|---|
| [5360] | 12 | main-programmer: Benjamin Grauer |
|---|
| [1855] | 13 | co-programmer: ... |
|---|
| [1853] | 14 | */ |
|---|
| 15 | |
|---|
| [5360] | 16 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GUI |
|---|
| [1853] | 17 | |
|---|
| [5364] | 18 | #include "glgui_box.h" |
|---|
| [8450] | 19 | #include <cassert> |
|---|
| [1853] | 20 | |
|---|
| [7779] | 21 | namespace OrxGui |
|---|
| [3365] | 22 | { |
|---|
| [7779] | 23 | /** |
|---|
| 24 | * standard constructor |
|---|
| 25 | */ |
|---|
| [8035] | 26 | GLGuiBox::GLGuiBox (OrxGui::Orientation orientation) |
|---|
| [7779] | 27 | { |
|---|
| 28 | this->init(); |
|---|
| [4320] | 29 | |
|---|
| [8035] | 30 | this->setOrientation(orientation); |
|---|
| [7779] | 31 | } |
|---|
| [1853] | 32 | |
|---|
| 33 | |
|---|
| [7779] | 34 | /** |
|---|
| 35 | * standard deconstructor |
|---|
| 36 | */ |
|---|
| 37 | GLGuiBox::~GLGuiBox() |
|---|
| 38 | {} |
|---|
| [5360] | 39 | |
|---|
| [7779] | 40 | /** |
|---|
| 41 | * initializes the GUI-element |
|---|
| 42 | */ |
|---|
| 43 | void GLGuiBox::init() |
|---|
| [5393] | 44 | { |
|---|
| [7779] | 45 | this->setClassID(CL_GLGUI_BOX, "GLGuiBox"); |
|---|
| [5393] | 46 | } |
|---|
| [7779] | 47 | |
|---|
| 48 | void GLGuiBox::pack(GLGuiWidget* widget) |
|---|
| [5393] | 49 | { |
|---|
| [8035] | 50 | assert (widget != NULL); |
|---|
| [7779] | 51 | |
|---|
| 52 | this->children.push_back(widget); |
|---|
| [8035] | 53 | widget->setParentWidget(this); |
|---|
| 54 | |
|---|
| 55 | this->resize(); |
|---|
| [5393] | 56 | } |
|---|
| 57 | |
|---|
| [7779] | 58 | |
|---|
| 59 | void GLGuiBox::unpack(GLGuiWidget* widget) |
|---|
| [5393] | 60 | { |
|---|
| [9110] | 61 | assert(widget != NULL); |
|---|
| [8035] | 62 | |
|---|
| 63 | std::vector<GLGuiWidget*>::iterator delWidget = std::find(this->children.begin(), this->children.end(), widget); |
|---|
| 64 | if (delWidget != this->children.end()) |
|---|
| [7779] | 65 | { |
|---|
| [8035] | 66 | (*delWidget)->setParentWidget(NULL); |
|---|
| 67 | this->children.erase(delWidget); |
|---|
| [7779] | 68 | } |
|---|
| [8035] | 69 | this->resize(); |
|---|
| [5393] | 70 | } |
|---|
| 71 | |
|---|
| [8035] | 72 | void GLGuiBox::clear() |
|---|
| 73 | { |
|---|
| 74 | this->children.clear(); |
|---|
| 75 | this->resize(); |
|---|
| 76 | } |
|---|
| 77 | |
|---|
| [7779] | 78 | void GLGuiBox::showAll() |
|---|
| 79 | { |
|---|
| [8035] | 80 | std::vector<GLGuiWidget*>::iterator itC = this->children.begin(); |
|---|
| [7779] | 81 | while (itC != this->children.end()) |
|---|
| 82 | { |
|---|
| 83 | if ((*itC)->isA(CL_GLGUI_CONTAINER)) |
|---|
| 84 | static_cast<GLGuiContainer*>(*itC)->showAll(); |
|---|
| 85 | else |
|---|
| 86 | (*itC)->show(); |
|---|
| 87 | itC++; |
|---|
| 88 | } |
|---|
| [5393] | 89 | |
|---|
| [7779] | 90 | this->show(); |
|---|
| [5393] | 91 | } |
|---|
| 92 | |
|---|
| [7779] | 93 | void GLGuiBox::hideAll() |
|---|
| 94 | { |
|---|
| [8035] | 95 | std::vector<GLGuiWidget*>::iterator itC = this->children.begin(); |
|---|
| [7779] | 96 | while (itC != this->children.end()) |
|---|
| 97 | { |
|---|
| 98 | if ((*itC)->isA(CL_GLGUI_CONTAINER)) |
|---|
| 99 | static_cast<GLGuiContainer*>(*itC)->hideAll(); |
|---|
| 100 | else |
|---|
| 101 | (*itC)->hide(); |
|---|
| 102 | itC++; |
|---|
| 103 | } |
|---|
| [5393] | 104 | |
|---|
| [7779] | 105 | this->hide(); |
|---|
| 106 | } |
|---|
| [5393] | 107 | |
|---|
| [8035] | 108 | void GLGuiBox::resize() |
|---|
| 109 | { |
|---|
| 110 | if (orientation() == OrxGui::Vertical) |
|---|
| 111 | { |
|---|
| [8619] | 112 | float height = borderTop(); |
|---|
| [8035] | 113 | float width = 0.0f; |
|---|
| 114 | std::vector<GLGuiWidget*>::iterator widget; |
|---|
| [5360] | 115 | |
|---|
| [8035] | 116 | // find out how big the Widgets are. |
|---|
| 117 | for (widget = this->children.begin(); widget != this->children.end(); ++widget) |
|---|
| 118 | { |
|---|
| [8619] | 119 | (*widget)->setRelCoor2D(borderLeft(), height); |
|---|
| [8035] | 120 | height += (*widget)->getSizeY2D(); |
|---|
| 121 | width = fmax(width, (*widget)->getSizeX2D()); |
|---|
| 122 | } |
|---|
| 123 | |
|---|
| [8619] | 124 | width += borderLeft() + borderRight(); |
|---|
| 125 | height += borderBottom(); /* *2 done further up */ |
|---|
| [8035] | 126 | |
|---|
| 127 | this->setSize2D(width, height); |
|---|
| 128 | } |
|---|
| 129 | else |
|---|
| 130 | { |
|---|
| [8619] | 131 | float height = borderTop(); |
|---|
| 132 | float width = borderLeft(); |
|---|
| [8035] | 133 | std::vector<GLGuiWidget*>::iterator widget; |
|---|
| 134 | |
|---|
| 135 | // find out how big the Widgets are. |
|---|
| 136 | for (widget = this->children.begin(); widget != this->children.end(); ++widget) |
|---|
| 137 | { |
|---|
| [8619] | 138 | (*widget)->setRelCoor2D(width, borderTop()); |
|---|
| [8035] | 139 | height = fmax(height, (*widget)->getSizeY2D()); |
|---|
| 140 | width += (*widget)->getSizeX2D(); |
|---|
| 141 | } |
|---|
| 142 | |
|---|
| [8619] | 143 | width += borderRight() ; |
|---|
| 144 | height += borderBottom(); /* *2 done further up */ |
|---|
| [8035] | 145 | |
|---|
| 146 | this->setSize2D(width, height); |
|---|
| 147 | } |
|---|
| 148 | GLGuiWidget::resize(); |
|---|
| 149 | |
|---|
| 150 | // resize everything. |
|---|
| 151 | //for (widget = this->children.begin(); widget != this->children.end(); ++widget) |
|---|
| 152 | //{} |
|---|
| 153 | } |
|---|
| 154 | |
|---|
| [7779] | 155 | /** |
|---|
| [8035] | 156 | * @brief draws the GLGuiBox |
|---|
| [7779] | 157 | */ |
|---|
| 158 | void GLGuiBox::draw() const |
|---|
| 159 | { |
|---|
| [8035] | 160 | this->beginDraw(); |
|---|
| 161 | GLGuiWidget::draw(); |
|---|
| 162 | this->endDraw(); |
|---|
| [7779] | 163 | } |
|---|
| [5360] | 164 | } |
|---|