Package ch.bailu.gtk.gobject
Klasse TypeModule
java.lang.Object
ch.bailu.gtk.type.Type
ch.bailu.gtk.type.Pointer
ch.bailu.gtk.gobject.Object
ch.bailu.gtk.type.PropertyHolder
ch.bailu.gtk.gobject.TypeModule
- Alle implementierten Schnittstellen:
PointerInterface
- Bekannte direkte Unterklassen:
IOModule
`GTypeModule` provides a simple implementation of the `GTypePlugin`
interface.
The model of `GTypeModule` is a dynamically loaded module which
implements some number of types and interface implementations.
When the module is loaded, it registers its types and interfaces
using [method@GObject.TypeModule.register_type] and
[method@GObject.TypeModule.add_interface].
As long as any instances of these types and interface implementations
are in use, the module is kept loaded. When the types and interfaces
are gone, the module may be unloaded. If the types and interfaces
become used again, the module will be reloaded. Note that the last
reference cannot be released from within the module code, since that
would lead to the caller's code being unloaded before `g_object_unref()`
returns to it.
Keeping track of whether the module should be loaded or not is done by
using a use count - it starts at zero, and whenever it is greater than
zero, the module is loaded. The use count is maintained internally by
the type system, but also can be explicitly controlled by
[method@GObject.TypeModule.use] and [method@GObject.TypeModule.unuse].
Typically, when loading a module for the first type, `g_type_module_use()`
will be used to load it so that it can initialize its types. At some later
point, when the module no longer needs to be loaded except for the type
implementations it contains, `g_type_module_unuse()` is called.
`GTypeModule` does not actually provide any implementation of module
loading and unloading. To create a particular module type you must
derive from `GTypeModule` and implement the load and unload functions
in `GTypeModuleClass`.
interface.
The model of `GTypeModule` is a dynamically loaded module which
implements some number of types and interface implementations.
When the module is loaded, it registers its types and interfaces
using [method@GObject.TypeModule.register_type] and
[method@GObject.TypeModule.add_interface].
As long as any instances of these types and interface implementations
are in use, the module is kept loaded. When the types and interfaces
are gone, the module may be unloaded. If the types and interfaces
become used again, the module will be reloaded. Note that the last
reference cannot be released from within the module code, since that
would lead to the caller's code being unloaded before `g_object_unref()`
returns to it.
Keeping track of whether the module should be loaded or not is done by
using a use count - it starts at zero, and whenever it is greater than
zero, the module is loaded. The use count is maintained internally by
the type system, but also can be explicitly controlled by
[method@GObject.TypeModule.use] and [method@GObject.TypeModule.unuse].
Typically, when loading a module for the first type, `g_type_module_use()`
will be used to load it so that it can initialize its types. At some later
point, when the module no longer needs to be loaded except for the type
implementations it contains, `g_type_module_unuse()` is called.
`GTypeModule` does not actually provide any implementation of module
loading and unloading. To create a particular module type you must
derive from `GTypeModule` and implement the load and unload functions
in `GTypeModuleClass`.
-
Verschachtelte Klassen - Übersicht
Von Klasse geerbte verschachtelte Klassen/Schnittstellen ch.bailu.gtk.gobject.Object
Object.OnBindingTransformFunc, Object.OnDestroyNotify, Object.OnDuplicateFunc, Object.OnNotify, Object.OnToggleNotify, Object.OnWeakNotify
-
Feldübersicht
Von Klasse geerbte Felder ch.bailu.gtk.gobject.Object
SIGNAL_ON_NOTIFY
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoid
addInterface
(long instance_type, long interface_type, InterfaceInfo interface_info) Registers an additional interface for a type, whose interface lives
in the given type plugin.Implements interfaceTypePlugin
.static ClassHandler
static int
static long
static TypeSystem.TypeSize
static long
static TypeSystem.TypeSize
long
registerEnum
(Str name, EnumValue const_static_values) Looks up or registers an enumeration that is implemented with a particular
type plugin.long
registerEnum
(String name, EnumValue const_static_values) Looks up or registers an enumeration that is implemented with a particular
type plugin.long
registerFlags
(Str name, FlagsValue const_static_values) Looks up or registers a flags type that is implemented with a particular
type plugin.long
registerFlags
(String name, FlagsValue const_static_values) Looks up or registers a flags type that is implemented with a particular
type plugin.long
registerType
(long parent_type, Str type_name, TypeInfo type_info, int flags) Looks up or registers a type that is implemented with a particular
type plugin.long
registerType
(long parent_type, String type_name, TypeInfo type_info, int flags) Looks up or registers a type that is implemented with a particular
type plugin.void
Sets the name for a #GTypeModulevoid
Sets the name for a #GTypeModulevoid
unuse()
Decreases the use count of a #GTypeModule by one.boolean
use()
Increases the use count of a #GTypeModule by one.Von Klasse geerbte Methoden ch.bailu.gtk.type.PropertyHolder
getBooleanProperty, getIntProperty, getObjectProperty, getStringProperty, getStrProperty, setBooleanProperty, setIntProperty, setObjectProperty, setStringProperty, setStrProperty
Von Klasse geerbte Methoden ch.bailu.gtk.gobject.Object
addToggleRef, bindProperty, bindProperty, bindPropertyFull, bindPropertyFull, bindPropertyWithClosures, bindPropertyWithClosures, compatControl, connect, connect, disconnect, disconnect, dupData, dupData, dupQdata, forceFloating, freezeNotify, get, get, getData, getData, getProperty, getProperty, getQdata, interfaceFindProperty, interfaceInstallProperty, isFloating, notify, notify, notifyByPspec, onNotify, ref, refSink, removeToggleRef, replaceData, replaceData, replaceQdata, runDispose, set, set, setData, setData, setDataFull, setDataFull, setProperty, setProperty, setQdata, setQdataFull, stealData, stealData, stealQdata, takeRef, thawNotify, unref, watchClosure, weakRef, weakUnref
Von Klasse geerbte Methoden ch.bailu.gtk.type.Pointer
asCPointer, cast, connectSignal, disconnectSignals, disconnectSignals, equals, hashCode, throwIfNull, throwNullPointerException, toString, unregisterCallbacks, unregisterCallbacks
Von Klasse geerbte Methoden ch.bailu.gtk.type.Type
asCPointer, asCPointer, asCPointerNotNull, asJnaPointer, asJnaPointer, asPointer, asPointer, cast, cast, throwIfNull
Von Klasse geerbte Methoden java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Von Schnittstelle geerbte Methoden ch.bailu.gtk.type.PointerInterface
asCPointerNotNull, asJnaPointer, asPointer, isNotNull, isNull
-
Konstruktordetails
-
TypeModule
-
-
Methodendetails
-
getClassHandler
-
addInterface
public void addInterface(long instance_type, long interface_type, @Nonnull InterfaceInfo interface_info) Registers an additional interface for a type, whose interface lives
in the given type plugin. If the interface was already registered
for the type in this plugin, nothing will be done.
As long as any instances of the type exist, the type plugin will
not be unloaded.
Since 2.56 if @module is %NULL this will call g_type_add_interface_static()
instead. This can be used when making a static build of the module.- Parameter:
instance_type
- type to which to add the interface.interface_type
- interface type to addinterface_info
- type information structure
-
registerEnum
Looks up or registers an enumeration that is implemented with a particular
type plugin. If a type with name @type_name was previously registered,
the #GType identifier for the type is returned, otherwise the type
is newly registered, and the resulting #GType identifier returned.
As long as any instances of the type exist, the type plugin will
not be unloaded.
Since 2.56 if @module is %NULL this will call g_type_register_static()
instead. This can be used when making a static build of the module.- Parameter:
name
- name for the typeconst_static_values
- an array of #GEnumValue structs for the possible enumeration values. The array is terminated by a struct with all members being 0.- Gibt zurück:
- the new or existing type ID
-
registerEnum
Looks up or registers an enumeration that is implemented with a particular
type plugin. If a type with name @type_name was previously registered,
the #GType identifier for the type is returned, otherwise the type
is newly registered, and the resulting #GType identifier returned.
As long as any instances of the type exist, the type plugin will
not be unloaded.
Since 2.56 if @module is %NULL this will call g_type_register_static()
instead. This can be used when making a static build of the module.- Parameter:
name
- name for the typeconst_static_values
- an array of #GEnumValue structs for the possible enumeration values. The array is terminated by a struct with all members being 0.- Gibt zurück:
- the new or existing type ID
-
registerFlags
Looks up or registers a flags type that is implemented with a particular
type plugin. If a type with name @type_name was previously registered,
the #GType identifier for the type is returned, otherwise the type
is newly registered, and the resulting #GType identifier returned.
As long as any instances of the type exist, the type plugin will
not be unloaded.
Since 2.56 if @module is %NULL this will call g_type_register_static()
instead. This can be used when making a static build of the module.- Parameter:
name
- name for the typeconst_static_values
- an array of #GFlagsValue structs for the possible flags values. The array is terminated by a struct with all members being 0.- Gibt zurück:
- the new or existing type ID
-
registerFlags
Looks up or registers a flags type that is implemented with a particular
type plugin. If a type with name @type_name was previously registered,
the #GType identifier for the type is returned, otherwise the type
is newly registered, and the resulting #GType identifier returned.
As long as any instances of the type exist, the type plugin will
not be unloaded.
Since 2.56 if @module is %NULL this will call g_type_register_static()
instead. This can be used when making a static build of the module.- Parameter:
name
- name for the typeconst_static_values
- an array of #GFlagsValue structs for the possible flags values. The array is terminated by a struct with all members being 0.- Gibt zurück:
- the new or existing type ID
-
registerType
public long registerType(long parent_type, @Nonnull Str type_name, @Nonnull TypeInfo type_info, int flags) Looks up or registers a type that is implemented with a particular
type plugin. If a type with name @type_name was previously registered,
the #GType identifier for the type is returned, otherwise the type
is newly registered, and the resulting #GType identifier returned.
When reregistering a type (typically because a module is unloaded
then reloaded, and reinitialized), @module and @parent_type must
be the same as they were previously.
As long as any instances of the type exist, the type plugin will
not be unloaded.
Since 2.56 if @module is %NULL this will call g_type_register_static()
instead. This can be used when making a static build of the module.- Parameter:
parent_type
- the type for the parent classtype_name
- name for the typetype_info
- type information structureflags
- flags field providing details about the type- Gibt zurück:
- the new or existing type ID
-
registerType
public long registerType(long parent_type, String type_name, @Nonnull TypeInfo type_info, int flags) Looks up or registers a type that is implemented with a particular
type plugin. If a type with name @type_name was previously registered,
the #GType identifier for the type is returned, otherwise the type
is newly registered, and the resulting #GType identifier returned.
When reregistering a type (typically because a module is unloaded
then reloaded, and reinitialized), @module and @parent_type must
be the same as they were previously.
As long as any instances of the type exist, the type plugin will
not be unloaded.
Since 2.56 if @module is %NULL this will call g_type_register_static()
instead. This can be used when making a static build of the module.- Parameter:
parent_type
- the type for the parent classtype_name
- name for the typetype_info
- type information structureflags
- flags field providing details about the type- Gibt zurück:
- the new or existing type ID
-
setName
Sets the name for a #GTypeModule- Parameter:
name
- a human-readable name to use in error messages.
-
setName
Sets the name for a #GTypeModule- Parameter:
name
- a human-readable name to use in error messages.
-
unuse
public void unuse()Decreases the use count of a #GTypeModule by one. If the
result is zero, the module will be unloaded. (However, the
#GTypeModule will not be freed, and types associated with the
#GTypeModule are not unregistered. Once a #GTypeModule is
initialized, it must exist forever.) -
use
public boolean use()Increases the use count of a #GTypeModule by one. If the
use count was zero before, the plugin will be loaded.
If loading the plugin fails, the use count is reset to
its prior value.- Gibt zurück:
- %FALSE if the plugin needed to be loaded and loading the plugin failed.
-
asTypePlugin
Implements interfaceTypePlugin
. Call this to get access to interface functions.- Gibt zurück:
TypePlugin
-
getTypeID
public static long getTypeID() -
getParentTypeID
public static long getParentTypeID() -
getTypeSize
-
getParentTypeSize
-
getInstanceSize
public static int getInstanceSize()
-