Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. wayland
    Log in to post

    • UNSOLVED qt.qpa.plugin: Could not load the Qt platform plugin "wayland-egl" in "" even though it was found.
      Installation and Deployment • wayland weston rdp screen-share • • M4Z4  

      1
      0
      Votes
      1
      Posts
      117
      Views

      No one has replied

    • UNSOLVED [SOLVED] start compiled QT Wayland compositor from tty.
      General and Desktop • wayland qtwayland compositor • • AhmadRaniri  

      3
      0
      Votes
      3
      Posts
      101
      Views

      Hi and welcome to devnet, Glad you found a solution ! Can you share it so that other people encountering the same issue can benefit ?
    • UNSOLVED Wayland compositor example doesn't work
      General and Desktop • wayland examples compositing • • lartimus  

      3
      0
      Votes
      3
      Posts
      269
      Views

      The example does seem to work, even with the warning messages. I just needed to run a Qt application by calling from the command line with -platform wayland. I assumed that because of the warning messages it would not work. My environment is as follows: OS: Ubuntu 20.10 running in VMWare Player virtual machine on a Windows 10 laptop. Running from QtCreator 6.1.
    • UNSOLVED Build Qt6 without X11 dependencies?
      Installation and Deployment • qt6 wayland • • omenos  

      2
      0
      Votes
      2
      Posts
      147
      Views

      Just build Qt and don't deploy the xcb plugin (if it is really build).
    • UNSOLVED Qt Wayland client wait for Wayland Compositor
      Mobile and Embedded • wayland • • Mmader87  

      5
      0
      Votes
      5
      Posts
      451
      Views

      You could use the wayland-client library like this before your instantiate your QApplication: #include <QApplication> #include <wayland-client.h> #include <unistd.h> int main(int argc, char *argv[]) { struct wl_display *display = NULL; while(!display) { // Return NULL if no compositor avaliable in wayland-0 display = wl_display_connect(NULL); // Wait 200 ms so you dont overuse your CPU usleep(200000); } // Disconnect because QApplication will stablish its own connection wl_display_disconnect(display); // Start the app QApplication app(argc,argv); ... } Its a bit ugly but it should work.
    • UNSOLVED Qtwayland on Vulkan
      General and Desktop • wayland qtwayland vulkan wsi • • salutcava  

      2
      0
      Votes
      2
      Posts
      348
      Views

      Hi, That's a question better asked on the interest mailing list. You'll find there Qt's developers/maintainers. This forum is more user oriented.
    • SOLVED Qt-Wayland: Touch input behaving wonky.
      Mobile and Embedded • touchscreen wayland tslib • • Joseph Keene  

      2
      0
      Votes
      2
      Posts
      887
      Views

      I figured out my issue. I set the following environment variable: QT_QPA_EGLFS_DISABLE_INPUT=1 Of course, the cursor dissapears, but when pressing around my Gui running on the Compositor I'm not noticing any buttons being pressed except when I press in them, so that's definitely preferred to a wonky cursor!
    • UNSOLVED Buggy user interface on wayland
      General and Desktop • c++ linux x11 wayland • • nhhollander  

      1
      0
      Votes
      1
      Posts
      385
      Views

      No one has replied

    • UNSOLVED Qt based composer doesn't work without X11 while weston works.
      General and Desktop • qt5.11 wayland weston compositing problem qt5 • • alishir  

      3
      0
      Votes
      3
      Posts
      478
      Views

      @primem0ver Yes I'm using Qt5.11.2.
    • UNSOLVED Tutorial request - How to create a barebones Wayland window manager for Linux
      General and Desktop • linux wayland window manager tutorial • • kochab  

      1
      0
      Votes
      1
      Posts
      456
      Views

      No one has replied

    • UNSOLVED Qt 5.8 - Qt application fail in wayland IVI Shell
      Mobile and Embedded • widget wayland qt 5.8 ivi shell qml project • • manuvivek9  

      4
      1
      Votes
      4
      Posts
      2684
      Views

      @SGaist That an excellent idea! I've sent to interest@qt-project.org. Hope someone could save me.
    • UNSOLVED QtWayland compositor very bad performance
      Mobile and Embedded • wayland qtwayland weston qt 5.8.0 glmark2 • • tele  

      3
      0
      Votes
      3
      Posts
      1921
      Views

      Thank you Gaist ! I'm noobcake here this was my first question.
    • UNSOLVED How to use Wayland? (Platform plugin?)
      General and Desktop • wayland qt 5.8 • • SQEW  

      6
      1
      Votes
      6
      Posts
      9004
      Views

      It looks like it's searching for the 56 version. I'm not sure whether the official package comes with a bundled version but I think so. Can you check that ?
    • UNSOLVED Port QT4 App to QT5 on embedded system: run multiple applications.
      Mobile and Embedded • framebuffer wayland qws • • SigiSig  

      2
      0
      Votes
      2
      Posts
      1098
      Views

      Hi and welcome to devnet, Like you already found, the QtWayland module is likely what you are looking for. If you would like to discuss things about it, one recommended channel is the #qt-labs IRC channel. You can also bring your questions on the interest mailing list You'll find there Qt's developers/maintainers. This forum is more user oriented.
    • UNSOLVED Cannot launch my Qt application under wayland
      General and Desktop • qt5.6 wayland debian • • Boiethios  

      3
      0
      Votes
      3
      Posts
      1654
      Views

      @SGaist Thank you for you reply. I tried to build it, but I got the message QtWayland requires Wayland 1.4.0 or higher, QtWayland will not be built. My version of wayland is the 1.3-1. So I think it is not possible on my system now to run the newest Qt applications. In the past, I already tried to use the version of the Debian repository, but it did not work. However I shall try in this direction again.
    • QtWayalnd compositors and qml applications without X11
      General and Desktop • qml qtquick quick eglfs wayland qtwayland egl • • WeX.tmpvar  

      1
      0
      Votes
      1
      Posts
      1422
      Views

      No one has replied