Giter Site home page Giter Site logo

Implemented protocols about pywlroots HOT 1 OPEN

flacjacket avatar flacjacket commented on September 24, 2024
Implemented protocols

from pywlroots.

Comments (1)

Sydiepus avatar Sydiepus commented on September 24, 2024

I made a small script to check for unimplemented wlr types.

import os

system_proto = os.listdir("/usr/include/wlr/types")
implem_proto = os.listdir("wlroots/wlr_types")

system_proto_set = set(map(lambda x: x.replace("wlr_", "").replace(".h", ""), system_proto))
implem_proto_set = set(map(lambda x: x.replace(".py", ""), implem_proto))

not_implem_proto = system_proto_set - implem_proto_set

for i in not_implem_proto :
    print(f"{i} not implemented")

it yields this result :

xdg_foreign_v1 not implemented
drm not implemented
fullscreen_shell_v1 not implemented
input_method_v2 not implemented
input_inhibitor not implemented
tablet_tool not implemented
primary_selection not implemented
xdg_foreign_v2 not implemented
relative_pointer_v1 not implemented
region not implemented
xdg_foreign_registry not implemented
data_device not implemented
keyboard_group not implemented
switch not implemented
tablet_v2 not implemented
single_pixel_buffer_v1 not implemented
drm_lease_v1 not implemented
text_input_v3 not implemented
session_lock_v1 not implemented
tablet_pad not implemented
damage_ring not implemented
keyboard_shortcuts_inhibit_v1 not implemented
linux_dmabuf_v1 not implemented
subcompositor not implemented

I hope that this was useful in any way.

from pywlroots.

Related Issues (20)

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.