From f29b8dadbf51ed7eac584f524f3bf05a6a66de16 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Thu, 27 Oct 2016 08:26:22 -0400 Subject: Add the beginnings of the new RandR xcb backend to Lumina --- src-qt5/core/libLumina/LuminaRandR.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src-qt5/core/libLumina/LuminaRandR.h (limited to 'src-qt5/core/libLumina/LuminaRandR.h') diff --git a/src-qt5/core/libLumina/LuminaRandR.h b/src-qt5/core/libLumina/LuminaRandR.h new file mode 100644 index 00000000..3cdff651 --- /dev/null +++ b/src-qt5/core/libLumina/LuminaRandR.h @@ -0,0 +1,35 @@ +//=========================================== +// Lumina-DE source code +// Copyright (c) 2016, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +// This class governs all the xcb/randr interactions +// and provides simpler Qt-based functions for use elsewhere +//=========================================== + +//Qt includes +#include + +#include "xcb/randr.h" + +class outputDevice{ +public: + QString id; //output ID + bool enabled; + //Monitor Geometry + QPoint geom; //geometry of monitor within session + //Monitor Resolution + QSize cRes; //current resolution of the monitor (could be different from geom.size() if panning is enabled) + QList availRes; //available resolutions supported by the monitor + //Refresh Rate + int cHz; //current refresh rate + QList availHz; //available refresh rates + //Expand this later to include: + // panning (current/possible) + // rotation (current/possible) + + //FUNCTIONS + + //Modification +}; -- cgit