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.
|
An interface that defines items that can receive common keyboard shortcuts (copy, paste, cut and etc.) and describes its attributes. More...
Inherited by com.spvessel.spacevil.TextView.
Public Member Functions | |
void | pasteText (String pasteStr) |
Method for pasting text. More... | |
String | getSelectedText () |
Method for getting selected text. More... | |
String | cutText () |
Method for cutting selected text. More... | |
void | undo () |
Method for undo last change. More... | |
void | redo () |
Method for redo last undo action. More... | |
void | selectAll () |
Method for selecting all text in the item. More... | |
An interface that defines items that can receive common keyboard shortcuts (copy, paste, cut and etc.) and describes its attributes.
String com.spvessel.spacevil.Core.InterfaceTextShortcuts.cutText | ( | ) |
Method for cutting selected text.
Implemented in com.spvessel.spacevil.TextView.
String com.spvessel.spacevil.Core.InterfaceTextShortcuts.getSelectedText | ( | ) |
Method for getting selected text.
Implemented in com.spvessel.spacevil.TextView.
void com.spvessel.spacevil.Core.InterfaceTextShortcuts.pasteText | ( | String | pasteStr | ) |
Method for pasting text.
pasteStr | Text for pasting. |
Implemented in com.spvessel.spacevil.TextView.
void com.spvessel.spacevil.Core.InterfaceTextShortcuts.redo | ( | ) |
Method for redo last undo action.
Implemented in com.spvessel.spacevil.TextView.
void com.spvessel.spacevil.Core.InterfaceTextShortcuts.selectAll | ( | ) |
Method for selecting all text in the item.
Implemented in com.spvessel.spacevil.TextView.
void com.spvessel.spacevil.Core.InterfaceTextShortcuts.undo | ( | ) |
Method for undo last change.
Implemented in com.spvessel.spacevil.TextView.