-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
47ca906
commit c198160
Showing
3 changed files
with
82 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# GObject Reference | ||
|
||
The GObject library contains GLib's type system, including the `GObject` type, subclasses | ||
of which can include properties and signals. | ||
|
||
## Properties | ||
|
||
Properties of `GObject` are mapped onto Julia properties. | ||
|
||
```@docs | ||
Gtk4.GLib.set_gtk_property! | ||
Gtk4.GLib.get_gtk_property | ||
Gtk4.GLib.bind_property | ||
Gtk4.GLib.unbind_property | ||
Gtk4.GLib.setproperties! | ||
``` | ||
|
||
These are functions that are intended to be used in the REPL to look up | ||
information about `GObject`s and their properties and signals. | ||
|
||
```@docs | ||
Gtk4.GLib.propertyinfo | ||
Gtk4.GLib.gtk_propertynames | ||
``` | ||
|
||
## Signals | ||
|
||
```@docs | ||
Gtk4.GLib.signal_handler_is_connected | ||
Gtk4.GLib.signal_handler_disconnect | ||
Gtk4.GLib.signal_handler_block | ||
Gtk4.GLib.signal_handler_unblock | ||
Gtk4.GLib.signal_emit | ||
Gtk4.GLib.waitforsignal | ||
Gtk4.GLib.on_notify | ||
Gtk4.GLib.signalnames | ||
Gtk4.GLib.signal_return_type | ||
Gtk4.GLib.signal_argument_types | ||
``` | ||
|
||
## GObject type system | ||
|
||
These functions are not typically needed by most users. | ||
|
||
```@docs | ||
Gtk4.GLib.g_type | ||
Gtk4.GLib.find_leaf_type | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Gio Reference | ||
|
||
The Gio library contains functionality for I/O (most of which overlaps functionality in | ||
the Julia Base library) and machinery for applications, such as actions and menus. | ||
|
||
## Actions and action groups | ||
```@docs | ||
Gtk4.GLib.GSimpleAction(::AbstractString) | ||
Gtk4.GLib.add_action | ||
Gtk4.GLib.add_stateful_action | ||
Gtk4.GLib.set_state | ||
``` | ||
|
||
## Menus | ||
|
||
```@docs | ||
Gtk4.GLib.GMenuItem(::Any) | ||
``` | ||
|
||
## GApplication | ||
|
||
```@docs | ||
Gtk4.GLib.GApplication(::Any,::Any) | ||
Gtk4.GLib.run | ||
``` | ||
|
||
## Miscellaneous | ||
|
||
```@docs | ||
Gtk4.GLib.cancel_after_delay | ||
``` |