Add exposeGeneratedAppearUpdateFunctions trait #74
This commit is contained in:
parent
6acf83dce3
commit
7e41c9b5df
@ -1,4 +1,4 @@
|
|||||||
// swift-tools-version: 6.0
|
// swift-tools-version: 6.1
|
||||||
//
|
//
|
||||||
// Package.swift
|
// Package.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
@ -22,6 +22,7 @@ let package = Package(
|
|||||||
targets: ["CAdw"]
|
targets: ["CAdw"]
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
|
traits: [.trait(name: "exposeGeneratedAppearUpdateFunctions")],
|
||||||
dependencies: [
|
dependencies: [
|
||||||
.package(url: "https://git.aparoksha.dev/aparoksha/meta", branch: "main"),
|
.package(url: "https://git.aparoksha.dev/aparoksha/meta", branch: "main"),
|
||||||
.package(url: "https://github.com/stephencelis/CSQLite", from: "3.50.4"),
|
.package(url: "https://github.com/stephencelis/CSQLite", from: "3.50.4"),
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// ActionRow.swift
|
// ActionRow.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -24,10 +24,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct ActionRow: AdwaitaWidget {
|
public struct ActionRow: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The widget to activate when the row is activated.
|
/// The widget to activate when the row is activated.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// AspectFrame.swift
|
// AspectFrame.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -16,10 +16,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct AspectFrame: AdwaitaWidget {
|
public struct AspectFrame: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Avatar.swift
|
// Avatar.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -28,10 +28,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Avatar: AdwaitaWidget {
|
public struct Avatar: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The name of an icon to use as a fallback.
|
/// The name of an icon to use as a fallback.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Banner.swift
|
// Banner.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -30,10 +30,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Banner: AdwaitaWidget {
|
public struct Banner: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The label to show on the button.
|
/// The label to show on the button.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Bin.swift
|
// Bin.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -19,10 +19,17 @@ import LevenshteinTransformations
|
|||||||
/// for handling a single child widget.
|
/// for handling a single child widget.
|
||||||
public struct Bin: AdwaitaWidget {
|
public struct Bin: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The child widget of the `AdwBin`.
|
/// The child widget of the `AdwBin`.
|
||||||
var child: Body?
|
var child: Body?
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Box.swift
|
// Box.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -36,10 +36,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Box: AdwaitaWidget {
|
public struct Box: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Button.swift
|
// Button.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -19,10 +19,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Button: AdwaitaWidget {
|
public struct Button: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// ButtonContent.swift
|
// ButtonContent.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -28,10 +28,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct ButtonContent: AdwaitaWidget {
|
public struct ButtonContent: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// Whether the button can be smaller than the natural size of its contents.
|
/// Whether the button can be smaller than the natural size of its contents.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Carousel.swift
|
// Carousel.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -21,10 +21,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Carousel<Element>: AdwaitaWidget where Element: Identifiable {
|
public struct Carousel<Element>: AdwaitaWidget where Element: Identifiable {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// Whether to allow swiping for more than one page at a time.
|
/// Whether to allow swiping for more than one page at a time.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// CenterBox.swift
|
// CenterBox.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -23,10 +23,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct CenterBox: AdwaitaWidget {
|
public struct CenterBox: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// CheckButton.swift
|
// CheckButton.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -22,10 +22,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct CheckButton: AdwaitaWidget {
|
public struct CheckButton: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Clamp.swift
|
// Clamp.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -28,10 +28,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Clamp: AdwaitaWidget {
|
public struct Clamp: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The child widget of the `AdwClamp`.
|
/// The child widget of the `AdwClamp`.
|
||||||
var child: Body?
|
var child: Body?
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// ComboRow.swift
|
// ComboRow.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -32,10 +32,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct ComboRow: AdwaitaWidget {
|
public struct ComboRow: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The widget to activate when the row is activated.
|
/// The widget to activate when the row is activated.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// DropDown.swift
|
// DropDown.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -48,10 +48,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct DropDown: AdwaitaWidget {
|
public struct DropDown: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Entry.swift
|
// Entry.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -48,10 +48,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Entry: AdwaitaWidget {
|
public struct Entry: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// EntryRow.swift
|
// EntryRow.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -29,10 +29,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct EntryRow: AdwaitaWidget {
|
public struct EntryRow: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// Whether activating the embedded entry can activate the default widget.
|
/// Whether activating the embedded entry can activate the default widget.
|
||||||
var activatesDefault: Bool?
|
var activatesDefault: Bool?
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// ExpanderRow.swift
|
// ExpanderRow.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -19,10 +19,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct ExpanderRow: AdwaitaWidget {
|
public struct ExpanderRow: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// Whether expansion is enabled.
|
/// Whether expansion is enabled.
|
||||||
var enableExpansion: Binding<Bool>?
|
var enableExpansion: Binding<Bool>?
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Fixed.swift
|
// Fixed.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -47,10 +47,17 @@ import LevenshteinTransformations
|
|||||||
/// widget. But you should be aware of the tradeoffs.
|
/// widget. But you should be aware of the tradeoffs.
|
||||||
public struct Fixed: AdwaitaWidget {
|
public struct Fixed: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// FlowBox.swift
|
// FlowBox.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -39,10 +39,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct FlowBox<Element>: AdwaitaWidget where Element: Identifiable {
|
public struct FlowBox<Element>: AdwaitaWidget where Element: Identifiable {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// Whether to accept unpaired release events.
|
/// Whether to accept unpaired release events.
|
||||||
var acceptUnpairedRelease: Bool?
|
var acceptUnpairedRelease: Bool?
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// HeaderBar.swift
|
// HeaderBar.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -19,10 +19,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct HeaderBar: AdwaitaWidget {
|
public struct HeaderBar: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The decoration layout for buttons.
|
/// The decoration layout for buttons.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Image.swift
|
// Image.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -41,10 +41,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Image: AdwaitaWidget {
|
public struct Image: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Label.swift
|
// Label.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -17,10 +17,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Label: AdwaitaWidget {
|
public struct Label: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// LevelBar.swift
|
// LevelBar.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -29,10 +29,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct LevelBar: AdwaitaWidget {
|
public struct LevelBar: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// LinkButton.swift
|
// LinkButton.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -29,10 +29,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct LinkButton: AdwaitaWidget {
|
public struct LinkButton: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// ListBox.swift
|
// ListBox.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -36,10 +36,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct ListBox<Element>: AdwaitaWidget where Element: Identifiable {
|
public struct ListBox<Element>: AdwaitaWidget where Element: Identifiable {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// Whether to accept unpaired release events.
|
/// Whether to accept unpaired release events.
|
||||||
var acceptUnpairedRelease: Bool?
|
var acceptUnpairedRelease: Bool?
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Menu.swift
|
// Menu.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -44,10 +44,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Menu: AdwaitaWidget {
|
public struct Menu: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// NavigationView.swift
|
// NavigationView.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -39,10 +39,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct NavigationView: AdwaitaWidget {
|
public struct NavigationView: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// Whether to animate page transitions.
|
/// Whether to animate page transitions.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Overlay.swift
|
// Overlay.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -31,10 +31,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Overlay: AdwaitaWidget {
|
public struct Overlay: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// OverlaySplitView.swift
|
// OverlaySplitView.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -50,10 +50,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct OverlaySplitView: AdwaitaWidget {
|
public struct OverlaySplitView: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// Whether the split view is collapsed.
|
/// Whether the split view is collapsed.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// PasswordEntryRow.swift
|
// PasswordEntryRow.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -23,10 +23,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct PasswordEntryRow: AdwaitaWidget {
|
public struct PasswordEntryRow: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// Whether activating the embedded entry can activate the default widget.
|
/// Whether activating the embedded entry can activate the default widget.
|
||||||
var activatesDefault: Bool?
|
var activatesDefault: Bool?
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Picture.swift
|
// Picture.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -38,10 +38,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Picture: AdwaitaWidget {
|
public struct Picture: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Popover.swift
|
// Popover.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -35,10 +35,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Popover: AdwaitaWidget {
|
public struct Popover: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// PreferencesGroup.swift
|
// PreferencesGroup.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -24,10 +24,17 @@ import LevenshteinTransformations
|
|||||||
/// [`.boxed-list-separate`](style-classes.html
|
/// [`.boxed-list-separate`](style-classes.html
|
||||||
public struct PreferencesGroup: AdwaitaWidget {
|
public struct PreferencesGroup: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The description for this group of preferences.
|
/// The description for this group of preferences.
|
||||||
var description: String?
|
var description: String?
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// PreferencesPage.swift
|
// PreferencesPage.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -18,10 +18,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct PreferencesPage: AdwaitaWidget {
|
public struct PreferencesPage: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The description to be displayed at the top of the page.
|
/// The description to be displayed at the top of the page.
|
||||||
var description: String?
|
var description: String?
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// PreferencesRow.swift
|
// PreferencesRow.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -19,10 +19,17 @@ import LevenshteinTransformations
|
|||||||
/// compose the inputs of the preference around it.
|
/// compose the inputs of the preference around it.
|
||||||
public struct PreferencesRow: AdwaitaWidget {
|
public struct PreferencesRow: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The title of the preference represented by this row.
|
/// The title of the preference represented by this row.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// ProgressBar.swift
|
// ProgressBar.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -36,10 +36,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct ProgressBar: AdwaitaWidget {
|
public struct ProgressBar: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// ScrolledWindow.swift
|
// ScrolledWindow.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -42,10 +42,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct ScrolledWindow: AdwaitaWidget {
|
public struct ScrolledWindow: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// SearchBar.swift
|
// SearchBar.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -30,10 +30,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct SearchBar: AdwaitaWidget {
|
public struct SearchBar: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// SearchEntry.swift
|
// SearchEntry.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -41,10 +41,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct SearchEntry: AdwaitaWidget {
|
public struct SearchEntry: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Separator.swift
|
// Separator.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -19,10 +19,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Separator: AdwaitaWidget {
|
public struct Separator: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// SpinRow.swift
|
// SpinRow.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -23,10 +23,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct SpinRow: AdwaitaWidget {
|
public struct SpinRow: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The widget to activate when the row is activated.
|
/// The widget to activate when the row is activated.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// Spinner.swift
|
// Spinner.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -31,10 +31,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct Spinner: AdwaitaWidget {
|
public struct Spinner: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/// Initialize `Spinner`.
|
/// Initialize `Spinner`.
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// SplitButton.swift
|
// SplitButton.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -21,10 +21,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct SplitButton: AdwaitaWidget {
|
public struct SplitButton: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// Whether the button can be smaller than the natural size of its contents.
|
/// Whether the button can be smaller than the natural size of its contents.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// StatusPage.swift
|
// StatusPage.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -18,10 +18,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct StatusPage: AdwaitaWidget {
|
public struct StatusPage: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The child widget.
|
/// The child widget.
|
||||||
var child: Body?
|
var child: Body?
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// SwitchRow.swift
|
// SwitchRow.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -32,10 +32,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct SwitchRow: AdwaitaWidget {
|
public struct SwitchRow: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The widget to activate when the row is activated.
|
/// The widget to activate when the row is activated.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// ToastOverlay.swift
|
// ToastOverlay.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -24,10 +24,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct ToastOverlay: AdwaitaWidget {
|
public struct ToastOverlay: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The child widget.
|
/// The child widget.
|
||||||
var child: Body?
|
var child: Body?
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// ToggleButton.swift
|
// ToggleButton.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -26,10 +26,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct ToggleButton: AdwaitaWidget {
|
public struct ToggleButton: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The accessible role of the given `GtkAccessible` implementation.
|
/// The accessible role of the given `GtkAccessible` implementation.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// ToggleGroup.swift
|
// ToggleGroup.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -46,10 +46,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct ToggleGroup: AdwaitaWidget {
|
public struct ToggleGroup: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The index of the active toggle.
|
/// The index of the active toggle.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// ToolbarView.swift
|
// ToolbarView.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -33,10 +33,17 @@ import LevenshteinTransformations
|
|||||||
/// [`.toolbar`](style-classes.html
|
/// [`.toolbar`](style-classes.html
|
||||||
public struct ToolbarView: AdwaitaWidget {
|
public struct ToolbarView: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The current bottom bar height.
|
/// The current bottom bar height.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
// WindowTitle.swift
|
// WindowTitle.swift
|
||||||
// Adwaita
|
// Adwaita
|
||||||
//
|
//
|
||||||
// Created by auto-generation on 02.02.26.
|
// Created by auto-generation on 03.02.26.
|
||||||
//
|
//
|
||||||
|
|
||||||
import CAdw
|
import CAdw
|
||||||
@ -18,10 +18,17 @@ import LevenshteinTransformations
|
|||||||
///
|
///
|
||||||
public struct WindowTitle: AdwaitaWidget {
|
public struct WindowTitle: AdwaitaWidget {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
|
|
||||||
/// The subtitle to display.
|
/// The subtitle to display.
|
||||||
///
|
///
|
||||||
|
|||||||
@ -83,10 +83,17 @@ struct Class: ClassLike, Decodable {
|
|||||||
\(doc.docComment(configuration: genConfig))
|
\(doc.docComment(configuration: genConfig))
|
||||||
public struct \(definition) {
|
public struct \(definition) {
|
||||||
|
|
||||||
|
#if exposeGeneratedAppearUpdateFunctions
|
||||||
|
/// Additional update functions for type extensions.
|
||||||
|
public var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
|
/// Additional appear functions for type extensions.
|
||||||
|
public var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#else
|
||||||
/// Additional update functions for type extensions.
|
/// Additional update functions for type extensions.
|
||||||
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
var updateFunctions: [(ViewStorage, WidgetData, Bool) -> Void] = []
|
||||||
/// Additional appear functions for type extensions.
|
/// Additional appear functions for type extensions.
|
||||||
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
var appearFunctions: [(ViewStorage, WidgetData) -> Void] = []
|
||||||
|
#endif
|
||||||
\(generateProperties(config: config, genConfig: genConfig, namespace: namespace, configs: configs))
|
\(generateProperties(config: config, genConfig: genConfig, namespace: namespace, configs: configs))
|
||||||
|
|
||||||
/// Initialize `\(widgetName)`.
|
/// Initialize `\(widgetName)`.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user