VR-Engage  2.2
Loading...
Searching...
No Matches
Window Layout Component Role Parameters

Detailed Description

Collaboration diagram for Window Layout Component Role Parameters:

Variables

constexpr const char * makVre::WindowLayoutComponentConfig::height = "height"
 
constexpr const char * makVre::WindowLayoutComponentConfig::positionX = "positionX"
 
constexpr const char * makVre::WindowLayoutComponentConfig::positionY = "positionY"
 
constexpr const char * makVre::WindowLayoutComponentConfig::width = "width"
 

Variable Documentation

◆ height

const char* makVre::WindowLayoutComponentConfig::height = "height"
constexpr
Parameter Nameheight
Parameter DescriptionHeight of the application window in pixels when this role is active.
Parameter Typeint
Parameter Default768
Required?No

Example Role Config Usage:

["windowLayoutComponent"] = {
...
height = 768;
...
};

◆ positionX

const char* makVre::WindowLayoutComponentConfig::positionX = "positionX"
constexpr
Parameter NamepositionX
Parameter DescriptionHorizontal position of the application window in pixels from the left edge of the screen.
Parameter Typeint
Parameter Default100
Required?No

Example Role Config Usage:

["windowLayoutComponent"] = {
...
positionX = 100;
...
};

◆ positionY

const char* makVre::WindowLayoutComponentConfig::positionY = "positionY"
constexpr
Parameter NamepositionY
Parameter DescriptionVertical position of the application window in pixels from the top edge of the screen.
Parameter Typeint
Parameter Default300
Required?No

Example Role Config Usage:

["windowLayoutComponent"] = {
...
positionY = 300;
...
};

◆ width

const char* makVre::WindowLayoutComponentConfig::width = "width"
constexpr
Parameter Namewidth
Parameter DescriptionWidth of the application window in pixels when this role is active.
Parameter Typeint
Parameter Default1024
Required?No

Example Role Config Usage:

["windowLayoutComponent"] = {
...
width = 1024;
...
};