Application base class, please make sure to allocate application on heap to have correct application shutdown working.
More...
#include <tdme/application/Application.h>
|
static void | displayInternal () |
| Display function. More...
|
|
static void | reshapeInternal (int width, int height) |
| Reshape function. More...
|
|
static void | glfwOnChar (GLFWwindow *window, unsigned int key) |
| GLFW on char. More...
|
|
static void | glfwOnKey (GLFWwindow *window, int key, int scanCode, int action, int mods) |
| GLFW on key. More...
|
|
static void | glfwOnMouseMoved (GLFWwindow *window, double x, double y) |
| GLFW on mouse moved. More...
|
|
static void | glfwOnMouseButton (GLFWwindow *window, int button, int action, int mods) |
| GLFW on key. More...
|
|
static void | glfwOnMouseWheel (GLFWwindow *window, double x, double y) |
| GLFW on key. More...
|
|
static void | glfwOnWindowResize (GLFWwindow *window, int width, int height) |
| GLFW on window resize. More...
|
|
static void | glfwOnClose (GLFWwindow *window) |
| GLFW on close. More...
|
|
Application base class, please make sure to allocate application on heap to have correct application shutdown working.
- Author
- Andreas Drewke
- Version
- $Id$
Definition at line 36 of file Application.h.
◆ Application()
◆ ~Application()
◆ cancelExit()
Cancels a users requested exit (ALT-F4 or X button)
Definition at line 126 of file Application.cpp.
◆ display()
◆ displayInternal()
◆ dispose()
◆ execute()
string execute |
( |
const string & |
command | ) |
|
|
static |
Execute a command and wait until it finished running.
- Parameters
-
command | command to execute |
- Exceptions
-
- Returns
- application output
Definition at line 91 of file Application.cpp.
◆ executeBackground()
void executeBackground |
( |
const string & |
command | ) |
|
|
static |
Execute a command in background.
- Parameters
-
command | command to execute |
Definition at line 108 of file Application.cpp.
◆ exit()
void exit |
( |
int |
exitCode | ) |
|
|
static |
Exits this application with given exit code.
- Parameters
-
Definition at line 130 of file Application.cpp.
◆ getApplication()
◆ getClipboardContent()
string getClipboardContent |
( |
| ) |
|
◆ getCPUName()
◆ getExecutableFileName()
const string & getExecutableFileName |
( |
| ) |
|
|
inline |
◆ getMousePositionX()
int getMousePositionX |
( |
| ) |
|
|
static |
◆ getMousePositionY()
int getMousePositionY |
( |
| ) |
|
|
static |
◆ getOSName()
- Returns
- Operating system the application is running on
Definition at line 350 of file Application.cpp.
◆ getRenderer()
◆ getTitle()
const string & getTitle |
( |
| ) |
|
|
inline |
◆ getWindowHeight()
int getWindowHeight |
( |
| ) |
const |
◆ getWindowWidth()
int getWindowWidth |
( |
| ) |
const |
◆ getWindowXPosition()
int getWindowXPosition |
( |
| ) |
const |
◆ getWindowYPosition()
int getWindowYPosition |
( |
| ) |
const |
◆ glfwOnChar()
void glfwOnChar |
( |
GLFWwindow * |
window, |
|
|
unsigned int |
key |
|
) |
| |
|
staticprivate |
◆ glfwOnClose()
void glfwOnClose |
( |
GLFWwindow * |
window | ) |
|
|
staticprivate |
◆ glfwOnKey()
void glfwOnKey |
( |
GLFWwindow * |
window, |
|
|
int |
key, |
|
|
int |
scanCode, |
|
|
int |
action, |
|
|
int |
mods |
|
) |
| |
|
staticprivate |
GLFW on key.
- Parameters
-
window | window |
key | key |
scanCode | scan code |
action | action |
mods | modifier keys |
Definition at line 760 of file Application.cpp.
◆ glfwOnMouseButton()
void glfwOnMouseButton |
( |
GLFWwindow * |
window, |
|
|
int |
button, |
|
|
int |
action, |
|
|
int |
mods |
|
) |
| |
|
staticprivate |
GLFW on key.
- Parameters
-
window | window |
button | button |
action | action |
mods | modifier keys |
Definition at line 799 of file Application.cpp.
◆ glfwOnMouseMoved()
void glfwOnMouseMoved |
( |
GLFWwindow * |
window, |
|
|
double |
x, |
|
|
double |
y |
|
) |
| |
|
staticprivate |
◆ glfwOnMouseWheel()
void glfwOnMouseWheel |
( |
GLFWwindow * |
window, |
|
|
double |
x, |
|
|
double |
y |
|
) |
| |
|
staticprivate |
◆ glfwOnWindowResize()
void glfwOnWindowResize |
( |
GLFWwindow * |
window, |
|
|
int |
width, |
|
|
int |
height |
|
) |
| |
|
staticprivate |
GLFW on window resize.
- Parameters
-
window | window |
width | width |
height | height |
Definition at line 820 of file Application.cpp.
◆ hasApplication()
static bool hasApplication |
( |
| ) |
|
|
inlinestatic |
- Returns
- if having a GL/Vulkan window and context
Definition at line 61 of file Application.h.
◆ initialize()
virtual void initialize |
( |
| ) |
|
|
pure virtual |
◆ installExceptionHandler()
void installExceptionHandler |
( |
| ) |
|
|
static |
Windows only: Install exception handler that will print a stack trace if crashing.
Definition at line 464 of file Application.cpp.
◆ isActive()
- Returns
- If window is active on Win32, on other platforms it currently always return true
Definition at line 394 of file Application.cpp.
◆ isDebuggingEnabled()
bool isDebuggingEnabled |
( |
| ) |
|
|
inline |
◆ isFullScreen()
bool isFullScreen |
( |
| ) |
const |
◆ isLimitFPS()
static bool isLimitFPS |
( |
| ) |
|
|
inlinestatic |
- Returns
- if FPS should be limited to 60 frames per seconds
Definition at line 75 of file Application.h.
◆ onClose()
◆ openBrowser()
void openBrowser |
( |
const string & |
url | ) |
|
|
static |
◆ reshape()
virtual void reshape |
( |
int |
width, |
|
|
int |
height |
|
) |
| |
|
pure virtual |
◆ reshapeInternal()
void reshapeInternal |
( |
int |
width, |
|
|
int |
height |
|
) |
| |
|
staticprivate |
◆ run()
Run this application.
- Parameters
-
argc | argument count |
argv | argument values |
title | title |
inputEventHandler | application input event handler |
windowHints | window hints |
Definition at line 527 of file Application.cpp.
◆ setClipboardContent()
void setClipboardContent |
( |
const string & |
content | ) |
|
◆ setFullScreen()
void setFullScreen |
( |
bool |
fullScreen | ) |
|
◆ setIcon()
◆ setInputEventHandler()
Set input event handler.
- Parameters
-
inputEventHandler | input event handler |
Definition at line 390 of file Application.cpp.
◆ setLimitFPS()
static void setLimitFPS |
( |
bool |
limitFPS | ) |
|
|
inlinestatic |
Set frames per seconds limit.
- Parameters
-
limitFPS | set up if FPS should be limited to 60 frames per seconds |
Definition at line 83 of file Application.h.
◆ setMouseCursor()
void setMouseCursor |
( |
int |
mouseCursor | ) |
|
|
static |
Set mouse cursor.
- Parameters
-
mouseCursor | mouse cursor, see MOUSE_CURSOR_* |
Definition at line 470 of file Application.cpp.
◆ setMousePosition()
void setMousePosition |
( |
int |
x, |
|
|
int |
y |
|
) |
| |
|
static |
◆ setVSyncEnabled()
void setVSyncEnabled |
( |
bool |
vSync | ) |
|
|
static |
◆ setWindowHeight()
void setWindowHeight |
( |
int |
windowHeight | ) |
|
Set window height.
- Parameters
-
windowHeight | window height |
Definition at line 433 of file Application.cpp.
◆ setWindowWidth()
void setWindowWidth |
( |
int |
windowWidth | ) |
|
◆ setWindowXPosition()
void setWindowXPosition |
( |
int |
windowXPosition | ) |
|
Set window X position when initializing.
- Parameters
-
windowXPosition | window X position |
Definition at line 406 of file Application.cpp.
◆ setWindowYPosition()
void setWindowYPosition |
( |
int |
windowYPosition | ) |
|
Set window Y position when initializing.
- Parameters
-
windowYPosition | window Y position |
Definition at line 414 of file Application.cpp.
◆ swapBuffers()
◆ InputEventHandler
◆ tdme::engine::subsystems::renderer::VKRenderer
◆ application
◆ debuggingEnabled
bool debuggingEnabled { false } |
|
private |
◆ executableFileName
string executableFileName |
|
private |
◆ exitCode
◆ FPS
◆ fullScreen
bool fullScreen { false } |
|
private |
◆ glfwCapsLockEnabled
bool glfwCapsLockEnabled = false |
|
staticprivate |
◆ glfwHandCursor
GLFWcursor * glfwHandCursor = nullptr |
|
staticprivate |
◆ glfwMouseButtonDownFrames
array< unsigned int, 10 > glfwMouseButtonDownFrames |
|
staticprivate |
◆ glfwMouseButtonLast
int glfwMouseButtonLast = -1 |
|
staticprivate |
◆ glfwWindow
GLFWwindow * glfwWindow = nullptr |
|
staticprivate |
◆ initialized
bool initialized { false } |
|
private |
◆ inputEventHandler
◆ limitFPS
◆ renderer
◆ timeLast
◆ title
◆ WINDOW_HINT_INVISIBLE
constexpr int WINDOW_HINT_INVISIBLE { 4 } |
|
staticconstexpr |
◆ WINDOW_HINT_MAXIMIZED
constexpr int WINDOW_HINT_MAXIMIZED { 8 } |
|
staticconstexpr |
◆ WINDOW_HINT_NONE
constexpr int WINDOW_HINT_NONE { 0 } |
|
staticconstexpr |
◆ WINDOW_HINT_NOTDECORATED
constexpr int WINDOW_HINT_NOTDECORATED { 2 } |
|
staticconstexpr |
◆ WINDOW_HINT_NOTRESIZEABLE
constexpr int WINDOW_HINT_NOTRESIZEABLE { 1 } |
|
staticconstexpr |
◆ windowHeight
◆ windowHints
◆ windowWidth
◆ windowXPosition
int windowXPosition { -1 } |
|
private |
◆ windowYPosition
int windowYPosition { -1 } |
|
private |
The documentation for this class was generated from the following files:
- /home/andreas/Development/drewke.net/tdme2/src/tdme/application/Application.h
- /home/andreas/Development/drewke.net/tdme2/src/tdme/application/Application.cpp