Handle events from the application/window and actions from the user of your application by deriving an an object from ApplicationHandlerInterface.
More...
#include <tb_application_handler_interface.h>
The RealtimeApplication takes an ApplicationHandlerInterface object that will handle window events and changes including actions the user of your application takes with menus and dialogs. This is similar to the AppDelegate object in Cocoa or WndProc function in Win32.
virtual TurtleBrains::Application::ApplicationHandlerInterface::~ApplicationHandlerInterface |
( |
void |
| ) |
|
|
pure virtual |
virtual void TurtleBrains::Application::ApplicationHandlerInterface::CollectWindowProperties |
( |
WindowProperties & |
windowProperties | ) |
|
|
virtual |
Invoked to retrieve the size, and properties of the Realtime OpenGL window during the creation of the window.
- Parameters
-
windowProperties | A reference to the properties of the window, filled out by you. The default settings are initialized beforehand, so if you want a default sized window, there is no need to do anything! |
virtual void TurtleBrains::Application::ApplicationHandlerInterface::OnBecomeActive |
( |
void |
| ) |
|
|
virtual |
Invoked each time the window gains or regains focus.
virtual void TurtleBrains::Application::ApplicationHandlerInterface::OnBecomeInactive |
( |
void |
| ) |
|
|
virtual |
Invoked each time the window loses focus to another application.
Invoked each time the user clicks a menu item from a Window Menu or Contect menu.
- Parameters
-
menu | The identifier of the menu object that was interacted with to be distinguished between one menu and the next within your application. |
menuItem | The menu item that was clicked by the user for the given menu. |
virtual void TurtleBrains::Application::ApplicationHandlerInterface::OnRealtimeUpdate |
( |
void |
| ) |
|
|
virtual |
Invoked once for each frame of a real-time application. This is invoked very often and generally as quickly as possible.
virtual void TurtleBrains::Application::ApplicationHandlerInterface::OnWindowClose |
( |
void |
| ) |
|
|
virtual |
Invoked only once just before the window is destroyed, there is no way to cancel the window from closing once this is called.
virtual void TurtleBrains::Application::ApplicationHandlerInterface::OnWindowOpen |
( |
void |
| ) |
|
|
virtual |
Invoked only once while the window is being created, just before it is shown so that a window menu, status bar, or other portions can be setup and added to the window.