All Projects → rhx → Swiftgtk

rhx / Swiftgtk

Licence: bsd-2-clause
A Swift wrapper around gtk-3.x and gtk-4.x that is largely auto-generated from gobject-introspection

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Swiftgtk

Awesome Gtk
List of awesome GTK+ (gtk3) applications
Stars: ✭ 174 (-3.33%)
Mutual labels:  gnome, gtk, gtk3
ThemeChanger
Theme changing utility for Linux, etc.
Stars: ✭ 14 (-92.22%)
Mutual labels:  gtk, gnome, gtk3
GabTag
A gtk linux application to handle audio tags 🎵
Stars: ✭ 34 (-81.11%)
Mutual labels:  gtk, gnome, gtk3
pw3270
3270 Emulator for gtk
Stars: ✭ 38 (-78.89%)
Mutual labels:  gtk, gnome, gtk3
Gradio
Stars: ✭ 335 (+86.11%)
Mutual labels:  gnome, gtk, gtk3
Marker
🖊 A gtk3 markdown editor
Stars: ✭ 644 (+257.78%)
Mutual labels:  gnome, gtk, gtk3
gui-python-gtk
Repositório criado para documentar e centralizar conteúdos, dicas, tutoriais e exemplos de código sobre a construção de interfaces com a linguagem de programação Python (PyGObject) e o toolkit gráfico Gtk 4.
Stars: ✭ 85 (-52.78%)
Mutual labels:  gtk, gnome, gtk3
vulcan
A minimalistic text editor designed for both ordinary use and software development
Stars: ✭ 46 (-74.44%)
Mutual labels:  gtk, gnome, gtk3
Node Gtk
GTK+ bindings for NodeJS (via GObject introspection)
Stars: ✭ 287 (+59.44%)
Mutual labels:  gnome, gtk, gtk3
Sunflower
Small and highly customizable twin-panel file manager for Linux with support for plugins.
Stars: ✭ 347 (+92.78%)
Mutual labels:  gnome, gtk, gtk3
Plotinus
A searchable command palette in every modern GTK+ application
Stars: ✭ 805 (+347.22%)
Mutual labels:  gnome, gtk, gtk3
Gir
Tool to generate rust bindings and user API for glib-based libraries
Stars: ✭ 124 (-31.11%)
Mutual labels:  gnome, gtk
Byte
A Music Player designed for elementary OS
Stars: ✭ 128 (-28.89%)
Mutual labels:  gtk, gtk3
Automathemely
Simple, set-and-forget python application for changing between desktop themes according to light and dark hours
Stars: ✭ 169 (-6.11%)
Mutual labels:  gnome, gtk
Glide
Linux/macOS media player based on GStreamer and GTK+
Stars: ✭ 123 (-31.67%)
Mutual labels:  gtk, gtk3
Adementary Theme
A theme for GNOME/Budgie/Xfce/Cinnamon desktop with elementary-ish aesthetics.
Stars: ✭ 129 (-28.33%)
Mutual labels:  gnome, gtk
Mail
Mail app designed for elementary OS
Stars: ✭ 130 (-27.78%)
Mutual labels:  gtk, gtk3
Hydrapaper
A Gtk utility to set two different backgrounds for each monitor on GNOME (which lacks this feature)
Stars: ✭ 134 (-25.56%)
Mutual labels:  gnome, gtk
Galacritty
WIP GTK terminal emulator based on Alacritty
Stars: ✭ 136 (-24.44%)
Mutual labels:  gtk, gtk3
Gsimplecal
Simple and lightweight GTK calendar (BSD license)
Stars: ✭ 121 (-32.78%)
Mutual labels:  gtk, gtk3

SwiftGtk

A Swift wrapper around gtk-3.x and gtk-4.x that is largely auto-generated from gobject-introspection. This project tries to make gtk more "swifty" than using the plain C language interface. For up to date (auto-generated) reference documentation, see https://rhx.github.io/SwiftGtk/

macOS 11 build macOS 10.15 build macOS gtk4 build Ubuntu 20.04 build Ubuntu 18.04 build

What is new?

Experimental support for gtk 4 was added via the gtk4 branch.

Version 12 of gir2swift pulls in PR#10, addressing several issues:

  • Improvements to the Build experience and LSP rhx/SwiftGtk#34
  • Fix issues with LLDB rhx/SwiftGtk#39
  • Controversial: Implicitly marks all declarations named "priv" as if they had attribute private=1
  • Prevents all "Private" records from generating unless generated in their instance record
    • -a option generates all records
  • Introduces CI
  • For Class metadata types no longer generates class wrappers. Ref structs now contain static method which returnes the GType of the class and instance of the Class metatype wrapped in the Ref struct.
  • Adds final class GWeak where T could be any Ref struct of a type which supports ARC. This class is a property wrapper which contains weak reference to any instance of T. This is especially beneficial for capture lists.
  • Adds support for weak observation.
  • Constructors and factories of GObjectInitiallyUnowned classes now consume floating reference upon initialisation as advised by the GObject documentation

Partially implemented:

Other Notable changes

Version 11 introduces a new type system into gir2swift, to ensure it has a representation of the underlying types. This is necessary for Swift 5.3 onwards, which requires more stringent casts. As a consequence, accessors can accept and return idiomatic Swift rather than underlying types or pointers. This means that a lot of the changes will be source-breaking for code that was compiled against libraries built with earlier versions of gir2swift.

  • Parameters use idiomatic Swift names (e.g. camel case instead of snake case, splitting out of "for", "from", etc.)
  • Requires Swift 5.2 or later (Swift 5.3 is required for the gtk4 branch)
  • Uses the namespace referenced in the gir file
  • Wrapper code is now @inlinable to enable the compiler to optimise away most of the wrappers
  • Parameters and return types use more idiomatic Swift (e.g. Ref wrappers instead of pointers, Int instead of gint, etc.)
  • Functions that take or return records now are templated instead of using the type-erased Protocol
  • ErrorType has been renamed GLibError to ensure it neither clashes with Swift.Error nor the GLib.ErrorType scanner enum
  • Parameters or return types for records/classes now use the corresponding, lightweight Swift Ref wrapper instead of the underlying pointer

Usage

Normally, you don't build this package directly (but for testing you can - see 'Building' below). Instead you need to embed SwiftGtk into your own project using the Swift Package Manager. After installing the prerequisites (see 'Prerequisites' below), add SwiftGtk as a dependency to your Package.swift file, e.g.:

// swift-tools-version:5.3

import PackageDescription

let package = Package(name: "MyPackage",
    dependencies: [
        .package(name: "gir2swift", url: "https://github.com/rhx/gir2swift.git", .branch("main")),
        .package(name: "Gtk", url: "https://github.com/rhx/SwiftGtk.git", .branch("gtk3")),
    ],
    targets: [.target(name: "MyPackage", dependencies: ["Gtk"])]
)

For gtk4 replace .branch("gtk3") with .branch("gtk4").

Examples

You can find some example projects on GitHub that show how to use SwiftGtk:

Build Scripts

The demo applications come with build scripts that configure some environment variables and pass required arguments when calling swift build, swift package, etc. The easiest way to get started is to clone one of the following projects, then copy all the *.sh shell scripts into your own project. Also, if you want to be able to build a desktop app, create a Resources folder, and copy (at least) the Info.plist file as well:

  • SwiftHelloGtk: this is a quick starting point for a simple gtk app that does not need any resources.
  • SwiftHelloGtkBuilder: this is a good starting point for a more complex app that has user interface files (*.ui) for GtkBuilder in its Resources folder.

You first need to create the Swift Wrappers using

./run-gir2swift.sh

After that, you can build, test, or run your project using the usual Swift compiler commands:

swift build
swift test
swift run

On macOS, there is an issue that requires you to pass in the required flags manually (see Building below). You can also build the project using Xcode on macOS instead. To do this, you need to create an Xcode project first, then open the project in the Xcode IDE:

./xcodegen.sh
open MyPackage.xcodeproj

After that, use the (usual) Build and Test buttons to build/test this package. Please note that, at this stage, the Swift Package manager is not able to create App targets for Xcode (so to build a macOs app rather than just a command line executable, you still need to use the build.sh script that calls app-wrapper.sh to create the standalone app bundle).

Prerequisites

Swift

To build, you need at least Swift 5.2 (Swift 5.3 is required for gtk4), download from https://swift.org/download/ -- if you are using macOS, make sure you have the command line tools installed as well). Test that your compiler works using swift --version, which should give you something like

$ swift --version
Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)
Target: x86_64-apple-darwin20.3.0

on macOS, or on Linux you should get something like:

$ swift --version
Swift version 5.3.2 (swift-5.3.2-RELEASE)
Target: x86_64-unknown-linux-gnu

Gtk 3.22 or higher

The Swift wrappers have been tested with glib-2.56, 2.58, 2.60, 2.62, and 2.64, and gdk/gtk 3.22, 3.24, and 4.0 on the gtk4 branch. They should work with higher versions, but YMMV. Also make sure you have gobject-introspection and its .gir files installed.

Linux

Ubuntu

On Ubuntu 20.04 and 18.04, you can use the gtk that comes with the distribution. Just install with the apt package manager:

sudo apt update
sudo apt install libgtk-3-dev gir1.2-gtksource-3.0 gobject-introspection libgirepository1.0-dev libxml2-dev jq

If you prefer a newer version of gtk, you can also install it from the GNOME 3 Staging PPA (see https://launchpad.net/~gnome3-team/+archive/ubuntu/gnome3-staging), but be aware that this can be a bit dangerous (as this removes packages that can be vital, particularly if you use a GNOME-based desktop), so only do this if you know what you are doing:

sudo add-apt-repository ppa:gnome3-team/gnome3-staging
sudo apt update
sudo apt dist-upgrade
sudo apt install libgtk-3-dev gir1.2-gtksource-3.0 gobject-introspection libgirepository1.0-dev libxml2-dev jq
Fedora

On Fedora 29, you can use the gtk that comes with the distribution. Just install with the dnf package manager:

sudo dnf install gtk3-devel pango-devel cairo-devel cairo-gobject-devel glib2-devel gobject-introspection-devel libxml2-devel jq

macOS

On macOS, you can install gtk using HomeBrew (for setup instructions, see http://brew.sh). Once you have a running HomeBrew installation, you can use it to install a native version of gtk:

brew update
brew install gtk+3 glib glib-networking gobject-introspection pkg-config jq

Building

As pointed out in the 'Usage' section above, you don't normally build this package directly, but instead you embed it into your own project. However, you can build and test this module separately to ensure that everything works. Make sure you have all the prerequisites installed (see above). After that, you can simply clone this repository and build the command line executable (be patient, this will download all the required dependencies and take a while to compile) using

git clone https://github.com/rhx/SwiftGtk.git
cd SwiftGtk
./run-gir2swift.sh
swift build
swift test

Please note that on macOS, due to a bug currently in the Swift Package Manager, you need to pass in the build flags manually, i.e. instead of swift build and swift test you can run

swift build `./run-gir2swift.sh flags -noUpdate`
swift test  `./run-gir2swift.sh flags -noUpdate`

Xcode

On macOS, you can build the project using Xcode instead. To do this, you need to create an Xcode project first, then open the project in the Xcode IDE:

./xcodegen.sh
open Gtk.xcodeproj

After that, use the (usual) Build and Test buttons to build/test this package.

Documentation

You can find reference documentation inside the docs folder. This was generated using the jazzy tool. If you want to generate your own documentation, matching your local installation, you can use the generate-documentation.sh script in the repository.

Troubleshooting

Here are some common errors you might encounter and how to fix them.

SwiftGtk takes a very long time to build

Yes, gtk is a huge beast. The Swift interface generated from the gtk header files is close to 300,000 lines. This takes a long time to build!

Old Swift toolchain or Xcode

If you get an error such as

$ ./build.sh 
error: unable to invoke subcommand: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-package (No such file or directory)

this probably means that your Swift toolchain is too old. Make sure the latest toolchain is the one that is found when you run the Swift compiler (see above).

If you get an older version, make sure that the right version of the swift compiler is found first in your PATH. On macOS, use xcode-select to select and install the latest version, e.g.:

sudo xcode-select -s /Applications/Xcode.app
xcode-select --install

Known Issues

  • When building, a lot of warnings appear. This is largely an issue with automatic RawRepresentable conformance in the Swift Standard library. As a workaround, you can turn this off by passing the -Xswiftc -suppress-warnings parameter when building.

  • The current build system does not support directory paths with spaces (e.g. the My Drive directory used by Google Drive File Stream).

  • BUILD_DIR is not supported in the current build system.

As a workaround, you can use the old build scripts, e.g. ./build.sh (instead of run-gir2swift.sh and swift build) to build a package.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].