Changeset 8073 for code/branches/kicklib/src/libraries/core
- Timestamp:
- Mar 14, 2011, 4:08:06 AM (14 years ago)
- Location:
- code/branches/kicklib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/kicklib
- Property svn:mergeinfo changed
/code/branches/mac_osx (added) merged: 7789,7933-7934,8042-8049,8054-8056,8059-8060,8065,8069-8070,8072
- Property svn:mergeinfo changed
-
code/branches/kicklib/src/libraries/core/DynLib.h
r8071 r8073 110 110 111 111 protected: 112 112 113 /// Handle to the loaded library. 113 114 DYNLIB_HANDLE m_hInst; -
code/branches/kicklib/src/libraries/core/GUIManager.cc
r8071 r8073 369 369 false | False | True | Dontcare 370 370 */ 371 372 #ifdef ORXONOX_PLATFORM_APPLE 373 // There is no non exclusive mode on OS X yet 374 state->setMouseExclusive(TriBool::True); 375 #else 371 376 if (showCursor == TriBool::Dontcare) 372 377 state->setMouseExclusive(TriBool::Dontcare); … … 375 380 else 376 381 state->setMouseExclusive(TriBool::False); 382 #endif 377 383 378 384 if (showCursor == TriBool::True) … … 436 442 void GUIManager::buttonPressed(MouseButtonCode::ByEnum id) 437 443 { 438 //guiSystem_->injectMouseButtonDown(convertButton(id));439 444 this->protectedCall(boost::bind(&CEGUI::System::injectMouseButtonDown, _1, convertButton(id))); 440 445 } -
code/branches/kicklib/src/libraries/core/GraphicsManager.cc
r8071 r8073 269 269 270 270 Ogre::WindowEventUtilities::addWindowEventListener(this->renderWindow_, ogreWindowEventListener_.get()); 271 271 272 272 // HACK 273 273 #ifdef ORXONOX_PLATFORM_APPLE … … 278 278 #endif 279 279 // End of HACK 280 280 281 281 // create a full screen default viewport 282 282 // Note: This may throw when adding a viewport with an existing z-order! -
code/branches/kicklib/src/libraries/core/PathConfig.cc
r8071 r8073 208 208 #ifdef ORXONOX_PLATFORM_UNIX 209 209 char* userDataPathPtr(getenv("HOME")); 210 #elif ORXONOX_PLATFORM_APPLE211 char* userDataPathPtr(getenv("HOME"));212 210 #else 213 211 char* userDataPathPtr(getenv("APPDATA"));
Note: See TracChangeset
for help on using the changeset viewer.