Reference for JVM version of SpaceVIL
0.3.5.8
SpaceVIL (Space of Visual Items Layout) is a cross-platform and multilingual framework for creating GUI client applications for .NET Standard, .NET Core and JVM. SpaceVIL is based on OpenGL graphic technology and GLFW. Using this framework in conjunction with .Net Core or with a JVM, you can work and create graphical client applications on Linux, Mac OS X and Windows.
|
Class Geometry describes all geometry properties of the item. More...
Inherits com.spvessel.spacevil.Core.InterfaceSize.
Inherited by com.spvessel.spacevil.Cell.
Public Member Functions | |
Geometry () | |
void | setWidth (int width) |
Setting item width. More... | |
int | getWidth () |
Getting item width. More... | |
void | setMinWidth (int width) |
Setting the minimum width limit. More... | |
int | getMinWidth () |
Getting the minimum width limit. More... | |
void | setMaxWidth (int width) |
Setting the maximum width limit. More... | |
int | getMaxWidth () |
Getting the maximum width limit. More... | |
void | setHeight (int height) |
Setting item height. More... | |
int | getHeight () |
Getting item height. More... | |
void | setMinHeight (int height) |
Setting the minimum height limit. More... | |
int | getMinHeight () |
Getting the minimum height limit. More... | |
void | setMaxHeight (int height) |
Setting the maximum height limit. More... | |
int | getMaxHeight () |
Getting the maximum height limit. More... | |
void | setSize (int width, int height) |
Setting item size (width and height). More... | |
Size | getSize () |
Getting current item size. More... | |
Class Geometry describes all geometry properties of the item.
com.spvessel.spacevil.Core.Geometry.Geometry | ( | ) |
int com.spvessel.spacevil.Core.Geometry.getHeight | ( | ) |
Getting item height.
Implements com.spvessel.spacevil.Core.InterfaceSize.
int com.spvessel.spacevil.Core.Geometry.getMaxHeight | ( | ) |
Getting the maximum height limit.
Implements com.spvessel.spacevil.Core.InterfaceSize.
int com.spvessel.spacevil.Core.Geometry.getMaxWidth | ( | ) |
Getting the maximum width limit.
Implements com.spvessel.spacevil.Core.InterfaceSize.
int com.spvessel.spacevil.Core.Geometry.getMinHeight | ( | ) |
Getting the minimum height limit.
Implements com.spvessel.spacevil.Core.InterfaceSize.
int com.spvessel.spacevil.Core.Geometry.getMinWidth | ( | ) |
Getting the minimum width limit.
Implements com.spvessel.spacevil.Core.InterfaceSize.
Size com.spvessel.spacevil.Core.Geometry.getSize | ( | ) |
Getting current item size.
Implements com.spvessel.spacevil.Core.InterfaceSize.
int com.spvessel.spacevil.Core.Geometry.getWidth | ( | ) |
void com.spvessel.spacevil.Core.Geometry.setHeight | ( | int | height | ) |
Setting item height.
If the value is greater/less than the maximum/minimum value of the height, then the height becomes equal to the maximum/minimum value.
height | Height of the item. |
Implements com.spvessel.spacevil.Core.InterfaceSize.
void com.spvessel.spacevil.Core.Geometry.setMaxHeight | ( | int | height | ) |
Setting the maximum height limit.
Actual height cannot be greater than this limit.
height | Maximum height limit of the item. |
Implements com.spvessel.spacevil.Core.InterfaceSize.
void com.spvessel.spacevil.Core.Geometry.setMaxWidth | ( | int | width | ) |
Setting the maximum width limit.
Actual width cannot be greater than this limit.
width | Maximum width limit of the item. |
Implements com.spvessel.spacevil.Core.InterfaceSize.
void com.spvessel.spacevil.Core.Geometry.setMinHeight | ( | int | height | ) |
Setting the minimum height limit.
Actual height cannot be less than this limit.
height | Minimum height limit of the item. |
Implements com.spvessel.spacevil.Core.InterfaceSize.
void com.spvessel.spacevil.Core.Geometry.setMinWidth | ( | int | width | ) |
Setting the minimum width limit.
Actual width cannot be less than this limit.
width | Minimum width limit of the item. |
Implements com.spvessel.spacevil.Core.InterfaceSize.
void com.spvessel.spacevil.Core.Geometry.setSize | ( | int | width, |
int | height | ||
) |
Setting item size (width and height).
width | Width of the item. |
height | Height of the item. |
Implements com.spvessel.spacevil.Core.InterfaceSize.
void com.spvessel.spacevil.Core.Geometry.setWidth | ( | int | width | ) |
Setting item width.
If the value is greater/less than the maximum/minimum value of the width, then the width becomes equal to the maximum/minimum value.
width | Width of the item. |
Implements com.spvessel.spacevil.Core.InterfaceSize.