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.
|
ItemsRefreshManager is a manager that allows you to add an item of a certain type to the queue for a forced refresh. More...
Static Public Member Functions | |
static boolean | setRefreshShape (InterfaceBaseItem item) |
Adding an IBaseItem implementation to the queue for a forced refresh. More... | |
static boolean | setRefreshText (InterfaceTextContainer item) |
Adding an ITextContainer implementation to the queue for a forced refresh. More... | |
static boolean | setRefreshImage (InterfaceImageItem item) |
Adding an IImageItem implementation to the queue for a forced refresh. More... | |
ItemsRefreshManager is a manager that allows you to add an item of a certain type to the queue for a forced refresh.
It can be use with custom implementation of one of the types: shape, text, image. For example: a Bitmap change in an IImageItem implementation, a shape change in an IBaseItem implementation.
|
static |
Adding an IImageItem implementation to the queue for a forced refresh.
Tips: use this function only if you want to refresh image of an item, InterfaceBaseItem and InterfaceTextContainer are not images.
item | An item as com.spvessel.spacevil.Core.InterfaceImageItem. |
|
static |
Adding an IBaseItem implementation to the queue for a forced refresh.
Tips: use this function only if you want to refresh shape of an item, ITextContainer and IImageItem are not shapes.
item | An item as com.spvessel.spacevil.Core.InterfaceBaseItem. |
|
static |
Adding an ITextContainer implementation to the queue for a forced refresh.
Tips: use this function only if you want to refresh text of an item, InterfaceBaseItem and InterfaceImageItem are not text.
item | An item as com.spvessel.spacevil.Core.InterfaceTextContainer. |