mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-02 15:35:58 +01:00
9dfb9e125b
fixes #91
224 lines
7.5 KiB
C++
224 lines
7.5 KiB
C++
#include <QApplication>
|
|
#include <QEvent>
|
|
#include <QObject>
|
|
#include <QPushButton>
|
|
#include <QScreen>
|
|
#include <QTabWidget>
|
|
#include <QWidget>
|
|
#include <QtDebug>
|
|
#include <QtWidgets>
|
|
#include <array>
|
|
#include <cstdio>
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "mainpicker.h"
|
|
|
|
std::string execAndGet(const char* cmd) {
|
|
std::array<char, 128> buffer;
|
|
std::string result;
|
|
std::unique_ptr<FILE, decltype(&pclose)> pipe(popen(cmd, "r"), pclose);
|
|
if (!pipe) {
|
|
throw std::runtime_error("popen() failed!");
|
|
}
|
|
while (fgets(buffer.data(), buffer.size(), pipe.get()) != nullptr) {
|
|
result += buffer.data();
|
|
}
|
|
return result;
|
|
}
|
|
|
|
QApplication* pickerPtr = nullptr;
|
|
MainPicker* mainPickerPtr = nullptr;
|
|
|
|
struct SWindowEntry {
|
|
std::string name;
|
|
std::string clazz;
|
|
unsigned long long id = 0;
|
|
};
|
|
|
|
std::vector<SWindowEntry> getWindows(const char* env) {
|
|
std::vector<SWindowEntry> result;
|
|
|
|
if (!env)
|
|
return result;
|
|
|
|
std::string rolling = env;
|
|
|
|
while (!rolling.empty()) {
|
|
// ID
|
|
const auto IDSEPPOS = rolling.find("[HC>]");
|
|
const auto IDSTR = rolling.substr(0, IDSEPPOS);
|
|
|
|
// class
|
|
const auto CLASSSEPPOS = rolling.find("[HT>]");
|
|
const auto CLASSSTR = rolling.substr(IDSEPPOS + 5, CLASSSEPPOS - IDSEPPOS - 5);
|
|
|
|
// title
|
|
const auto TITLESEPPOS = rolling.find("[HE>]");
|
|
const auto TITLESTR = rolling.substr(CLASSSEPPOS + 5, TITLESEPPOS - 5 - CLASSSEPPOS);
|
|
|
|
try {
|
|
result.push_back({TITLESTR, CLASSSTR, std::stoull(IDSTR)});
|
|
} catch (std::exception& e) {
|
|
// silent err
|
|
}
|
|
|
|
rolling = rolling.substr(TITLESEPPOS + 5);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
int main(int argc, char* argv[]) {
|
|
qputenv("QT_LOGGING_RULES", "qml=false");
|
|
|
|
const char* WINDOWLISTSTR = getenv("XDPH_WINDOW_SHARING_LIST");
|
|
|
|
const auto WINDOWLIST = getWindows(WINDOWLISTSTR);
|
|
|
|
QApplication picker(argc, argv);
|
|
pickerPtr = &picker;
|
|
MainPicker w;
|
|
mainPickerPtr = &w;
|
|
|
|
// get the tabwidget
|
|
const auto TABWIDGET = (QTabWidget*)w.children()[1]->children()[0];
|
|
const auto ALLOWTOKENBUTTON = (QCheckBox*)w.children()[1]->children()[1];
|
|
|
|
const auto TAB1 = (QWidget*)TABWIDGET->children()[0];
|
|
|
|
const auto SCREENS_SCROLL_AREA_CONTENTS =
|
|
(QWidget*)TAB1->findChild<QWidget*>("screens")->findChild<QScrollArea*>("scrollArea")->findChild<QWidget*>("scrollAreaWidgetContents");
|
|
|
|
// add all screens
|
|
const auto SCREENS = picker.screens();
|
|
|
|
constexpr int BUTTON_WIDTH = 441;
|
|
constexpr int BUTTON_HEIGHT = 41;
|
|
constexpr int BUTTON_PAD = 4;
|
|
|
|
for (int i = 0; i < SCREENS.size(); ++i) {
|
|
const auto GEOMETRY = SCREENS[i]->geometry();
|
|
|
|
QString text = QString::fromStdString(std::string("Screen " + std::to_string(i) + " at " + std::to_string(GEOMETRY.x()) + ", " + std::to_string(GEOMETRY.y()) + " (" +
|
|
std::to_string(GEOMETRY.width()) + "x" + std::to_string(GEOMETRY.height()) + ") (") +
|
|
SCREENS[i]->name().toStdString() + ")");
|
|
QPushButton* button = new QPushButton(text, (QWidget*)SCREENS_SCROLL_AREA_CONTENTS);
|
|
button->move(9, 5 + (BUTTON_HEIGHT + BUTTON_PAD) * i);
|
|
button->resize(BUTTON_WIDTH, BUTTON_HEIGHT);
|
|
QObject::connect(button, &QPushButton::clicked, [=]() {
|
|
std::string ID = button->text().toStdString();
|
|
ID = ID.substr(ID.find_last_of('(') + 1);
|
|
ID = ID.substr(0, ID.find_last_of(')'));
|
|
|
|
std::cout << "[SELECTION]";
|
|
std::cout << (ALLOWTOKENBUTTON->isChecked() ? "r" : "");
|
|
std::cout << "/";
|
|
|
|
std::cout << "screen:" << ID << "\n";
|
|
pickerPtr->quit();
|
|
return 0;
|
|
});
|
|
}
|
|
|
|
SCREENS_SCROLL_AREA_CONTENTS->resize(SCREENS_SCROLL_AREA_CONTENTS->size().width(), 5 + (BUTTON_HEIGHT + BUTTON_PAD) * SCREENS.size());
|
|
|
|
// windows
|
|
const auto WINDOWS_SCROLL_AREA_CONTENTS =
|
|
(QWidget*)TAB1->findChild<QWidget*>("windows")->findChild<QScrollArea*>("scrollArea_2")->findChild<QWidget*>("scrollAreaWidgetContents_2");
|
|
|
|
// loop over them
|
|
int windowIterator = 0;
|
|
for (auto& window : WINDOWLIST) {
|
|
QString text = QString::fromStdString(window.clazz + ": " + window.name);
|
|
|
|
QPushButton* button = new QPushButton(text, (QWidget*)WINDOWS_SCROLL_AREA_CONTENTS);
|
|
button->move(9, 5 + (BUTTON_HEIGHT + BUTTON_PAD) * windowIterator);
|
|
button->resize(BUTTON_WIDTH, BUTTON_HEIGHT);
|
|
|
|
mainPickerPtr->windowIDs[button] = window.id;
|
|
|
|
QObject::connect(button, &QPushButton::clicked, [=]() {
|
|
std::cout << "[SELECTION]";
|
|
std::cout << (ALLOWTOKENBUTTON->isChecked() ? "r" : "");
|
|
std::cout << "/";
|
|
|
|
std::cout << "window:" << mainPickerPtr->windowIDs[button] << "\n";
|
|
pickerPtr->quit();
|
|
return 0;
|
|
});
|
|
|
|
windowIterator++;
|
|
}
|
|
|
|
WINDOWS_SCROLL_AREA_CONTENTS->resize(WINDOWS_SCROLL_AREA_CONTENTS->size().width(), 5 + (BUTTON_HEIGHT + BUTTON_PAD) * windowIterator);
|
|
|
|
// lastly, region
|
|
const auto REGION_OBJECT = (QWidget*)TAB1->findChild<QWidget*>("region");
|
|
|
|
QString text = "Select region...";
|
|
|
|
QPushButton* button = new QPushButton(text, (QWidget*)REGION_OBJECT);
|
|
button->move(79, 80);
|
|
button->resize(321, 41);
|
|
QObject::connect(button, &QPushButton::clicked, [=]() {
|
|
auto REGION = execAndGet("slurp -f \"%o %x %y %w %h\"");
|
|
REGION = REGION.substr(0, REGION.length());
|
|
|
|
// now, get the screen
|
|
QScreen* pScreen = nullptr;
|
|
if (REGION.find_first_of(' ') == std::string::npos) {
|
|
std::cout << "error1\n";
|
|
pickerPtr->quit();
|
|
return 1;
|
|
}
|
|
const auto SCREEN_NAME = REGION.substr(0, REGION.find_first_of(' '));
|
|
|
|
for (auto& screen : SCREENS) {
|
|
if (screen->name().toStdString() == SCREEN_NAME) {
|
|
pScreen = screen;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!pScreen) {
|
|
std::cout << "error2\n";
|
|
pickerPtr->quit();
|
|
return 1;
|
|
}
|
|
|
|
// get all the coords
|
|
try {
|
|
REGION = REGION.substr(REGION.find_first_of(' ') + 1);
|
|
const auto X = std::stoi(REGION.substr(0, REGION.find_first_of(' ')));
|
|
REGION = REGION.substr(REGION.find_first_of(' ') + 1);
|
|
const auto Y = std::stoi(REGION.substr(0, REGION.find_first_of(' ')));
|
|
REGION = REGION.substr(REGION.find_first_of(' ') + 1);
|
|
const auto W = std::stoi(REGION.substr(0, REGION.find_first_of(' ')));
|
|
REGION = REGION.substr(REGION.find_first_of(' ') + 1);
|
|
const auto H = std::stoi(REGION);
|
|
|
|
std::cout << "[SELECTION]";
|
|
std::cout << (ALLOWTOKENBUTTON->isChecked() ? "r" : "");
|
|
std::cout << "/";
|
|
|
|
std::cout << "region:" << SCREEN_NAME << "@" << X - pScreen->geometry().x() << "," << Y - pScreen->geometry().y() << "," << W << "," << H << "\n";
|
|
pickerPtr->quit();
|
|
return 0;
|
|
} catch (...) {
|
|
std::cout << "error3\n";
|
|
pickerPtr->quit();
|
|
return 1;
|
|
}
|
|
|
|
std::cout << "error4\n";
|
|
pickerPtr->quit();
|
|
return 1;
|
|
});
|
|
|
|
w.show();
|
|
return picker.exec();
|
|
}
|