Changeset 8980 in orxonox.OLD for trunk/src/world_entities/elements/glgui_energywidget.cc
- Timestamp:
- Jul 1, 2006, 3:18:43 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/elements/glgui_energywidget.cc
r8977 r8980 27 27 { 28 28 // this->setClassID(CL_PROTO_ID, "GLGuiEnergyWidget"); 29 this->pack(&this->_name); 30 this->pack(&this->_valueText); 31 this->pack(&this->_bar); 29 32 30 this->pack(&this->name); 31 this->pack(&this->text); 32 this->pack(&this->bar); 33 this->setBackgroundTexture("maps/gui_element_background_2.png"); 34 this->setBackgroundColor(Color(.5,.5,.5,1)); 35 36 this->_name.setBackgroundTexture(Texture()); 37 this->_valueText.setBackgroundTexture("maps/gui_element_background_2.png"); 38 this->_valueText.setBackgroundTexture("maps/gui_element_background_2.png"); 39 this->_bar.setBackgroundTexture(Texture()); 33 40 } 34 41 … … 45 52 void GLGuiEnergyWidget::setDisplayedName(const std::string& name) 46 53 { 47 this-> name.setText(name);54 this->_name.setText(name); 48 55 } 49 56 50 57 void GLGuiEnergyWidget::setMaximum(float max) 51 58 { 52 this-> bar.setMaximum(max);59 this->_bar.setMaximum(max); 53 60 } 54 61 … … 58 65 val.setType(MT_INT); 59 66 60 this-> bar.setValue(value);61 this-> text.setText(val.getString());67 this->_bar.setValue(value); 68 this->_valueText.setText(val.getString()); 62 69 } 63 70 … … 65 72 void GLGuiEnergyWidget::showing() 66 73 { 67 this-> name.show();68 this-> text.show();69 this-> bar.show();74 this->_name.show(); 75 this->_valueText.show(); 76 this->_bar.show(); 70 77 } 71 78 72 79 void GLGuiEnergyWidget::hiding() 73 80 { 74 this-> name.hide();75 this-> text.hide();76 this-> bar.hide();81 this->_name.hide(); 82 this->_valueText.hide(); 83 this->_bar.hide(); 77 84 } 78 85 }
Note: See TracChangeset
for help on using the changeset viewer.