├── .gitattributes ├── .github ├── FUNDING.yml ├── actions │ ├── compile-docs │ │ └── action.yml │ └── extract-symbol-graphs │ │ └── action.yml └── workflows │ ├── build-test-and-docs.yml │ └── swiftlint.yml ├── .gitignore ├── .spi.yml ├── .swift-format ├── .swiftlint.yml ├── Benchmarks └── LayoutPerformanceBenchmark │ ├── GridView.swift │ ├── LayoutPerformanceBenchmark.swift │ └── ScrollableMessageListView.swift ├── CONTRIBUTING.md ├── Dockerfile ├── Examples ├── Bundler.toml ├── Package.resolved ├── Package.swift └── Sources │ ├── ControlsExample │ └── ControlsApp.swift │ ├── CounterExample │ └── CounterApp.swift │ ├── GreetingGeneratorExample │ └── GreetingGeneratorApp.swift │ ├── HoverExample │ └── HoverApp.swift │ ├── NavigationExample │ └── NavigationApp.swift │ ├── NotesExample │ ├── ContentView.swift │ └── NotesApp.swift │ ├── PathsExample │ └── PathsApp.swift │ ├── RandomNumberGeneratorExample │ └── RandomNumberGeneratorApp.swift │ ├── SplitExample │ └── SplitApp.swift │ ├── SpreadsheetExample │ └── SpreadsheetApp.swift │ ├── StressTestExample │ └── StressTestApp.swift │ ├── WebViewExample │ └── WebViewApp.swift │ └── WindowingExample │ ├── Banner.png │ └── WindowingApp.swift ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── AppKitBackend │ ├── AppKitBackend.swift │ └── NSViewRepresentable.swift ├── CGtk │ ├── header.h │ └── module.modulemap ├── CGtk3 │ ├── header.h │ └── module.modulemap ├── CursesBackend │ └── CursesBackend.swift ├── DefaultBackend │ └── DefaultBackend.swift ├── DummyBackend │ └── DummyBackend.swift ├── Gtk │ ├── Application.swift │ ├── Callbacks │ │ ├── Cancellable.swift │ │ ├── SignalBox.swift │ │ └── Signals.swift │ ├── Datatypes │ │ ├── Color.swift │ │ └── Size.swift │ ├── Extensions │ │ ├── Conversions.swift │ │ ├── UnsafePointerGChar+ToString.swift │ │ └── Widget+CastedPointer.swift │ ├── GObject.swift │ ├── Generated │ │ ├── Accessible.swift │ │ ├── AccessibleAutocomplete.swift │ │ ├── AccessibleInvalidState.swift │ │ ├── AccessibleProperty.swift │ │ ├── AccessibleRelation.swift │ │ ├── AccessibleRole.swift │ │ ├── AccessibleSort.swift │ │ ├── AccessibleState.swift │ │ ├── AccessibleTristate.swift │ │ ├── Actionable.swift │ │ ├── Align.swift │ │ ├── AppChooser.swift │ │ ├── ArrowType.swift │ │ ├── AssistantPageType.swift │ │ ├── BaselinePosition.swift │ │ ├── BorderStyle.swift │ │ ├── Buildable.swift │ │ ├── BuilderError.swift │ │ ├── BuilderScope.swift │ │ ├── Button.swift │ │ ├── ButtonsType.swift │ │ ├── CellEditable.swift │ │ ├── CellLayout.swift │ │ ├── CellRendererAccelMode.swift │ │ ├── CellRendererMode.swift │ │ ├── CheckButton.swift │ │ ├── ConstraintAttribute.swift │ │ ├── ConstraintRelation.swift │ │ ├── ConstraintStrength.swift │ │ ├── ConstraintTarget.swift │ │ ├── ConstraintVflParserError.swift │ │ ├── CornerType.swift │ │ ├── CssParserError.swift │ │ ├── CssParserWarning.swift │ │ ├── DeleteType.swift │ │ ├── DirectionType.swift │ │ ├── DrawingArea.swift │ │ ├── DropDown.swift │ │ ├── Editable.swift │ │ ├── EditableProperties.swift │ │ ├── Entry.swift │ │ ├── EntryIconPosition.swift │ │ ├── EventController.swift │ │ ├── EventControllerKey.swift │ │ ├── EventControllerMotion.swift │ │ ├── EventSequenceState.swift │ │ ├── FileChooser.swift │ │ ├── FileChooserAction.swift │ │ ├── FileChooserError.swift │ │ ├── FileChooserNative.swift │ │ ├── FilterChange.swift │ │ ├── FilterMatch.swift │ │ ├── FontChooser.swift │ │ ├── GLArea.swift │ │ ├── Gesture.swift │ │ ├── GestureClick.swift │ │ ├── GestureLongPress.swift │ │ ├── GestureSingle.swift │ │ ├── IconSize.swift │ │ ├── IconThemeError.swift │ │ ├── IconViewDropPosition.swift │ │ ├── Image.swift │ │ ├── ImageType.swift │ │ ├── InputPurpose.swift │ │ ├── Justification.swift │ │ ├── Label.swift │ │ ├── LevelBarMode.swift │ │ ├── ListBox.swift │ │ ├── MessageType.swift │ │ ├── MovementStep.swift │ │ ├── Native.swift │ │ ├── NativeDialog.swift │ │ ├── NotebookTab.swift │ │ ├── NumberUpLayout.swift │ │ ├── Ordering.swift │ │ ├── Orientation.swift │ │ ├── Overflow.swift │ │ ├── PackType.swift │ │ ├── PadActionType.swift │ │ ├── PageOrientation.swift │ │ ├── PageSet.swift │ │ ├── PanDirection.swift │ │ ├── Picture.swift │ │ ├── PolicyType.swift │ │ ├── Popover.swift │ │ ├── PositionType.swift │ │ ├── PrintDuplex.swift │ │ ├── PrintError.swift │ │ ├── PrintOperationAction.swift │ │ ├── PrintOperationResult.swift │ │ ├── PrintPages.swift │ │ ├── PrintQuality.swift │ │ ├── PrintStatus.swift │ │ ├── ProgressBar.swift │ │ ├── PropagationLimit.swift │ │ ├── PropagationPhase.swift │ │ ├── Range.swift │ │ ├── RecentManagerError.swift │ │ ├── ResponseType.swift │ │ ├── RevealerTransitionType.swift │ │ ├── Root.swift │ │ ├── Scale.swift │ │ ├── ScrollStep.swift │ │ ├── ScrollType.swift │ │ ├── Scrollable.swift │ │ ├── ScrollablePolicy.swift │ │ ├── SelectionMode.swift │ │ ├── SelectionModel.swift │ │ ├── SensitivityType.swift │ │ ├── ShortcutManager.swift │ │ ├── ShortcutScope.swift │ │ ├── ShortcutType.swift │ │ ├── SizeGroupMode.swift │ │ ├── SizeRequestMode.swift │ │ ├── SortType.swift │ │ ├── SorterChange.swift │ │ ├── SorterOrder.swift │ │ ├── SpinButtonUpdatePolicy.swift │ │ ├── SpinType.swift │ │ ├── Spinner.swift │ │ ├── StackTransitionType.swift │ │ ├── StringFilterMatchMode.swift │ │ ├── StyleProvider.swift │ │ ├── Switch.swift │ │ ├── SystemSetting.swift │ │ ├── TextDirection.swift │ │ ├── TextExtendSelection.swift │ │ ├── TextViewLayer.swift │ │ ├── TextWindowType.swift │ │ ├── TreeDragDest.swift │ │ ├── TreeDragSource.swift │ │ ├── TreeSortable.swift │ │ ├── TreeViewColumnSizing.swift │ │ ├── TreeViewDropPosition.swift │ │ ├── TreeViewGridLines.swift │ │ ├── Unit.swift │ │ └── WrapMode.swift │ ├── Gsk │ │ └── PathBuilder.swift │ ├── GtkError.swift │ ├── LICENSE.md │ ├── MemoryTexture.swift │ ├── Utility │ │ ├── CSS │ │ │ ├── CSSBlock.swift │ │ │ ├── CSSProperty.swift │ │ │ └── CSSProvider.swift │ │ ├── GAction.swift │ │ ├── GActionGroup.swift │ │ ├── GActionMap.swift │ │ ├── GFile.swift │ │ ├── GListModel.swift │ │ ├── GMenu.swift │ │ ├── GObjectProperty.swift │ │ ├── GObjectRepresentable.swift │ │ ├── GSimpleAction.swift │ │ ├── GSimpleActionGroup.swift │ │ ├── GValueRepresentable.swift │ │ ├── GValueRepresentableEnum.swift │ │ ├── MaxDepthTypeDescription.swift │ │ ├── Pango.swift │ │ ├── String.swift │ │ └── TextBuffer.swift │ ├── Widgets │ │ ├── ApplicationWindow.swift │ │ ├── Box.swift │ │ ├── Calendar.swift │ │ ├── CustomRootWidget.swift │ │ ├── Dialog.swift │ │ ├── DrawingArea+ManualAdditions.swift │ │ ├── FileChooser+ManualAdditions.swift │ │ ├── Fixed.swift │ │ ├── Grid.swift │ │ ├── Image+ManualAdditions.swift │ │ ├── Label+ManualAdditions.swift │ │ ├── ListBox+ManualAdditions.swift │ │ ├── MessageDialog.swift │ │ ├── Orientable.swift │ │ ├── Paned.swift │ │ ├── Picture+ManualAdditions.swift │ │ ├── PopoverMenu.swift │ │ ├── Range+ManualAdditions.swift │ │ ├── Scale+ManualAdditions.swift │ │ ├── ScrolledWindow.swift │ │ ├── Stack.swift │ │ ├── TextView.swift │ │ ├── ToggleButton.swift │ │ ├── Viewport.swift │ │ ├── Widget.swift │ │ └── Window.swift │ └── WrapMode+PangoWrapMode.swift ├── Gtk3 │ ├── Application.swift │ ├── CairoSurface.swift │ ├── Callbacks │ │ ├── Cancellable.swift │ │ ├── SignalBox.swift │ │ └── Signals.swift │ ├── Datatypes │ │ ├── Color.swift │ │ └── Size.swift │ ├── Extensions │ │ ├── Conversions.swift │ │ ├── UnsafePointerGChar+ToString.swift │ │ └── Widget+CastedPointer.swift │ ├── GObject.swift │ ├── Generated │ │ ├── Activatable.swift │ │ ├── Align.swift │ │ ├── AppChooser.swift │ │ ├── ArrowPlacement.swift │ │ ├── ArrowType.swift │ │ ├── AssistantPageType.swift │ │ ├── BorderStyle.swift │ │ ├── Buildable.swift │ │ ├── BuilderError.swift │ │ ├── Button.swift │ │ ├── ButtonBoxStyle.swift │ │ ├── ButtonRole.swift │ │ ├── ButtonsType.swift │ │ ├── CellAccessibleParent.swift │ │ ├── CellEditable.swift │ │ ├── CellLayout.swift │ │ ├── CellRendererAccelMode.swift │ │ ├── CellRendererMode.swift │ │ ├── CheckButton.swift │ │ ├── CornerType.swift │ │ ├── CssProviderError.swift │ │ ├── DeleteType.swift │ │ ├── DirectionType.swift │ │ ├── DragResult.swift │ │ ├── DrawingArea.swift │ │ ├── Editable.swift │ │ ├── Entry.swift │ │ ├── EventBox.swift │ │ ├── EventController.swift │ │ ├── ExpanderStyle.swift │ │ ├── FileChooser.swift │ │ ├── FileChooserAction.swift │ │ ├── FileChooserError.swift │ │ ├── FileChooserNative.swift │ │ ├── FontChooser.swift │ │ ├── GLArea.swift │ │ ├── Gesture.swift │ │ ├── GestureLongPress.swift │ │ ├── GestureSingle.swift │ │ ├── IMPreeditStyle.swift │ │ ├── IMStatusStyle.swift │ │ ├── IconSize.swift │ │ ├── IconThemeError.swift │ │ ├── IconViewDropPosition.swift │ │ ├── Image.swift │ │ ├── ImageType.swift │ │ ├── Justification.swift │ │ ├── Label.swift │ │ ├── MenuDirectionType.swift │ │ ├── MenuShell.swift │ │ ├── MessageType.swift │ │ ├── MovementStep.swift │ │ ├── NativeDialog.swift │ │ ├── NotebookTab.swift │ │ ├── NumberUpLayout.swift │ │ ├── Orientation.swift │ │ ├── PackDirection.swift │ │ ├── PackType.swift │ │ ├── PadActionType.swift │ │ ├── PageOrientation.swift │ │ ├── PageSet.swift │ │ ├── PathPriorityType.swift │ │ ├── PathType.swift │ │ ├── PolicyType.swift │ │ ├── PositionType.swift │ │ ├── PrintDuplex.swift │ │ ├── PrintError.swift │ │ ├── PrintOperationAction.swift │ │ ├── PrintOperationResult.swift │ │ ├── PrintPages.swift │ │ ├── PrintQuality.swift │ │ ├── PrintStatus.swift │ │ ├── ProgressBar.swift │ │ ├── Range.swift │ │ ├── RcTokenType.swift │ │ ├── RecentChooser.swift │ │ ├── ReliefStyle.swift │ │ ├── ResizeMode.swift │ │ ├── ResponseType.swift │ │ ├── RevealerTransitionType.swift │ │ ├── Scale.swift │ │ ├── ScrollStep.swift │ │ ├── ScrollType.swift │ │ ├── Scrollable.swift │ │ ├── ScrollablePolicy.swift │ │ ├── SelectionMode.swift │ │ ├── SensitivityType.swift │ │ ├── ShadowType.swift │ │ ├── SizeGroupMode.swift │ │ ├── SizeRequestMode.swift │ │ ├── SortType.swift │ │ ├── SpinButtonUpdatePolicy.swift │ │ ├── SpinType.swift │ │ ├── Spinner.swift │ │ ├── StackTransitionType.swift │ │ ├── StateType.swift │ │ ├── StyleProvider.swift │ │ ├── Switch.swift │ │ ├── TextBufferTargetInfo.swift │ │ ├── TextDirection.swift │ │ ├── TextViewLayer.swift │ │ ├── TextWindowType.swift │ │ ├── ToolShell.swift │ │ ├── ToolbarSpaceStyle.swift │ │ ├── ToolbarStyle.swift │ │ ├── TreeDragDest.swift │ │ ├── TreeDragSource.swift │ │ ├── TreeSortable.swift │ │ ├── TreeViewColumnSizing.swift │ │ ├── TreeViewDropPosition.swift │ │ ├── TreeViewGridLines.swift │ │ ├── Unit.swift │ │ ├── WidgetHelpType.swift │ │ ├── WindowPosition.swift │ │ ├── WindowType.swift │ │ └── WrapMode.swift │ ├── GtkError.swift │ ├── LICENSE.md │ ├── Pixbuf.swift │ ├── Utility │ │ ├── CSS │ │ │ ├── CSSBlock.swift │ │ │ ├── CSSProperty.swift │ │ │ └── CSSProvider.swift │ │ ├── GAction.swift │ │ ├── GActionGroup.swift │ │ ├── GActionMap.swift │ │ ├── GFile.swift │ │ ├── GMenu.swift │ │ ├── GObjectProperty.swift │ │ ├── GObjectRepresentable.swift │ │ ├── GSList.swift │ │ ├── GSimpleAction.swift │ │ ├── GSimpleActionGroup.swift │ │ ├── GValueRepresentable.swift │ │ ├── GValueRepresentableEnum.swift │ │ ├── MaxDepthTypeDescription.swift │ │ ├── Pango.swift │ │ ├── String.swift │ │ └── TextBuffer.swift │ ├── Widgets │ │ ├── ApplicationWindow.swift │ │ ├── Bin.swift │ │ ├── Box.swift │ │ ├── Calendar.swift │ │ ├── Container.swift │ │ ├── CustomRootWidget.swift │ │ ├── Dialog.swift │ │ ├── FileChooser+ManualAdditions.swift │ │ ├── Fixed.swift │ │ ├── Grid.swift │ │ ├── Image+ManualAdditions.swift │ │ ├── Label+ManualAdditions.swift │ │ ├── ListBox.swift │ │ ├── Menu.swift │ │ ├── MessageDialog.swift │ │ ├── Misc.swift │ │ ├── Orientable.swift │ │ ├── Paned.swift │ │ ├── Range+ManualAdditions.swift │ │ ├── Scale+ManualAdditions.swift │ │ ├── ScrolledWindow.swift │ │ ├── Spinner+ManualAdditions.swift │ │ ├── TextView.swift │ │ ├── ToggleButton.swift │ │ ├── Viewport.swift │ │ ├── Widget.swift │ │ └── Window.swift │ └── WrapMode+PangoWrapMode.swift ├── Gtk3Backend │ └── Gtk3Backend.swift ├── Gtk3CustomWidgets │ ├── gtk_custom_root_widget.c │ ├── gtk_helpers.c │ └── include │ │ ├── gtk_custom_root_widget.h │ │ └── gtk_helpers.h ├── Gtk3Example │ ├── GTK.png │ └── main.swift ├── GtkBackend │ └── GtkBackend.swift ├── GtkCodeGen │ ├── Extensions.swift │ ├── GIR.swift │ └── GtkCodeGen.swift ├── GtkCustomWidgets │ ├── gtk_custom_root_widget.c │ ├── gtk_helpers.c │ └── include │ │ ├── gtk_custom_root_widget.h │ │ └── gtk_helpers.h ├── GtkExample │ ├── GTK.png │ └── main.swift ├── HotReloadingMacrosPlugin │ ├── HotReloadableAppMacro.swift │ ├── HotReloadableExprMacro.swift │ └── HotReloadingMacrosPlugin.swift ├── LVGLBackend │ └── LVGLBackend.swift ├── QtBackend │ └── QtBackend.swift ├── SwiftCrossUI │ ├── App.swift │ ├── Backend │ │ ├── AnyWidget.swift │ │ ├── AppBackend.swift │ │ ├── CellPosition.swift │ │ ├── DialogResult.swift │ │ ├── FileChooserResult.swift │ │ ├── FileDialogOptions.swift │ │ ├── MenuImplementationStyle.swift │ │ ├── OpenDialogOptions.swift │ │ ├── ResolvedMenu.swift │ │ └── SaveDialogOptions.swift │ ├── Builders │ │ ├── AlertActionsBuilder.swift │ │ ├── CommandsBuilder.swift │ │ ├── MenuItemsBuilder.swift │ │ ├── SceneBuilder.swift │ │ ├── SceneBuilder.swift.gyb │ │ ├── TableRowBuilder.swift │ │ ├── TableRowBuilder.swift.gyb │ │ ├── ViewBuilder.swift │ │ └── ViewBuilder.swift.gyb │ ├── Environment │ │ ├── Actions │ │ │ ├── AlertAction.swift │ │ │ ├── DismissAction.swift │ │ │ ├── OpenURLAction.swift │ │ │ ├── PresentAlertAction.swift │ │ │ ├── PresentFileSaveDialogAction.swift │ │ │ ├── PresentSingleFileOpenDialogAction.swift │ │ │ └── RevealFileAction.swift │ │ ├── Environment.swift │ │ ├── EnvironmentValues.swift │ │ └── ListStyle.swift │ ├── HotReloadingMacros.swift │ ├── Layout │ │ ├── LayoutSystem.swift │ │ ├── ViewSize.swift │ │ └── ViewUpdateResult.swift │ ├── Scenes │ │ ├── CommandMenu.swift │ │ ├── Commands.swift │ │ ├── Modifiers │ │ │ └── CommandsModifier.swift │ │ ├── Scene.swift │ │ ├── SceneGraphNode.swift │ │ ├── TupleScene.swift │ │ ├── TupleScene.swift.gyb │ │ ├── WindowGroup.swift │ │ └── WindowGroupNode.swift │ ├── State │ │ ├── Binding.swift │ │ ├── Cancellable.swift │ │ ├── DynamicProperty.swift │ │ ├── ObservableObject.swift │ │ ├── Published.swift │ │ ├── Publisher.swift │ │ └── State.swift │ ├── SwiftCrossUI.docc │ │ ├── AppKitBackend.md │ │ ├── Built-in backends.md │ │ ├── Controls.md │ │ ├── Custom backends.md │ │ ├── DefaultBackend.md │ │ ├── Deprecated.md │ │ ├── Environment.md │ │ ├── Examples.md │ │ ├── Gestures.md │ │ ├── Gtk3Backend.md │ │ ├── GtkBackend.md │ │ ├── Hot reloading.md │ │ ├── Implementation details.md │ │ ├── Layout.md │ │ ├── Navigation.md │ │ ├── Preferences.md │ │ ├── Quick start.md │ │ ├── Scene graph.md │ │ ├── Scenes.md │ │ ├── Setting up a development environment.md │ │ ├── Setting up a virtual development environment.md │ │ ├── Shapes.md │ │ ├── State basics.md │ │ ├── Styling.md │ │ ├── SwiftCrossUI.md │ │ ├── Tables.md │ │ ├── UIKitBackend.md │ │ ├── View fundamentals.md │ │ ├── View graph.md │ │ └── WinUIBackend.md │ ├── Values │ │ ├── Alignment.swift │ │ ├── AppMetadata.swift │ │ ├── Axis.swift │ │ ├── Color.swift │ │ ├── ColorScheme.swift │ │ ├── ContentMode.swift │ │ ├── ContentType.swift │ │ ├── DeviceClass.swift │ │ ├── Edge.swift │ │ ├── Font.swift │ │ ├── GeometryProxy.swift │ │ ├── HorizontalAlignment.swift │ │ ├── MainActorBox.swift │ │ ├── Orientation.swift │ │ ├── Path.swift │ │ ├── PresentationDetent.swift │ │ ├── ScrollDismissesKeyboardMode.swift │ │ ├── StackAlignment.swift │ │ ├── TextContentType.swift │ │ ├── TextStyle.swift │ │ ├── VerticalAlignment.swift │ │ ├── Visibility.swift │ │ └── WindowResizability.swift │ ├── ViewGraph │ │ ├── AnyViewGraphNode.swift │ │ ├── Box.swift │ │ ├── ErasedViewGraphNode.swift │ │ ├── PreferenceValues.swift │ │ ├── ViewGraph.swift │ │ ├── ViewGraphNode.swift │ │ ├── ViewGraphNodeChildren.swift │ │ └── ViewGraphSnapshotter.swift │ ├── Views │ │ ├── AnyView.swift │ │ ├── Button.swift │ │ ├── Checkbox.swift │ │ ├── Divider.swift │ │ ├── EitherView.swift │ │ ├── ElementaryView.swift │ │ ├── EmptyView.swift │ │ ├── ForEach.swift │ │ ├── GeometryReader.swift │ │ ├── Group.swift │ │ ├── HStack.swift │ │ ├── HotReloadableView.swift │ │ ├── Image.swift │ │ ├── List.swift │ │ ├── Menu.swift │ │ ├── MenuItem.swift │ │ ├── Modifiers │ │ │ ├── AlertModifier.swift │ │ │ ├── ConditionalApplicationModifier.swift │ │ │ ├── DisabledModifier.swift │ │ │ ├── EnvironmentModifier.swift │ │ │ ├── Handlers │ │ │ │ ├── OnChangeModifier.swift │ │ │ │ ├── OnHoverModifier.swift │ │ │ │ ├── OnOpenURLModifier.swift │ │ │ │ ├── OnSubmitModifier.swift │ │ │ │ └── OnTapGestureModifier.swift │ │ │ ├── Layout │ │ │ │ ├── AspectRatioModifier.swift │ │ │ │ ├── BackgroundModifier.swift │ │ │ │ ├── FixedSizeModifier.swift │ │ │ │ ├── FrameModifier.swift │ │ │ │ ├── MultilineTextAlignmentModifier.swift │ │ │ │ ├── OverlayModifier.swift │ │ │ │ └── PaddingModifier.swift │ │ │ ├── Lifecycle │ │ │ │ ├── OnAppearModifier.swift │ │ │ │ ├── OnDisappearModifier.swift │ │ │ │ └── TaskModifier.swift │ │ │ ├── PreferenceModifier.swift │ │ │ ├── PresentationModifiers.swift │ │ │ ├── ScrollDismissesKeyboardModifier.swift │ │ │ ├── SheetModifier.swift │ │ │ ├── Style │ │ │ │ ├── ColorSchemeModifier.swift │ │ │ │ ├── CornerRadiusModifier.swift │ │ │ │ ├── FontModifier.swift │ │ │ │ ├── ForegroundColorModifier.swift │ │ │ │ └── ToggleStyleModifier.swift │ │ │ ├── TextContentTypeModifier.swift │ │ │ └── TextSelectionModifier.swift │ │ ├── NavigationLink.swift │ │ ├── NavigationPath.swift │ │ ├── NavigationSplitView.swift │ │ ├── NavigationStack.swift │ │ ├── OptionalView.swift │ │ ├── Picker.swift │ │ ├── ProgressView.swift │ │ ├── ScrollView.swift │ │ ├── Shapes │ │ │ ├── Capsule.swift │ │ │ ├── Circle.swift │ │ │ ├── Ellipse.swift │ │ │ ├── Rectangle.swift │ │ │ ├── RoundedRectangle.swift │ │ │ ├── Shape.swift │ │ │ └── StyledShape.swift │ │ ├── Slider.swift │ │ ├── Spacer.swift │ │ ├── SplitView.swift │ │ ├── Table.swift │ │ ├── TableColumn.swift │ │ ├── TableRowContent.swift │ │ ├── TableRowContent.swift.gyb │ │ ├── Text.swift │ │ ├── TextEditor.swift │ │ ├── TextField.swift │ │ ├── Toggle.swift │ │ ├── ToggleButton.swift │ │ ├── ToggleSwitch.swift │ │ ├── TupleView.swift │ │ ├── TupleView.swift.gyb │ │ ├── TupleViewChildren.swift │ │ ├── TupleViewChildren.swift.gyb │ │ ├── TypeSafeView.swift │ │ ├── VStack.swift │ │ ├── View.swift │ │ ├── ViewContent.swift │ │ ├── WebView.swift │ │ └── ZStack.swift │ └── _App.swift ├── UIKitBackend │ ├── ColorScheme+UIUserInterfaceStyle.swift │ ├── Font+UIFont.swift │ ├── KeyboardToolbar.swift │ ├── UIColor+Color.swift │ ├── UIKitBackend+Alert.swift │ ├── UIKitBackend+Container.swift │ ├── UIKitBackend+Control.swift │ ├── UIKitBackend+FilePicker.swift │ ├── UIKitBackend+List.swift │ ├── UIKitBackend+Menu.swift │ ├── UIKitBackend+Passive.swift │ ├── UIKitBackend+Path.swift │ ├── UIKitBackend+Picker.swift │ ├── UIKitBackend+Progress.swift │ ├── UIKitBackend+Sheet.swift │ ├── UIKitBackend+SplitView.swift │ ├── UIKitBackend+WebView.swift │ ├── UIKitBackend+Window.swift │ ├── UIKitBackend.swift │ ├── UIViewControllerRepresentable.swift │ ├── UIViewRepresentable.swift │ └── Widget.swift ├── WinUIBackend │ ├── Console.swift │ ├── HWNDInterop.swift │ └── WinUIBackend.swift └── WinUIInterop │ ├── dummy.cpp │ └── include │ └── WinUIInterop.h ├── Tests └── SwiftCrossUITests │ ├── PublisherTests.swift │ └── SwiftCrossUITests.swift ├── banner.png ├── format_and_lint.sh ├── generate.sh ├── gyb ├── gyb └── gyb.py ├── test.sh └── vcpkg.json /.gitattributes: -------------------------------------------------------------------------------- 1 | gyb/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [stackotter] 2 | -------------------------------------------------------------------------------- /.github/actions/compile-docs/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/.github/actions/compile-docs/action.yml -------------------------------------------------------------------------------- /.github/actions/extract-symbol-graphs/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/.github/actions/extract-symbol-graphs/action.yml -------------------------------------------------------------------------------- /.github/workflows/build-test-and-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/.github/workflows/build-test-and-docs.yml -------------------------------------------------------------------------------- /.github/workflows/swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/.github/workflows/swiftlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swift-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/.swift-format -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Benchmarks/LayoutPerformanceBenchmark/GridView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Benchmarks/LayoutPerformanceBenchmark/GridView.swift -------------------------------------------------------------------------------- /Benchmarks/LayoutPerformanceBenchmark/LayoutPerformanceBenchmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Benchmarks/LayoutPerformanceBenchmark/LayoutPerformanceBenchmark.swift -------------------------------------------------------------------------------- /Benchmarks/LayoutPerformanceBenchmark/ScrollableMessageListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Benchmarks/LayoutPerformanceBenchmark/ScrollableMessageListView.swift -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Dockerfile -------------------------------------------------------------------------------- /Examples/Bundler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Bundler.toml -------------------------------------------------------------------------------- /Examples/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Package.resolved -------------------------------------------------------------------------------- /Examples/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Package.swift -------------------------------------------------------------------------------- /Examples/Sources/ControlsExample/ControlsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/ControlsExample/ControlsApp.swift -------------------------------------------------------------------------------- /Examples/Sources/CounterExample/CounterApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/CounterExample/CounterApp.swift -------------------------------------------------------------------------------- /Examples/Sources/GreetingGeneratorExample/GreetingGeneratorApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/GreetingGeneratorExample/GreetingGeneratorApp.swift -------------------------------------------------------------------------------- /Examples/Sources/HoverExample/HoverApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/HoverExample/HoverApp.swift -------------------------------------------------------------------------------- /Examples/Sources/NavigationExample/NavigationApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/NavigationExample/NavigationApp.swift -------------------------------------------------------------------------------- /Examples/Sources/NotesExample/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/NotesExample/ContentView.swift -------------------------------------------------------------------------------- /Examples/Sources/NotesExample/NotesApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/NotesExample/NotesApp.swift -------------------------------------------------------------------------------- /Examples/Sources/PathsExample/PathsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/PathsExample/PathsApp.swift -------------------------------------------------------------------------------- /Examples/Sources/RandomNumberGeneratorExample/RandomNumberGeneratorApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/RandomNumberGeneratorExample/RandomNumberGeneratorApp.swift -------------------------------------------------------------------------------- /Examples/Sources/SplitExample/SplitApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/SplitExample/SplitApp.swift -------------------------------------------------------------------------------- /Examples/Sources/SpreadsheetExample/SpreadsheetApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/SpreadsheetExample/SpreadsheetApp.swift -------------------------------------------------------------------------------- /Examples/Sources/StressTestExample/StressTestApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/StressTestExample/StressTestApp.swift -------------------------------------------------------------------------------- /Examples/Sources/WebViewExample/WebViewApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/WebViewExample/WebViewApp.swift -------------------------------------------------------------------------------- /Examples/Sources/WindowingExample/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/WindowingExample/Banner.png -------------------------------------------------------------------------------- /Examples/Sources/WindowingExample/WindowingApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Examples/Sources/WindowingExample/WindowingApp.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AppKitBackend/AppKitBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/AppKitBackend/AppKitBackend.swift -------------------------------------------------------------------------------- /Sources/AppKitBackend/NSViewRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/AppKitBackend/NSViewRepresentable.swift -------------------------------------------------------------------------------- /Sources/CGtk/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/CGtk/header.h -------------------------------------------------------------------------------- /Sources/CGtk/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/CGtk/module.modulemap -------------------------------------------------------------------------------- /Sources/CGtk3/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/CGtk3/header.h -------------------------------------------------------------------------------- /Sources/CGtk3/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/CGtk3/module.modulemap -------------------------------------------------------------------------------- /Sources/CursesBackend/CursesBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/CursesBackend/CursesBackend.swift -------------------------------------------------------------------------------- /Sources/DefaultBackend/DefaultBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/DefaultBackend/DefaultBackend.swift -------------------------------------------------------------------------------- /Sources/DummyBackend/DummyBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/DummyBackend/DummyBackend.swift -------------------------------------------------------------------------------- /Sources/Gtk/Application.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Application.swift -------------------------------------------------------------------------------- /Sources/Gtk/Callbacks/Cancellable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Callbacks/Cancellable.swift -------------------------------------------------------------------------------- /Sources/Gtk/Callbacks/SignalBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Callbacks/SignalBox.swift -------------------------------------------------------------------------------- /Sources/Gtk/Callbacks/Signals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Callbacks/Signals.swift -------------------------------------------------------------------------------- /Sources/Gtk/Datatypes/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Datatypes/Color.swift -------------------------------------------------------------------------------- /Sources/Gtk/Datatypes/Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Datatypes/Size.swift -------------------------------------------------------------------------------- /Sources/Gtk/Extensions/Conversions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Extensions/Conversions.swift -------------------------------------------------------------------------------- /Sources/Gtk/Extensions/UnsafePointerGChar+ToString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Extensions/UnsafePointerGChar+ToString.swift -------------------------------------------------------------------------------- /Sources/Gtk/Extensions/Widget+CastedPointer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Extensions/Widget+CastedPointer.swift -------------------------------------------------------------------------------- /Sources/Gtk/GObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/GObject.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Accessible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Accessible.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/AccessibleAutocomplete.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/AccessibleAutocomplete.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/AccessibleInvalidState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/AccessibleInvalidState.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/AccessibleProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/AccessibleProperty.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/AccessibleRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/AccessibleRelation.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/AccessibleRole.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/AccessibleRole.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/AccessibleSort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/AccessibleSort.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/AccessibleState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/AccessibleState.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/AccessibleTristate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/AccessibleTristate.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Actionable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Actionable.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Align.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Align.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/AppChooser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/AppChooser.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ArrowType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ArrowType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/AssistantPageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/AssistantPageType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/BaselinePosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/BaselinePosition.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/BorderStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/BorderStyle.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Buildable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Buildable.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/BuilderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/BuilderError.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/BuilderScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/BuilderScope.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Button.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ButtonsType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ButtonsType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/CellEditable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/CellEditable.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/CellLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/CellLayout.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/CellRendererAccelMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/CellRendererAccelMode.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/CellRendererMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/CellRendererMode.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/CheckButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/CheckButton.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ConstraintAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ConstraintAttribute.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ConstraintRelation.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ConstraintStrength.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ConstraintStrength.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ConstraintTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ConstraintTarget.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ConstraintVflParserError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ConstraintVflParserError.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/CornerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/CornerType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/CssParserError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/CssParserError.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/CssParserWarning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/CssParserWarning.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/DeleteType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/DeleteType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/DirectionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/DirectionType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/DrawingArea.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/DrawingArea.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/DropDown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/DropDown.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Editable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Editable.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/EditableProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/EditableProperties.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Entry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Entry.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/EntryIconPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/EntryIconPosition.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/EventController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/EventController.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/EventControllerKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/EventControllerKey.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/EventControllerMotion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/EventControllerMotion.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/EventSequenceState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/EventSequenceState.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/FileChooser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/FileChooser.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/FileChooserAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/FileChooserAction.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/FileChooserError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/FileChooserError.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/FileChooserNative.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/FileChooserNative.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/FilterChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/FilterChange.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/FilterMatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/FilterMatch.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/FontChooser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/FontChooser.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/GLArea.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/GLArea.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Gesture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Gesture.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/GestureClick.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/GestureClick.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/GestureLongPress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/GestureLongPress.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/GestureSingle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/GestureSingle.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/IconSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/IconSize.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/IconThemeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/IconThemeError.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/IconViewDropPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/IconViewDropPosition.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Image.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ImageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ImageType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/InputPurpose.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/InputPurpose.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Justification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Justification.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Label.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Label.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/LevelBarMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/LevelBarMode.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ListBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ListBox.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/MessageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/MessageType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/MovementStep.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/MovementStep.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Native.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Native.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/NativeDialog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/NativeDialog.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/NotebookTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/NotebookTab.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/NumberUpLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/NumberUpLayout.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Ordering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Ordering.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Orientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Orientation.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Overflow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Overflow.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PackType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PackType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PadActionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PadActionType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PageOrientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PageOrientation.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PageSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PageSet.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PanDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PanDirection.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Picture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Picture.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PolicyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PolicyType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Popover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Popover.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PositionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PositionType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PrintDuplex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PrintDuplex.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PrintError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PrintError.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PrintOperationAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PrintOperationAction.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PrintOperationResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PrintOperationResult.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PrintPages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PrintPages.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PrintQuality.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PrintQuality.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PrintStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PrintStatus.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ProgressBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ProgressBar.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PropagationLimit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PropagationLimit.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/PropagationPhase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/PropagationPhase.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Range.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Range.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/RecentManagerError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/RecentManagerError.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ResponseType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ResponseType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/RevealerTransitionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/RevealerTransitionType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Root.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Root.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Scale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Scale.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ScrollStep.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ScrollStep.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ScrollType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ScrollType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Scrollable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Scrollable.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ScrollablePolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ScrollablePolicy.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/SelectionMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/SelectionMode.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/SelectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/SelectionModel.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/SensitivityType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/SensitivityType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ShortcutManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ShortcutManager.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ShortcutScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ShortcutScope.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/ShortcutType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/ShortcutType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/SizeGroupMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/SizeGroupMode.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/SizeRequestMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/SizeRequestMode.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/SortType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/SortType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/SorterChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/SorterChange.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/SorterOrder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/SorterOrder.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/SpinButtonUpdatePolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/SpinButtonUpdatePolicy.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/SpinType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/SpinType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Spinner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Spinner.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/StackTransitionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/StackTransitionType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/StringFilterMatchMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/StringFilterMatchMode.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/StyleProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/StyleProvider.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Switch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Switch.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/SystemSetting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/SystemSetting.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/TextDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/TextDirection.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/TextExtendSelection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/TextExtendSelection.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/TextViewLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/TextViewLayer.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/TextWindowType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/TextWindowType.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/TreeDragDest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/TreeDragDest.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/TreeDragSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/TreeDragSource.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/TreeSortable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/TreeSortable.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/TreeViewColumnSizing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/TreeViewColumnSizing.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/TreeViewDropPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/TreeViewDropPosition.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/TreeViewGridLines.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/TreeViewGridLines.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/Unit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/Unit.swift -------------------------------------------------------------------------------- /Sources/Gtk/Generated/WrapMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Generated/WrapMode.swift -------------------------------------------------------------------------------- /Sources/Gtk/Gsk/PathBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Gsk/PathBuilder.swift -------------------------------------------------------------------------------- /Sources/Gtk/GtkError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/GtkError.swift -------------------------------------------------------------------------------- /Sources/Gtk/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/LICENSE.md -------------------------------------------------------------------------------- /Sources/Gtk/MemoryTexture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/MemoryTexture.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/CSS/CSSBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/CSS/CSSBlock.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/CSS/CSSProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/CSS/CSSProperty.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/CSS/CSSProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/CSS/CSSProvider.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/GAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/GAction.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/GActionGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/GActionGroup.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/GActionMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/GActionMap.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/GFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/GFile.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/GListModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/GListModel.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/GMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/GMenu.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/GObjectProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/GObjectProperty.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/GObjectRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/GObjectRepresentable.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/GSimpleAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/GSimpleAction.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/GSimpleActionGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/GSimpleActionGroup.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/GValueRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/GValueRepresentable.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/GValueRepresentableEnum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/GValueRepresentableEnum.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/MaxDepthTypeDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/MaxDepthTypeDescription.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/Pango.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/Pango.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/String.swift -------------------------------------------------------------------------------- /Sources/Gtk/Utility/TextBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Utility/TextBuffer.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/ApplicationWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/ApplicationWindow.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Box.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Calendar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Calendar.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/CustomRootWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/CustomRootWidget.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Dialog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Dialog.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/DrawingArea+ManualAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/DrawingArea+ManualAdditions.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/FileChooser+ManualAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/FileChooser+ManualAdditions.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Fixed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Fixed.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Grid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Grid.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Image+ManualAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Image+ManualAdditions.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Label+ManualAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Label+ManualAdditions.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/ListBox+ManualAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/ListBox+ManualAdditions.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/MessageDialog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/MessageDialog.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Orientable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Orientable.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Paned.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Paned.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Picture+ManualAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Picture+ManualAdditions.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/PopoverMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/PopoverMenu.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Range+ManualAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Range+ManualAdditions.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Scale+ManualAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Scale+ManualAdditions.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/ScrolledWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/ScrolledWindow.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Stack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Stack.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/TextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/TextView.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/ToggleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/ToggleButton.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Viewport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Viewport.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Widget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Widget.swift -------------------------------------------------------------------------------- /Sources/Gtk/Widgets/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/Widgets/Window.swift -------------------------------------------------------------------------------- /Sources/Gtk/WrapMode+PangoWrapMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk/WrapMode+PangoWrapMode.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Application.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Application.swift -------------------------------------------------------------------------------- /Sources/Gtk3/CairoSurface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/CairoSurface.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Callbacks/Cancellable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Callbacks/Cancellable.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Callbacks/SignalBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Callbacks/SignalBox.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Callbacks/Signals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Callbacks/Signals.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Datatypes/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Datatypes/Color.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Datatypes/Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Datatypes/Size.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Extensions/Conversions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Extensions/Conversions.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Extensions/UnsafePointerGChar+ToString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Extensions/UnsafePointerGChar+ToString.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Extensions/Widget+CastedPointer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Extensions/Widget+CastedPointer.swift -------------------------------------------------------------------------------- /Sources/Gtk3/GObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/GObject.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Activatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Activatable.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Align.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Align.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/AppChooser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/AppChooser.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ArrowPlacement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ArrowPlacement.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ArrowType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ArrowType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/AssistantPageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/AssistantPageType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/BorderStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/BorderStyle.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Buildable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Buildable.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/BuilderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/BuilderError.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Button.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ButtonBoxStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ButtonBoxStyle.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ButtonRole.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ButtonRole.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ButtonsType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ButtonsType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/CellAccessibleParent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/CellAccessibleParent.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/CellEditable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/CellEditable.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/CellLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/CellLayout.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/CellRendererAccelMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/CellRendererAccelMode.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/CellRendererMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/CellRendererMode.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/CheckButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/CheckButton.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/CornerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/CornerType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/CssProviderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/CssProviderError.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/DeleteType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/DeleteType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/DirectionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/DirectionType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/DragResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/DragResult.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/DrawingArea.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/DrawingArea.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Editable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Editable.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Entry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Entry.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/EventBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/EventBox.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/EventController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/EventController.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ExpanderStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ExpanderStyle.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/FileChooser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/FileChooser.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/FileChooserAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/FileChooserAction.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/FileChooserError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/FileChooserError.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/FileChooserNative.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/FileChooserNative.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/FontChooser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/FontChooser.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/GLArea.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/GLArea.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Gesture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Gesture.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/GestureLongPress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/GestureLongPress.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/GestureSingle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/GestureSingle.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/IMPreeditStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/IMPreeditStyle.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/IMStatusStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/IMStatusStyle.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/IconSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/IconSize.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/IconThemeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/IconThemeError.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/IconViewDropPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/IconViewDropPosition.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Image.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ImageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ImageType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Justification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Justification.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Label.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Label.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/MenuDirectionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/MenuDirectionType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/MenuShell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/MenuShell.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/MessageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/MessageType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/MovementStep.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/MovementStep.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/NativeDialog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/NativeDialog.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/NotebookTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/NotebookTab.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/NumberUpLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/NumberUpLayout.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Orientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Orientation.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PackDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PackDirection.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PackType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PackType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PadActionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PadActionType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PageOrientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PageOrientation.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PageSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PageSet.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PathPriorityType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PathPriorityType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PathType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PathType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PolicyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PolicyType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PositionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PositionType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PrintDuplex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PrintDuplex.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PrintError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PrintError.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PrintOperationAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PrintOperationAction.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PrintOperationResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PrintOperationResult.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PrintPages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PrintPages.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PrintQuality.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PrintQuality.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/PrintStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/PrintStatus.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ProgressBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ProgressBar.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Range.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Range.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/RcTokenType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/RcTokenType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/RecentChooser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/RecentChooser.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ReliefStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ReliefStyle.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ResizeMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ResizeMode.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ResponseType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ResponseType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/RevealerTransitionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/RevealerTransitionType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Scale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Scale.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ScrollStep.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ScrollStep.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ScrollType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ScrollType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Scrollable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Scrollable.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ScrollablePolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ScrollablePolicy.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/SelectionMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/SelectionMode.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/SensitivityType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/SensitivityType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ShadowType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ShadowType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/SizeGroupMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/SizeGroupMode.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/SizeRequestMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/SizeRequestMode.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/SortType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/SortType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/SpinButtonUpdatePolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/SpinButtonUpdatePolicy.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/SpinType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/SpinType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Spinner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Spinner.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/StackTransitionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/StackTransitionType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/StateType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/StateType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/StyleProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/StyleProvider.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Switch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Switch.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/TextBufferTargetInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/TextBufferTargetInfo.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/TextDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/TextDirection.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/TextViewLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/TextViewLayer.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/TextWindowType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/TextWindowType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ToolShell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ToolShell.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ToolbarSpaceStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ToolbarSpaceStyle.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/ToolbarStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/ToolbarStyle.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/TreeDragDest.swift: -------------------------------------------------------------------------------- 1 | import CGtk3 2 | 3 | public protocol TreeDragDest: GObjectRepresentable { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/TreeDragSource.swift: -------------------------------------------------------------------------------- 1 | import CGtk3 2 | 3 | public protocol TreeDragSource: GObjectRepresentable { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/TreeSortable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/TreeSortable.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/TreeViewColumnSizing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/TreeViewColumnSizing.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/TreeViewDropPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/TreeViewDropPosition.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/TreeViewGridLines.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/TreeViewGridLines.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/Unit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/Unit.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/WidgetHelpType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/WidgetHelpType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/WindowPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/WindowPosition.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/WindowType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/WindowType.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Generated/WrapMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Generated/WrapMode.swift -------------------------------------------------------------------------------- /Sources/Gtk3/GtkError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/GtkError.swift -------------------------------------------------------------------------------- /Sources/Gtk3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/LICENSE.md -------------------------------------------------------------------------------- /Sources/Gtk3/Pixbuf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Pixbuf.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/CSS/CSSBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/CSS/CSSBlock.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/CSS/CSSProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/CSS/CSSProperty.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/CSS/CSSProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/CSS/CSSProvider.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/GAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/GAction.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/GActionGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/GActionGroup.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/GActionMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/GActionMap.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/GFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/GFile.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/GMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/GMenu.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/GObjectProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/GObjectProperty.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/GObjectRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/GObjectRepresentable.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/GSList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/GSList.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/GSimpleAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/GSimpleAction.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/GSimpleActionGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/GSimpleActionGroup.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/GValueRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/GValueRepresentable.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/GValueRepresentableEnum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/GValueRepresentableEnum.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/MaxDepthTypeDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/MaxDepthTypeDescription.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/Pango.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/Pango.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/String.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Utility/TextBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Utility/TextBuffer.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/ApplicationWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/ApplicationWindow.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Bin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Bin.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Box.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Calendar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Calendar.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Container.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/CustomRootWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/CustomRootWidget.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Dialog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Dialog.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/FileChooser+ManualAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/FileChooser+ManualAdditions.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Fixed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Fixed.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Grid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Grid.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Image+ManualAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Image+ManualAdditions.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Label+ManualAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Label+ManualAdditions.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/ListBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/ListBox.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Menu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Menu.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/MessageDialog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/MessageDialog.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Misc.swift: -------------------------------------------------------------------------------- 1 | open class Misc: Widget {} 2 | -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Orientable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Orientable.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Paned.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Paned.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Range+ManualAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Range+ManualAdditions.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Scale+ManualAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Scale+ManualAdditions.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/ScrolledWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/ScrolledWindow.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Spinner+ManualAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Spinner+ManualAdditions.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/TextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/TextView.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/ToggleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/ToggleButton.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Viewport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Viewport.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Widget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Widget.swift -------------------------------------------------------------------------------- /Sources/Gtk3/Widgets/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/Widgets/Window.swift -------------------------------------------------------------------------------- /Sources/Gtk3/WrapMode+PangoWrapMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3/WrapMode+PangoWrapMode.swift -------------------------------------------------------------------------------- /Sources/Gtk3Backend/Gtk3Backend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3Backend/Gtk3Backend.swift -------------------------------------------------------------------------------- /Sources/Gtk3CustomWidgets/gtk_custom_root_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3CustomWidgets/gtk_custom_root_widget.c -------------------------------------------------------------------------------- /Sources/Gtk3CustomWidgets/gtk_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3CustomWidgets/gtk_helpers.c -------------------------------------------------------------------------------- /Sources/Gtk3CustomWidgets/include/gtk_custom_root_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3CustomWidgets/include/gtk_custom_root_widget.h -------------------------------------------------------------------------------- /Sources/Gtk3CustomWidgets/include/gtk_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3CustomWidgets/include/gtk_helpers.h -------------------------------------------------------------------------------- /Sources/Gtk3Example/GTK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3Example/GTK.png -------------------------------------------------------------------------------- /Sources/Gtk3Example/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/Gtk3Example/main.swift -------------------------------------------------------------------------------- /Sources/GtkBackend/GtkBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/GtkBackend/GtkBackend.swift -------------------------------------------------------------------------------- /Sources/GtkCodeGen/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/GtkCodeGen/Extensions.swift -------------------------------------------------------------------------------- /Sources/GtkCodeGen/GIR.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/GtkCodeGen/GIR.swift -------------------------------------------------------------------------------- /Sources/GtkCodeGen/GtkCodeGen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/GtkCodeGen/GtkCodeGen.swift -------------------------------------------------------------------------------- /Sources/GtkCustomWidgets/gtk_custom_root_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/GtkCustomWidgets/gtk_custom_root_widget.c -------------------------------------------------------------------------------- /Sources/GtkCustomWidgets/gtk_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/GtkCustomWidgets/gtk_helpers.c -------------------------------------------------------------------------------- /Sources/GtkCustomWidgets/include/gtk_custom_root_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/GtkCustomWidgets/include/gtk_custom_root_widget.h -------------------------------------------------------------------------------- /Sources/GtkCustomWidgets/include/gtk_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/GtkCustomWidgets/include/gtk_helpers.h -------------------------------------------------------------------------------- /Sources/GtkExample/GTK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/GtkExample/GTK.png -------------------------------------------------------------------------------- /Sources/GtkExample/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/GtkExample/main.swift -------------------------------------------------------------------------------- /Sources/HotReloadingMacrosPlugin/HotReloadableAppMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/HotReloadingMacrosPlugin/HotReloadableAppMacro.swift -------------------------------------------------------------------------------- /Sources/HotReloadingMacrosPlugin/HotReloadableExprMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/HotReloadingMacrosPlugin/HotReloadableExprMacro.swift -------------------------------------------------------------------------------- /Sources/HotReloadingMacrosPlugin/HotReloadingMacrosPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/HotReloadingMacrosPlugin/HotReloadingMacrosPlugin.swift -------------------------------------------------------------------------------- /Sources/LVGLBackend/LVGLBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/LVGLBackend/LVGLBackend.swift -------------------------------------------------------------------------------- /Sources/QtBackend/QtBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/QtBackend/QtBackend.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/App.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Backend/AnyWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Backend/AnyWidget.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Backend/AppBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Backend/AppBackend.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Backend/CellPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Backend/CellPosition.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Backend/DialogResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Backend/DialogResult.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Backend/FileChooserResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Backend/FileChooserResult.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Backend/FileDialogOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Backend/FileDialogOptions.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Backend/MenuImplementationStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Backend/MenuImplementationStyle.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Backend/OpenDialogOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Backend/OpenDialogOptions.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Backend/ResolvedMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Backend/ResolvedMenu.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Backend/SaveDialogOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Backend/SaveDialogOptions.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Builders/AlertActionsBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Builders/AlertActionsBuilder.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Builders/CommandsBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Builders/CommandsBuilder.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Builders/MenuItemsBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Builders/MenuItemsBuilder.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Builders/SceneBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Builders/SceneBuilder.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Builders/SceneBuilder.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Builders/SceneBuilder.swift.gyb -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Builders/TableRowBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Builders/TableRowBuilder.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Builders/TableRowBuilder.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Builders/TableRowBuilder.swift.gyb -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Builders/ViewBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Builders/ViewBuilder.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Builders/ViewBuilder.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Builders/ViewBuilder.swift.gyb -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Environment/Actions/AlertAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Environment/Actions/AlertAction.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Environment/Actions/DismissAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Environment/Actions/DismissAction.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Environment/Actions/OpenURLAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Environment/Actions/OpenURLAction.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Environment/Actions/PresentAlertAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Environment/Actions/PresentAlertAction.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Environment/Actions/PresentFileSaveDialogAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Environment/Actions/PresentFileSaveDialogAction.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Environment/Actions/PresentSingleFileOpenDialogAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Environment/Actions/PresentSingleFileOpenDialogAction.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Environment/Actions/RevealFileAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Environment/Actions/RevealFileAction.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Environment/Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Environment/Environment.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Environment/EnvironmentValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Environment/EnvironmentValues.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Environment/ListStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Environment/ListStyle.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/HotReloadingMacros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/HotReloadingMacros.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Layout/LayoutSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Layout/LayoutSystem.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Layout/ViewSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Layout/ViewSize.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Layout/ViewUpdateResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Layout/ViewUpdateResult.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Scenes/CommandMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Scenes/CommandMenu.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Scenes/Commands.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Scenes/Commands.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Scenes/Modifiers/CommandsModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Scenes/Modifiers/CommandsModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Scenes/Scene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Scenes/Scene.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Scenes/SceneGraphNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Scenes/SceneGraphNode.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Scenes/TupleScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Scenes/TupleScene.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Scenes/TupleScene.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Scenes/TupleScene.swift.gyb -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Scenes/WindowGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Scenes/WindowGroup.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Scenes/WindowGroupNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Scenes/WindowGroupNode.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/State/Binding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/State/Binding.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/State/Cancellable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/State/Cancellable.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/State/DynamicProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/State/DynamicProperty.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/State/ObservableObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/State/ObservableObject.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/State/Published.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/State/Published.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/State/Publisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/State/Publisher.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/State/State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/State/State.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/AppKitBackend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/AppKitBackend.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Built-in backends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Built-in backends.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Controls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Controls.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Custom backends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Custom backends.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/DefaultBackend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/DefaultBackend.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Deprecated.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Environment.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Examples.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Gestures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Gestures.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Gtk3Backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Gtk3Backend.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/GtkBackend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/GtkBackend.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Hot reloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Hot reloading.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Implementation details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Implementation details.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Layout.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Navigation.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Preferences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Preferences.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Quick start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Quick start.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Scene graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Scene graph.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Scenes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Scenes.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Setting up a development environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Setting up a development environment.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Setting up a virtual development environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Setting up a virtual development environment.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Shapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Shapes.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/State basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/State basics.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Styling.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/SwiftCrossUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/SwiftCrossUI.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/Tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/Tables.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/UIKitBackend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/UIKitBackend.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/View fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/View fundamentals.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/View graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/View graph.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/SwiftCrossUI.docc/WinUIBackend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/SwiftCrossUI.docc/WinUIBackend.md -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/Alignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/Alignment.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/AppMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/AppMetadata.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/Axis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/Axis.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/Color.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/ColorScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/ColorScheme.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/ContentMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/ContentMode.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/ContentType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/ContentType.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/DeviceClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/DeviceClass.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/Edge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/Edge.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/Font.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/GeometryProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/GeometryProxy.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/HorizontalAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/HorizontalAlignment.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/MainActorBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/MainActorBox.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/Orientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/Orientation.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/Path.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/PresentationDetent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/PresentationDetent.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/ScrollDismissesKeyboardMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/ScrollDismissesKeyboardMode.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/StackAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/StackAlignment.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/TextContentType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/TextContentType.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/TextStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/TextStyle.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/VerticalAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/VerticalAlignment.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/Visibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/Visibility.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Values/WindowResizability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Values/WindowResizability.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/ViewGraph/AnyViewGraphNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/ViewGraph/AnyViewGraphNode.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/ViewGraph/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/ViewGraph/Box.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/ViewGraph/ErasedViewGraphNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/ViewGraph/ErasedViewGraphNode.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/ViewGraph/PreferenceValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/ViewGraph/PreferenceValues.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/ViewGraph/ViewGraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/ViewGraph/ViewGraph.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/ViewGraph/ViewGraphNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/ViewGraph/ViewGraphNode.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/ViewGraph/ViewGraphNodeChildren.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/ViewGraph/ViewGraphNodeChildren.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/ViewGraph/ViewGraphSnapshotter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/ViewGraph/ViewGraphSnapshotter.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/AnyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/AnyView.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Button.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Checkbox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Checkbox.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Divider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Divider.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/EitherView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/EitherView.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/ElementaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/ElementaryView.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/EmptyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/EmptyView.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/ForEach.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/ForEach.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/GeometryReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/GeometryReader.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Group.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Group.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/HStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/HStack.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/HotReloadableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/HotReloadableView.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Image.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/List.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/List.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Menu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Menu.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/MenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/MenuItem.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/AlertModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/AlertModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/ConditionalApplicationModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/ConditionalApplicationModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/DisabledModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/DisabledModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/EnvironmentModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/EnvironmentModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Handlers/OnChangeModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Handlers/OnChangeModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Handlers/OnHoverModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Handlers/OnHoverModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Handlers/OnOpenURLModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Handlers/OnOpenURLModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Handlers/OnSubmitModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Handlers/OnSubmitModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Handlers/OnTapGestureModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Handlers/OnTapGestureModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Layout/AspectRatioModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Layout/AspectRatioModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Layout/BackgroundModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Layout/BackgroundModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Layout/FixedSizeModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Layout/FixedSizeModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Layout/FrameModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Layout/FrameModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Layout/MultilineTextAlignmentModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Layout/MultilineTextAlignmentModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Layout/OverlayModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Layout/OverlayModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Layout/PaddingModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Layout/PaddingModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Lifecycle/OnAppearModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Lifecycle/OnAppearModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Lifecycle/OnDisappearModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Lifecycle/OnDisappearModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Lifecycle/TaskModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Lifecycle/TaskModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/PreferenceModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/PreferenceModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/PresentationModifiers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/PresentationModifiers.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/ScrollDismissesKeyboardModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/ScrollDismissesKeyboardModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/SheetModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/SheetModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Style/ColorSchemeModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Style/ColorSchemeModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Style/CornerRadiusModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Style/CornerRadiusModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Style/FontModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Style/FontModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Style/ForegroundColorModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Style/ForegroundColorModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/Style/ToggleStyleModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/Style/ToggleStyleModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/TextContentTypeModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/TextContentTypeModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Modifiers/TextSelectionModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Modifiers/TextSelectionModifier.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/NavigationLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/NavigationLink.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/NavigationPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/NavigationPath.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/NavigationSplitView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/NavigationSplitView.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/NavigationStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/NavigationStack.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/OptionalView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/OptionalView.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Picker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Picker.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/ProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/ProgressView.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/ScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/ScrollView.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Shapes/Capsule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Shapes/Capsule.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Shapes/Circle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Shapes/Circle.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Shapes/Ellipse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Shapes/Ellipse.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Shapes/Rectangle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Shapes/Rectangle.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Shapes/RoundedRectangle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Shapes/RoundedRectangle.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Shapes/Shape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Shapes/Shape.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Shapes/StyledShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Shapes/StyledShape.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Slider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Slider.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Spacer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Spacer.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/SplitView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/SplitView.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Table.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Table.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/TableColumn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/TableColumn.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/TableRowContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/TableRowContent.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/TableRowContent.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/TableRowContent.swift.gyb -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Text.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Text.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/TextEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/TextEditor.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/TextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/TextField.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/Toggle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/Toggle.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/ToggleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/ToggleButton.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/ToggleSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/ToggleSwitch.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/TupleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/TupleView.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/TupleView.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/TupleView.swift.gyb -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/TupleViewChildren.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/TupleViewChildren.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/TupleViewChildren.swift.gyb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/TupleViewChildren.swift.gyb -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/TypeSafeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/TypeSafeView.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/VStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/VStack.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/View.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/ViewContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/ViewContent.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/WebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/WebView.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/Views/ZStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/Views/ZStack.swift -------------------------------------------------------------------------------- /Sources/SwiftCrossUI/_App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/SwiftCrossUI/_App.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/ColorScheme+UIUserInterfaceStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/ColorScheme+UIUserInterfaceStyle.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/Font+UIFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/Font+UIFont.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/KeyboardToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/KeyboardToolbar.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIColor+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIColor+Color.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend+Alert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend+Alert.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend+Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend+Container.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend+Control.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend+Control.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend+FilePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend+FilePicker.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend+List.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend+List.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend+Menu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend+Menu.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend+Passive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend+Passive.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend+Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend+Path.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend+Picker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend+Picker.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend+Progress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend+Progress.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend+Sheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend+Sheet.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend+SplitView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend+SplitView.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend+WebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend+WebView.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend+Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend+Window.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIKitBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIKitBackend.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIViewControllerRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIViewControllerRepresentable.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/UIViewRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/UIViewRepresentable.swift -------------------------------------------------------------------------------- /Sources/UIKitBackend/Widget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/UIKitBackend/Widget.swift -------------------------------------------------------------------------------- /Sources/WinUIBackend/Console.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/WinUIBackend/Console.swift -------------------------------------------------------------------------------- /Sources/WinUIBackend/HWNDInterop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/WinUIBackend/HWNDInterop.swift -------------------------------------------------------------------------------- /Sources/WinUIBackend/WinUIBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/WinUIBackend/WinUIBackend.swift -------------------------------------------------------------------------------- /Sources/WinUIInterop/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Sources/WinUIInterop/dummy.cpp -------------------------------------------------------------------------------- /Sources/WinUIInterop/include/WinUIInterop.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tests/SwiftCrossUITests/PublisherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Tests/SwiftCrossUITests/PublisherTests.swift -------------------------------------------------------------------------------- /Tests/SwiftCrossUITests/SwiftCrossUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/Tests/SwiftCrossUITests/SwiftCrossUITests.swift -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/banner.png -------------------------------------------------------------------------------- /format_and_lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/format_and_lint.sh -------------------------------------------------------------------------------- /generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/generate.sh -------------------------------------------------------------------------------- /gyb/gyb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python2.7 2 | import gyb 3 | gyb.main() 4 | -------------------------------------------------------------------------------- /gyb/gyb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/gyb/gyb.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/test.sh -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackotter/swift-cross-ui/HEAD/vcpkg.json --------------------------------------------------------------------------------