Skip to content

Commit

Permalink
Add support for GtkAspectFrame
Browse files Browse the repository at this point in the history
  • Loading branch information
david-swift committed Jul 19, 2024
1 parent 46d4fc1 commit e9e4cf0
Show file tree
Hide file tree
Showing 3 changed files with 173 additions and 1 deletion.
160 changes: 160 additions & 0 deletions Sources/Adwaita/View/Generated/AspectFrame.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,160 @@
//
// AspectFrame.swift
// Adwaita
//
// Created by auto-generation on 19.07.24.
//

import CAdw
import LevenshteinTransformations

/// `GtkAspectFrame` preserves the aspect ratio of its child.
///
/// The frame can respect the aspect ratio of the child widget,
/// or use its own aspect ratio.
///
/// # CSS nodes
///
/// `GtkAspectFrame` uses a CSS node with name `frame`.
///
/// # Accessibility
///
/// Until GTK 4.10, `GtkAspectFrame` used the `GTK_ACCESSIBLE_ROLE_GROUP` role.
///
/// Starting from GTK 4.12, `GtkAspectFrame` uses the `GTK_ACCESSIBLE_ROLE_GENERIC` role.
public struct AspectFrame: Widget {

/// Additional update functions for type extensions.
var updateFunctions: [(ViewStorage, [(View) -> View], Bool) -> Void] = []
/// Additional appear functions for type extensions.
var appearFunctions: [(ViewStorage, [(View) -> View]) -> Void] = []

/// The accessible role of the given `GtkAccessible` implementation.
///
/// The accessible role cannot be changed once set.
var accessibleRole: String?
/// The child widget.
var child: (() -> Body)?
/// Whether the `GtkAspectFrame` should use the aspect ratio of its child.
var obeyChild: Bool?
/// The aspect ratio to be used by the `GtkAspectFrame`.
///
/// This property is only used if
/// [[email protected]:obey-child] is set to %FALSE.
var ratio: Float
/// The horizontal alignment of the child.
var xalign: Float?
/// The vertical alignment of the child.
var yalign: Float?
/// The application.
var app: GTUIApp?
/// The window.
var window: GTUIApplicationWindow?

/// Initialize `AspectFrame`.
public init(ratio: Float) {
self.ratio = ratio
}

/// Get the widget's view storage.
/// - Parameter modifiers: The view modifiers.
/// - Returns: The view storage.
public func container(modifiers: [(View) -> View]) -> ViewStorage {
let storage = ViewStorage(gtk_aspect_frame_new(0.5, 0.5, ratio, 0)?.opaque())
for function in appearFunctions {
function(storage, modifiers)
}
update(storage, modifiers: modifiers, updateProperties: true)
if let childStorage = child?().widget(modifiers: modifiers).storage(modifiers: modifiers) {
storage.content["child"] = [childStorage]
gtk_aspect_frame_set_child(storage.pointer, childStorage.pointer?.cast())
}

return storage
}

/// Update the widget's view storage.
/// - Parameters:
/// - storage: The view storage.
/// - modifiers: The view modifiers.
/// - updateProperties: Whether to update the view's properties.
public func update(_ storage: ViewStorage, modifiers: [(View) -> View], updateProperties: Bool) {
storage.modify { widget in

if let widget = storage.content["child"]?.first {
child?().widget(modifiers: modifiers).update(widget, modifiers: modifiers, updateProperties: updateProperties)
}
if let obeyChild, updateProperties {
gtk_aspect_frame_set_obey_child(widget, obeyChild.cBool)
}
if updateProperties {
gtk_aspect_frame_set_ratio(widget, ratio)
}
if let xalign, updateProperties {
gtk_aspect_frame_set_xalign(widget, xalign)
}
if let yalign, updateProperties {
gtk_aspect_frame_set_yalign(widget, yalign)
}


}
for function in updateFunctions {
function(storage, modifiers, updateProperties)
}
}

/// The accessible role of the given `GtkAccessible` implementation.
///
/// The accessible role cannot be changed once set.
public func accessibleRole(_ accessibleRole: String?) -> Self {
var newSelf = self
newSelf.accessibleRole = accessibleRole

return newSelf
}

/// The child widget.
public func child(@ViewBuilder _ child: @escaping (() -> Body)) -> Self {
var newSelf = self
newSelf.child = child

return newSelf
}

/// Whether the `GtkAspectFrame` should use the aspect ratio of its child.
public func obeyChild(_ obeyChild: Bool? = true) -> Self {
var newSelf = self
newSelf.obeyChild = obeyChild

return newSelf
}

/// The aspect ratio to be used by the `GtkAspectFrame`.
///
/// This property is only used if
/// [[email protected]:obey-child] is set to %FALSE.
public func ratio(_ ratio: Float) -> Self {
var newSelf = self
newSelf.ratio = ratio

return newSelf
}

/// The horizontal alignment of the child.
public func xalign(_ xalign: Float?) -> Self {
var newSelf = self
newSelf.xalign = xalign

return newSelf
}

/// The vertical alignment of the child.
public func yalign(_ yalign: Float?) -> Self {
var newSelf = self
newSelf.yalign = yalign

return newSelf
}

}
7 changes: 7 additions & 0 deletions Sources/Adwaita/View/Modifiers/View+.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@

extension View {

/// Set the view's aspect ratio.
/// - Parameter aspectRatio: The aspect ratio.
public func aspectRatio(_ aspectRatio: Float) -> AspectFrame {
.init(ratio: aspectRatio)
.child { self }
}

/// Wrap the view in a vertical stack and center vertically.
/// - Returns: The view.
public func verticalCenter() -> View {
Expand Down
7 changes: 6 additions & 1 deletion Sources/Generation/GenerationConfiguration.swift
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,12 @@ struct GenerationConfiguration {
excludeProperties: ["input-hints", "input-purpose"]
),
.init(class: "SearchBar"),
.init(class: "Picture", excludeProperties: ["file", "paintable"])
.init(class: "Picture", excludeProperties: ["file", "paintable"]),
.init(
class: "AspectFrame",
initializer: "gtk_aspect_frame_new(0.5, 0.5, ratio, 0)",
requiredProperties: ["ratio"]
)
]

/// The unshortening map.
Expand Down

0 comments on commit e9e4cf0

Please sign in to comment.