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.
|
ToolTip is a static class for com.spvessel.spacevil.ToolTipItem managing. More...
Static Public Member Functions | |
static void | setStyle (CoreWindow window, Style style) |
Setting style for ToolTipItem of the specified window. More... | |
static void | setTimeOut (CoreWindow window, int ms) |
Setting waiting time in milliseconds after which ToolTipItem appears. More... | |
static int | getTimeOut (CoreWindow window) |
Getting current waiting time in milliseconds after which ToolTipItem appears. More... | |
static void | setBackground (CoreWindow window, Color color) |
Setting background color of ToolTipItem. More... | |
static void | setForeground (CoreWindow window, Color color) |
Setting text color of ToolTipItem. More... | |
static void | setFont (CoreWindow window, Font font) |
Setting text font of ToolTipItem. More... | |
static void | setBorder (CoreWindow window, Border border) |
Setting border for ToolTipItem. More... | |
static void | setShadow (CoreWindow window, Shadow shadow) |
Setting shadow for ToolTipItem. More... | |
static void | setShadowDrop (CoreWindow window, boolean value) |
Setting ToolTipItem shadow visibility. More... | |
static void | addItems (CoreWindow window, InterfaceBaseItem... items) |
Adding item to the ToolTipItem for decoration or extension. More... | |
ToolTip is a static class for com.spvessel.spacevil.ToolTipItem managing.
Every window has its own ToolTipItem.
|
static |
Adding item to the ToolTipItem for decoration or extension.
Every window has its own ToolTipItem.
window | Window as com.spvessel.spacevil.CoreWindow. |
items | Sequence of items as com.spvessel.spacevil.Core.InterfaceBaseItem. |
|
static |
Getting current waiting time in milliseconds after which ToolTipItem appears.
Every window has its own ToolTipItem.
window | Window as com.spvessel.spacevil.CoreWindow. |
|
static |
Setting background color of ToolTipItem.
Every window has its own ToolTipItem.
window | Window as com.spvessel.spacevil.CoreWindow. |
color | Background color as java.awt.Color. |
|
static |
Setting border for ToolTipItem.
Every window has its own ToolTipItem.
window | Window as com.spvessel.spacevil.CoreWindow. |
border | Border as com.spvessel.spacevil.Decorations.Border. |
|
static |
Setting text font of ToolTipItem.
Every window has its own ToolTipItem.
window | Window as com.spvessel.spacevil.CoreWindow. |
font | Font as java.awt.Font. |
|
static |
Setting text color of ToolTipItem.
Every window has its own ToolTipItem.
window | Window as com.spvessel.spacevil.CoreWindow. |
color | Text color as java.awt.Color. |
|
static |
Setting shadow for ToolTipItem.
Every window has its own ToolTipItem.
window | Window as com.spvessel.spacevil.CoreWindow. |
shadow | Shadow as com.spvessel.spacevil.Decorations.Shadow. |
|
static |
Setting ToolTipItem shadow visibility.
Every window has its own ToolTipItem.
True: shadow is visible. False: shadow is invisible.
window | Window as com.spvessel.spacevil.CoreWindow. |
value | True: shadow is visible. False: shadow is invisible. |
|
static |
Setting style for ToolTipItem of the specified window.
Every window has its own ToolTipItem.
window | Window as com.spvessel.spacevil.CoreWindow. |
style | Style as com.spvessel.spacevil.Decorations.Style. |
|
static |
Setting waiting time in milliseconds after which ToolTipItem appears.
Every window has its own ToolTipItem.
Default: 500 milliseconds (0.5 seconds).
window | Window as com.spvessel.spacevil.CoreWindow. |
ms | Waiting time in milliseconds. |