mirror of
https://github.com/hyprwm/hyprsysteminfo.git
synced 2024-11-22 00:05:59 +01:00
core: fix reported display resolutions when fractionally scaled (#10)
Qt appears to have no way to retrieve the pixel size sent by wayland, as it overrides it with the logical size and will not return the physical one.
This commit is contained in:
parent
2104e356be
commit
0fa58f189b
5 changed files with 82 additions and 5 deletions
|
@ -9,7 +9,7 @@ project(hsi VERSION ${VER} LANGUAGES CXX)
|
||||||
set(CMAKE_CXX_STANDARD 23)
|
set(CMAKE_CXX_STANDARD 23)
|
||||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||||
|
|
||||||
find_package(Qt6 6.5 REQUIRED COMPONENTS Widgets Quick QuickControls2)
|
find_package(Qt6 6.5 REQUIRED COMPONENTS Widgets Quick QuickControls2 WaylandClient)
|
||||||
find_package(PkgConfig REQUIRED)
|
find_package(PkgConfig REQUIRED)
|
||||||
|
|
||||||
pkg_check_modules(hyprutils REQUIRED IMPORTED_TARGET hyprutils)
|
pkg_check_modules(hyprutils REQUIRED IMPORTED_TARGET hyprutils)
|
||||||
|
|
|
@ -3,6 +3,7 @@ qt_add_executable(hyprsysteminfo
|
||||||
util/Utils.cpp
|
util/Utils.cpp
|
||||||
SystemInfo.cpp
|
SystemInfo.cpp
|
||||||
SystemIconProvider.cpp
|
SystemIconProvider.cpp
|
||||||
|
WaylandScreen.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
qt_add_qml_module(hyprsysteminfo
|
qt_add_qml_module(hyprsysteminfo
|
||||||
|
@ -11,4 +12,6 @@ qt_add_qml_module(hyprsysteminfo
|
||||||
QML_FILES main.qml
|
QML_FILES main.qml
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(hyprsysteminfo PRIVATE Qt6::Widgets Qt6::QuickControls2 PkgConfig::hyprutils)
|
target_link_libraries(hyprsysteminfo PRIVATE
|
||||||
|
Qt6::Widgets Qt6::QuickControls2 Qt6::WaylandClientPrivate PkgConfig::hyprutils
|
||||||
|
)
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#include "SystemInfo.hpp"
|
#include "SystemInfo.hpp"
|
||||||
|
#include "WaylandScreen.hpp"
|
||||||
#include "util/Utils.hpp"
|
#include "util/Utils.hpp"
|
||||||
#include <qclipboard.h>
|
#include <qclipboard.h>
|
||||||
#include <array>
|
#include <array>
|
||||||
|
@ -190,9 +191,8 @@ CSystemInternals::CSystemInternals(QObject* parent) : QObject(parent) {
|
||||||
|
|
||||||
{
|
{
|
||||||
std::string screens;
|
std::string screens;
|
||||||
for (auto* s : QGuiApplication::screens()) {
|
for (const auto& s : SWaylandScreenInfo::enumerateScreens()) {
|
||||||
auto ratio = s->devicePixelRatio();
|
screens += std::format("{} ({}x{}), ", s.name.toStdString(), s.pixelSize.width(), s.pixelSize.height());
|
||||||
screens += std::format("{} ({}x{}), ", s->name().toStdString(), s->size().width() * ratio, s->size().height() * ratio);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!screens.empty())
|
if (!screens.empty())
|
||||||
|
|
60
src/WaylandScreen.cpp
Normal file
60
src/WaylandScreen.cpp
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
#include "WaylandScreen.hpp"
|
||||||
|
|
||||||
|
#include <QtWaylandClient/private/qwayland-wayland.h>
|
||||||
|
#include <QtWaylandClient/private/qwaylanddisplay_p.h>
|
||||||
|
#include <QtWaylandClient/private/qwaylandintegration_p.h>
|
||||||
|
#include <cstdint>
|
||||||
|
#include <qcontainerfwd.h>
|
||||||
|
#include <qsize.h>
|
||||||
|
#include <qstringliteral.h>
|
||||||
|
#include <qtclasshelpermacros.h>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
using namespace QtWaylandClient;
|
||||||
|
|
||||||
|
class CWaylandScreen : public QtWayland::wl_output {
|
||||||
|
public:
|
||||||
|
explicit CWaylandScreen(QWaylandDisplay* display, uint32_t version, uint32_t id);
|
||||||
|
~CWaylandScreen() override;
|
||||||
|
Q_DISABLE_COPY_MOVE(CWaylandScreen);
|
||||||
|
SWaylandScreenInfo info;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void output_mode(uint32_t flags, int32_t width, int32_t height, int32_t refresh) override;
|
||||||
|
void output_name(const QString& name) override;
|
||||||
|
};
|
||||||
|
|
||||||
|
std::vector<SWaylandScreenInfo> SWaylandScreenInfo::enumerateScreens() {
|
||||||
|
auto* display = QWaylandIntegration::instance()->display();
|
||||||
|
|
||||||
|
std::vector<CWaylandScreen*> screens;
|
||||||
|
for (const auto& global : display->globals()) {
|
||||||
|
if (global.interface == QStringLiteral("wl_output")) {
|
||||||
|
screens.emplace_back(new CWaylandScreen(display, global.version, global.id));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
display->forceRoundTrip();
|
||||||
|
|
||||||
|
std::vector<SWaylandScreenInfo> info;
|
||||||
|
for (auto* screen : screens) {
|
||||||
|
info.push_back(screen->info);
|
||||||
|
delete screen;
|
||||||
|
}
|
||||||
|
|
||||||
|
return info;
|
||||||
|
}
|
||||||
|
|
||||||
|
CWaylandScreen::CWaylandScreen(QWaylandDisplay* display, uint32_t version, uint32_t id) : QtWayland::wl_output(display->wl_registry(), id, 4u) {}
|
||||||
|
|
||||||
|
CWaylandScreen::~CWaylandScreen() {
|
||||||
|
release();
|
||||||
|
}
|
||||||
|
|
||||||
|
void CWaylandScreen::output_mode(uint32_t flags, int width, int height, int refresh) {
|
||||||
|
info.pixelSize = QSize(width, height);
|
||||||
|
}
|
||||||
|
|
||||||
|
void CWaylandScreen::output_name(const QString& name) {
|
||||||
|
info.name = name;
|
||||||
|
}
|
14
src/WaylandScreen.hpp
Normal file
14
src/WaylandScreen.hpp
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <qcontainerfwd.h>
|
||||||
|
#include <qsize.h>
|
||||||
|
#include <qstring.h>
|
||||||
|
#include <qcontainerfwd.h>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
struct SWaylandScreenInfo {
|
||||||
|
QString name;
|
||||||
|
QSize pixelSize;
|
||||||
|
|
||||||
|
static std::vector<SWaylandScreenInfo> enumerateScreens();
|
||||||
|
};
|
Loading…
Reference in a new issue