How to prevent a window from being moved?
-
I have the following class:
class MyWindow : public QWidget { public: MyWindow() { setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint); setStyleSheet("background-color: black;"); QScreen *screen = QGuiApplication::primaryScreen(); int screenWidth = screen->size().width(); setFixedSize(screenWidth, 50); } protected: // Override the paintEvent to draw custom text void paintEvent(QPaintEvent *event) override { QPainter painter(this); painter.setPen(Qt::white); // Set text color to black painter.setFont(QFont("JetBrains Mono", 15)); // Set font // Draw the text in the center of the window painter.drawText(rect(), Qt::AlignCenter, "Hello World"); } };
I would like to prevent the window from being moved no matter what. Is there any property I can set on the window to make it immovable, or any event I can trap and cancel? I looked through the docs and didn't find anything. There's a few StackOverflow posts from like 2012 but none of the suggested answers work. Thanks!
-
@Mike-Christensen
I would not have thought so, that is up to your desktop/window manager (like Wayland), not your application. I certainly hope not, else applications could totally restrict my use of the desktop by making their windows immovable and drive me mad. -
@JonB weeelll, I could certainly make it very difficult and annoying for you to move/hide my window if I wanted to. And like 90% of all windows users would be unable to circumvent that.
@Mike-Christensen make a QTimer with like a 5 ms cool down, move(x,y) on the timeout to the position where you want it.
I feel kinda dirty right now.
-
@J-Hilk
Thankfully Wayland at least will prevent you from positioning your window where you want it.You should indeed feel dirty under Windows! Thank goodness I am not aware of any Windows application I use where I choose to move a window and then it moves itself back to where it was afterwards. Such behaviour would be really annoying so i would try not to use your application!
-
@JonB @J-Hilk - Hah, thanks for the help. This is actually part of my effort to create a dock so it should behave more like a dock and not a window. It seems everything about Qt and Wayland make that sort of thing very difficult to do.
I guess one idea would be to make the dock technically movable, but it would "snap" to the nearest screen edge or something.. Anyway, something to look into more. Thanks!
-
@Mike-Christensen said in How to prevent a window from being moved?:
It seems everything about Qt and Wayland make that sort of thing very difficult to do.
That is certainly true. But surely that is down to Wayland, not Qt. I now see you are commenting on that in your other thread. FWIW, I have reverted my Ubuntu to Xorg, it wasn't just because of Qt at all, other applications had problems, and I am not alone in this.
-
@JonB Yea, I thought writing a dock/taskbar "Waybar replacement" might be a fun weekend project and a chance to get back into C++ and learn Qt. I never imagined this rabbit hole. Anyway, I guess Wayland is still [relatively?] new and hopefully there will be solutions for these use cases as more major distros go Wayland native. It does give me respect for those implementing entire desktop environments such as KDE Plasma on Wayland since it's now clear all the fire hoops they have to jump through to get this stuff working.