abstract class NativeInterface : AutoCloseable
Base class for classes that have native components.
NativeInterface()
Base class for classes that have native components. |
abstract val handle: CPointer
Native pointer |
fun dispose(): Unit
Disposes this object, usually same action as close |
object SKryptonApp : NativeInterface
A singleton app instance for this library and is the main entry point for any program that wants to use any of the SKrypton APIs. This object is in charge of initializing the native components and managing it. |
|
abstract class SKryptonEvent : NativeInterface
Class that represents an event originating from SKrypton. |
|
class SKryptonWebProfile : NativeInterface
A class representing a profile used by the backing web engine. |
|
class SKryptonWebSettings : NativeInterface
A class representing settings used by the backing web engine. |
|
abstract class SKryptonWidget : NativeInterface
A class representing a user interface element. |