GithubHelp home page GithubHelp logo

lirios / aurora-client Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 341 KB

Qt-style API to interact with Wayland protocols inside Qt-based graphical applications

License: GNU Lesser General Public License v3.0

CMake 6.80% C++ 91.99% C 1.20%

aurora-client's Introduction

Liri

GitHub issues Bountysource

This repository contains:

  • Manifest files for developers.
  • General issue tracker.
  • Backers list.
  • Wiki.

Contributor Guide

Please read the detailed contributor guide.

General issue tracker

Click on the Issues tab and submit issues.

Wiki

Click on the Wiki tab, read and/or write new content.

Alternatively you can clone the Wiki repository, work on your local system and push the changes back.

Clone the repository with:

git clone [email protected]:lirios/lirios.wiki.git

aurora-client's People

Contributors

plfiorini avatar

Stargazers

 avatar

Watchers

 avatar  avatar

aurora-client's Issues

Declarative input region

We want to allow clients to easily set the input region of their window.

Here's an example of a full screen window that represents the UI top layer and inside has a panel and notifications.
The window is transparent and the user should be able to click through everywhere but the panel and notifications.

The idea is that each InputArea will register itself with InputRegion and everytime one of its properties (enabled, x, y, width, height are changed, it triggers the region calculation).

Disabled input regions will be skipped in the calculation.

Window {
    id: topLayerWindow

    color: "transparent"

    InputRegion {
        id: myInputRegion
    }

    Rectangle {
        id: panel
        anchors.left: parent.left
        anchors.right: parent.right
        anchors.bottom: parent.bottom
        color: "black"
        height: 56

        InputArea {
            region: myInputRegion
            enabled: true
            x: parent.x
            y: parent.y
            width: parent.width
            height: parent.height
        }
    }

    ListView {
        id: notifications
        anchors.top: parent.top
        anchors.bottom: parent.bottom
        anchors.right: parent.right
        width: 300
        visible: count > 0

        InputArea {
            region: myInputRegion
            enabled: parent.visible
            x: parent.x
            y: parent.y
            width: parent.width
            height: parent.height
        }
    }
}

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.