CuteLogger
Fast and simple logging solution for Qt based applications
windowpicker.h
1/*
2 * Copyright (c) 2025 Meltytech, LLC
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef WINDOWPICKER_H
19#define WINDOWPICKER_H
20
21#include <QList>
22#include <QRect>
23#include <QWidget>
24
25class WindowPicker : public QWidget
26{
27 Q_OBJECT
28
29public:
30 explicit WindowPicker(QWidget *parent = nullptr);
31 ~WindowPicker();
32
33signals:
34 void windowSelected(const QRect &rect);
35
36protected:
37 void paintEvent(QPaintEvent *event) override;
38 void mouseMoveEvent(QMouseEvent *event) override;
39 void mousePressEvent(QMouseEvent *event) override;
40
41private:
42 struct WindowInfo
43 {
44 QRect geometry; // Logical coordinates for Qt display
45 QRect physicalGeometry; // Physical coordinates from X11
46 QString title;
47 unsigned long windowId;
48 };
49
50 void detectWindows();
51 int findWindowAtPosition(const QPoint &pos);
52 QRect getWindowGeometry(unsigned long windowId);
53 QList<WindowInfo> getX11Windows();
54
55 QList<WindowInfo> m_windows;
56 int m_highlightedWindow;
57};
58
59#endif // WINDOWPICKER_H