Changeset 10336 in orxonox.OLD for branches/gui/src/lib
- Timestamp:
- Jan 24, 2007, 4:47:34 PM (18 years ago)
- Location:
- branches/gui/src/lib/gui/gl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/gui/gl/glgui_widget.cc
r10273 r10336 565 565 } 566 566 567 568 569 570 571 567 572 /** 568 573 * @brief sets the Background Texture to all States. … … 579 584 } 580 585 586 void GLGuiWidget::setBackgroundTexture(const std::string& textureName, OrxGui::State state) 587 { 588 _style[state]._background.setDiffuseMap(textureName); 589 _style[state]._background.setDiffuseColor(Color(1.0, 1.0, 1.0, 1.0)); 590 591 if (state == _state) { 592 _currentStyle._background.setDiffuseMap(textureName); 593 _currentStyle._background.setDiffuseColor(Color(1.0, 1.0, 1.0, 1.0)); 594 } 595 } 596 597 598 599 581 600 /** 582 601 * @brief sets the Background Texture. -
branches/gui/src/lib/gui/gl/glgui_widget.h
r9869 r10336 181 181 void setBackgroundTexture(const std::string& textureName); 182 182 void setBackgroundTexture(const Texture& texture, OrxGui::State state); 183 void setBackgroundTexture(const std::string& textureName, OrxGui::State state); 183 184 void setBackgroundTexture(const std::string& textureName, const std::string& stateName); 184 185
Note: See TracChangeset
for help on using the changeset viewer.