- Timestamp:
- May 30, 2010, 1:37:33 PM (14 years ago)
- Location:
- code/branches/presentation3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation3/data/gui/layouts/SettingsMenu.layout
r7006 r7012 50 50 <Window Type="MenuWidgets/Button" Name="orxonox/SettingsMenu/MiscellaneousButton" > 51 51 <Property Name="Text" Value="Miscellaneous" /> 52 <Property Name="Disabled" Value="True" />53 52 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" /> 54 53 <Property Name="UnifiedAreaRect" Value="{{0.55,0},{0.727272,0},{0.95,0},{0.909090,0}}" /> -
code/branches/presentation3/data/gui/scripts/MiscConfigMenu.lua
r7006 r7012 1 1 -- MiscConfigMenu.lua 2 2 3 local P = createMenuSheet("MiscConfigMenu" )3 local P = createMenuSheet("MiscConfigMenu", true, TriBool.True, TriBool.True) 4 4 5 5 P.commandList = {} -
code/branches/presentation3/src/libraries/core/GUIManager.cc
r6763 r7012 321 321 } 322 322 323 void GUIManager:: keyPressed(const KeyEvent& evt)323 void GUIManager::buttonPressed(const KeyEvent& evt) 324 324 { 325 325 this->protectedCall(boost::bind(&CEGUI::System::injectKeyDown, _1, evt.getKeyCode())); … … 327 327 } 328 328 329 void GUIManager:: keyReleased(const KeyEvent& evt)329 void GUIManager::buttonReleased(const KeyEvent& evt) 330 330 { 331 331 this->protectedCall(boost::bind(&CEGUI::System::injectKeyUp, _1, evt.getKeyCode())); -
code/branches/presentation3/src/libraries/core/GUIManager.h
r6996 r7012 113 113 114 114 // keyHandler functions 115 void keyPressed (const KeyEvent& evt);116 void keyReleased(const KeyEvent& evt);115 void buttonPressed (const KeyEvent& evt); 116 void buttonReleased(const KeyEvent& evt); 117 117 118 118 // mouseHandler functions
Note: See TracChangeset
for help on using the changeset viewer.