GithubHelp home page GithubHelp logo

glazier's Introduction

glazier

Glazier is an operating system integration layer infrastructure layer intended for high quality GUI toolkits in Rust. It is agnostic to the choice of drawing, so the client must provide that, but the goal is to abstract over most of the other integration points with the underlying operating system.

Primary platforms are Windows, macOS, and Linux. Web is a secondary platform. Other ports may happen if they are contributed.

This library is currently work in progress and should be considered experimental. Contributions are welcome, see CONTRIBUTING for more details.

For discussion, please look at or join the #glazier stream on our zulip instance.

Scope

The following tasks are in scope. Mostly they are implemented, but as always there is more refinement to be done.

  • Window creation, including subwindows (useful for context menus and the like).

  • System menus. These are especially important on macOS.

  • Keyboard events.

  • Input Method Editor. On macOS, correct handling of dead keys is through the IME, and an application built on Glazier is expected to handle IME.

  • Mouse and pointer (touch and pen) events. Mouse events are currently supported, pointers are a hoped-for feature.

  • Cursors (mouse pointer indicator on the screen), including custom images.

  • Providing DPI scaling information to the application.

  • Clipboard.

  • File dialog.

The general philosophy is that a task is in scope if it requires deep integration with the platform and is not easy to separate out as a separate library that layers on top of Glazier.

Hooks provided

Glazier does not provide drawing primitives and is intended to be agnostic to the drawing infrastructure. It uses raw-window-handle to provide an attachment point for the drawing code, a widely used abstraction in the Rust ecosystem. A top priority will be integrating with the wgpu ecosystem. In addition, we would gladly accept integration work to make Piet run on top of Glazier, but this is not a core priority.

We hope to integrate with AccessKit for accessibility.

While Glazier currently has primitive support for scheduling repaint cycles, ultimately we would like to support frame pacing. Doing the actual decision of when to repaint is probably out of scope, but providing portable infrastructure (CVDisplayLink on macOS, presentation statistics, scheduling based on high resolution timers) is in scope.

Out of scope

We have no solution to interfacing with the system compositor. This is necessary to handle embedded video content properly, and is also a good way to stitch together other embedded content such as web views.

Like drawing, most font and text issues are out of scope. Localization and internationalization are expected to be handled by the layer above, though platform hooks would be in scope (for example, querying the locale preference).

Glazier does not provide a solution for packaging and distribution of applications. Work on this is needed, and we would gladly cooperate with such efforts.

Design

The code in Glazier can be divided into roughly two categories: the platform agnostic code and types, which are exposed directly, and the platform-specific implementations of these types, which live in per-backend directories in src/backend. The backend-specific code for the current backend is reexported as glazier::backend.

Glazier does not generally expose backend types directly. Instead, we expose wrapper structs that define the common interface, and then call corresponding methods on the concrete type for the current backend.

Unsafe

Interacting with system APIs is inherently unsafe. One of the goals of Glazier is to handle almost all interaction with these APIs, exposing a safe interface to the UI toolkit. The exception is drawing, which will generally require at least some additional unsafe code for integration.

Similar libraries

  • winit. This is by far the most commonly used window creation crate. As discussed in the links below, the scope is defined quite differently. In general, winit is probably more suitable for games and game-like applications, while Glazier is intended to provide more of the full desktop GUI experience, including system menus and support for IME.

  • baseview. Another window creation abstraction, motivated mostly by the audio plugin use case where the module is not in control of its own UI runloop.

Further reading

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.