Navigation

    Qt Forum

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

    • UNSOLVED Move QWidget offscreen on linux?
      General and Desktop • qwidget x11 window manager • • IMAN4K  

      4
      1
      Votes
      4
      Posts
      326
      Views

      I don't believe X11 will allow negative coordinates, as traditional geometry uses the form AxB+C+D where the (+) can also be a (-) to cause the offset to be from the right hand side or bottom of the display. You should however be able to use coordinates that are GREATER than the visible desktop.
    • 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
      345
      Views

      No one has replied

    • UNSOLVED QT accessibility problem in i3 window manager
      General and Desktop • linux qlistview accessible environment var window manager • • payman  

      2
      0
      Votes
      2
      Posts
      807
      Views

      @payman i have no experience with accessibility on Linux. But maybe the following helps you: Qt Accessibility is based on AT-SPI via DBus on Unix/X11 and is tested to be working on Gnome and KDE. Are you sure that i3wm even supports accessibility?
    • [Solved]QT 5.4.1 QTimer using up all handles for Window Manager Objects
      General and Desktop • qtimer window manager handles • • Cob50nm  

      7
      0
      Votes
      7
      Posts
      6710
      Views

      Actually I have since spotted what the problem was, As it turns out creating a new instance of QNetworkAccessManager every 15 seconds is not the best idea if you're not deleting them. The solution I went with was making *manager a class member.