Returns the number of Windows the app has open
| 482 | inline WindowRef getWindow() { return AppBase::get()->getWindow(); } |
| 483 | //! Returns the number of Windows the app has open |
| 484 | inline size_t getNumWindows() { return AppBase::get()->getNumWindows(); } |
| 485 | //! Gets a Window by index, in the range [0, getNumWindows()). |
| 486 | inline WindowRef getWindowIndex( size_t index ) { return AppBase::get()->getWindowIndex( index ); } |
| 487 |