aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/LuminaRandR.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-21 16:01:50 -0400
committerKen Moore <ken@ixsystems.com>2017-06-21 16:01:50 -0400
commit15d18a0edf217f1417ffd450f55f3142a7073736 (patch)
treea3bc18904c41c05ba451db5721f3d99addec2c16 /src-qt5/core/libLumina/LuminaRandR.h
parentOops - forgot to add the changes to the LuminaRandR files. (diff)
downloadlumina-15d18a0edf217f1417ffd450f55f3142a7073736.tar.gz
lumina-15d18a0edf217f1417ffd450f55f3142a7073736.tar.bz2
lumina-15d18a0edf217f1417ffd450f55f3142a7073736.zip
Start a large update to LuminaRandR info retrieval routine.
**DOES NOT COMPILE** Nothing should be using this class yet, so there should be no pkg fallout from it.
Diffstat (limited to 'src-qt5/core/libLumina/LuminaRandR.h')
-rw-r--r--src-qt5/core/libLumina/LuminaRandR.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src-qt5/core/libLumina/LuminaRandR.h b/src-qt5/core/libLumina/LuminaRandR.h
index d3e95c54..6d205680 100644
--- a/src-qt5/core/libLumina/LuminaRandR.h
+++ b/src-qt5/core/libLumina/LuminaRandR.h
@@ -34,7 +34,7 @@ struct p_objects{
QList<QSize> resolutions;
QSize physicalSizeMM;
QString name;
- QList<xcb_randr_output_t> outputs;
+ xcb_randr_output_t output;
QList<xcb_randr_mode_t> modes;
/*p_objects(){
@@ -69,6 +69,7 @@ public:
bool isEnabled();
bool isPrimary();
bool isAutomatic();
+ bool isConnected();
QList<QSize> availableResolutions();
QSize currentResolution(); //could be different from geometry.size() if things like panning/rotation are enabled
QRect currentGeometry();
bgstack15