-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix function fix nav changelog.md fix broken link appease the rabbit
- Loading branch information
Showing
8 changed files
with
768 additions
and
5 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,119 @@ | ||
wails3 provides an event system that allows for hooking into application and window events | ||
|
||
```go | ||
// Notifcation of application start | ||
application.RegisterApplicationEventHook(events.Common.ApplicationStarted, func(event *application.ApplicationEvent) { | ||
app.Logger.Info("Application started!") | ||
}) | ||
``` | ||
|
||
```go | ||
// Notification of system them change | ||
application.OnApplicationEvent(events.Common.ThemeChanged, func(event *application.ApplicationEvent) { | ||
app.Logger.Info("System theme changed!") | ||
if event.Context().IsDarkMode() { | ||
app.Logger.Info("System is now using dark mode!") | ||
} else { | ||
app.Logger.Info("System is now using light mode!") | ||
} | ||
}) | ||
``` | ||
|
||
```go | ||
// Disable window closing by canceling the event | ||
window.RegisterHook(events.Common.WindowClosing, func(e *application.WindowEvent) { | ||
app.Logger.Info("Window 1 Closing? Nope! Not closing!") | ||
e.Cancel() | ||
}) | ||
``` | ||
|
||
```go | ||
// Notification of window focus | ||
window.OnWindowEvent(events.Common.WindowFocus, func(e *application.WindowEvent) { | ||
app.Logger.Info("[ApplicationEvent] Window focus!") | ||
}) | ||
``` | ||
|
||
### Application Events | ||
|
||
Application events are hookable events that can be registered with `application.RegisterApplicationEventHook()` | ||
and `application.OnApplicationEvent()`. These events are based on `events.ApplicationEventType`. | ||
|
||
`events.Common.ApplicationStarted` | ||
: Triggered when the application starts | ||
|
||
`events.Common.ThemeChanged` | ||
: Triggered when the application theme changes | ||
|
||
|
||
### Window Events | ||
|
||
`events.Common.WindowMaximised` | ||
: Triggered when the window is maximised | ||
|
||
`events.Common.WindowUnmaximised` | ||
: Triggered when the window is unmaximised | ||
|
||
`events.Common.WindowMinimised` | ||
: Triggered when the window is minimised | ||
|
||
`events.Common.WindowUnminimised` | ||
: Triggered when the window is unminimised | ||
|
||
`events.Common.WindowFullscreen` | ||
: Triggered when the window is set to fullscreen | ||
|
||
`events.Common.WindowUnfullscreen` | ||
: Triggered when the window is unfullscreened | ||
|
||
`events.Common.WindowRestored` | ||
: Triggered when the window is restored | ||
|
||
`events.Common.WindowClosing` | ||
: Triggered before the window closes | ||
|
||
`events.Common.WindowZoom` | ||
: Triggered when the window is zoomed | ||
|
||
`events.Common.WindowZoomOut` | ||
: Triggered when the window is zoomed out | ||
|
||
`events.Common.WindowZoomIn` | ||
: Triggered when the window is zoomed in | ||
|
||
`events.Common.WindowZoomReset` | ||
: Triggered when the window zoom is reset | ||
|
||
`events.Common.WindowFocus` | ||
: Triggered when the window gains focus | ||
|
||
`events.Common.WindowLostFocus` | ||
: Triggered when the window loses focus | ||
|
||
`events.Common.WindowShow` | ||
: Triggered when the window is shown | ||
|
||
`events.Common.WindowHide` | ||
: Triggered when the window is hidden | ||
|
||
`events.Common.WindowDPIChanged` | ||
: Triggered when the window DPI changes | ||
|
||
`events.Common.WindowFilesDropped` | ||
: Triggered when files are dropped on the window | ||
|
||
`events.Common.WindowRuntimeReady` | ||
: Triggered when the window runtime is ready | ||
|
||
`events.Common.WindowDidMove` | ||
: Triggered when the window is moved | ||
|
||
`events.Common.WindowDidResize` | ||
:Triggered when the window is resized | ||
|
||
### OS Specific Events | ||
--8<-- | ||
./docs/en/API/events_linux.md | ||
./docs/en/API/events_windows.md | ||
./docs/en/API/events_mac.md | ||
--8<-- |
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,131 @@ | ||
# Events | ||
|
||
## Event Hooks | ||
|
||
--8<-- | ||
./docs/en/API/event_hooks.md | ||
--8<-- | ||
|
||
## Custom Events | ||
You can create your own custom events that can be emitted and received on both the frontend and backend. | ||
Events are able to emitted at both the application and the window level. The receiver of the event gets data of where the | ||
event was emitted from along with the data that was sent with the event. Events can be cancelled by the receiver. | ||
|
||
=== "Go" | ||
```go | ||
app.OnEvent("event1", func(e *application.CustomEvent) { | ||
app.Logger.Info("[Go] CustomEvent received", "name", e.Name, "data", e.Data, "sender", e.Sender, "cancelled", e.Cancelled) | ||
app.Logger.Info("[Go]", e.Data[0].(string)) // Logs "Hello from JS" to the terminal | ||
}) | ||
|
||
window.EmitEvent("event2", "Hello from Go") | ||
``` | ||
=== "JS" | ||
```javascript | ||
wails.Events.Emit("event1", "Hello from JS") | ||
|
||
wails.Events.On("event2", function(event) { | ||
console.log("[JS] CustomEvent received", event) | ||
console.log(event.data) // prints "Hello from Go" to the webview console | ||
}) | ||
|
||
``` | ||
|
||
### Emitting Events | ||
|
||
`application.EmitEvent(name string, data ...any)` | ||
: Emits an event from the application instance | ||
|
||
`window.EmitEvent(name string, data ...any)` | ||
: Emits an event from the window instance | ||
|
||
`wails.Events.Emit(event:wails.Events.EventData)` | ||
: Emits an event from the frontend sending an object with `name` and `data` properties or the typescript type WailsEvent | ||
|
||
### Receiving Events | ||
Events can be received on the application instance and the frontend with a couple options of how | ||
you chose to receive them. You can register a single event listener that will trigger every time the event is emitted | ||
or you can register an event listener that will only trigger a specific number of times. | ||
|
||
Golang | ||
|
||
`application.OnEvent(name string, handler func(data ...any))` | ||
: Registers an event on the application instance this will trigger every time the event is emitted | ||
|
||
`application.OnMultipleEvent(name string, handler func(data ...any), count int)` | ||
: Registers an event on the application instance this will trigger every time the event is emitted up to the count specified | ||
|
||
Frontend | ||
|
||
`wails.Events.On(name: string, callback: ()=>void)`, | ||
: Registers an event on the frontend, this function returns a function that can be called to remove the event listener | ||
|
||
`wails.Events.Once(name: string, callback: ()=>void)`, | ||
: Registers an event on the frontend that will only be called once, this function returns a function that can be called to remove the event listener | ||
|
||
`wails.Events.OnMultiple(name: string, callback: ()=>void, count: number)`, | ||
: Registers an event on the frontend that will only be called `count` times, this function returns a function that can be called to remove the event listener | ||
|
||
### Removing Events | ||
There are a few ways to remove events that are registered. All of the registration functions return a function that can be called to remove the event listeneer | ||
in the frontend. There are additional functions provided to help remove events as well. | ||
|
||
Golang | ||
|
||
`application.OffEvent(name string, ...additionalNames string)` | ||
: Removes an event listener with the specificed name | ||
|
||
`application.ResetEvents()` | ||
: Removes all registered events and hooks | ||
|
||
Frontend | ||
|
||
`wails.Events.OffAll()` | ||
: Removes all registered events | ||
|
||
`wails.Events.Off(name: string)` | ||
: Removes an event listener with the specified name | ||
|
||
|
||
## Event Types | ||
|
||
### ApplicationEvent | ||
Returned when an application hook event is triggered. The event can be cancelled by calling the `Cancel()` method on the event. | ||
```go | ||
type ApplicationEvent struct { | ||
Id uint | ||
ctx *ApplicationEventContext | ||
Cancelled bool | ||
} | ||
|
||
// Cancel the event | ||
func (a *ApplicationEvent) Cancel() {} | ||
``` | ||
|
||
### WindowEvent | ||
Returned when a window hook event is triggered. The event can be cancelled by calling the `Cancel()` method on the event. | ||
```go | ||
type WindowEvent struct { | ||
ctx *WindowEventContext | ||
Cancelled bool | ||
} | ||
|
||
// Cancel the event | ||
func (w *WindowEvent) Cancel() {} | ||
``` | ||
|
||
### CustomEvent | ||
|
||
CustomEvent is returned when an event is being recieved it includes the name of the event, the data that was sent with the event, | ||
the sender of the event, application or a specific window. The event can be cancelled by calling the `Cancel()` method on the event. | ||
```go | ||
type CustomEvent struct { | ||
Name string `json:"name"` | ||
Data any `json:"data"` | ||
Sender string `json:"sender"` | ||
Cancelled bool | ||
} | ||
|
||
// Cancel the event | ||
func (c *CustomEvent) Cancel() {} | ||
``` |
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,30 @@ | ||
#### Linux Events | ||
|
||
##### Application Events | ||
|
||
`events.Linux.ApplicationStartup` | ||
: Triggered when the application starts | ||
|
||
`events.Linux.SystemThemeChanged` | ||
: Triggered when the system theme changes | ||
|
||
##### Window Events | ||
|
||
`events.Linux.WindowLoadChanged` | ||
: Triggered when the window load changes | ||
|
||
`events.Linux.WindowDeleteEvent` | ||
: Triggered when the window is deleted | ||
|
||
`events.Linux.WindowDidMove` | ||
: Triggered when the window is moved | ||
|
||
`events.Linux.WindowDidResize` | ||
: Triggered when the window is resized | ||
|
||
`events.Linux.WindowFocusIn` | ||
: Triggered when the window gains focus | ||
|
||
`events.Linux.WindowFocusOut` | ||
: Triggered when the window loses focus | ||
|
Oops, something went wrong.