aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/LuminaRandR.h
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core/libLumina/LuminaRandR.h')
-rw-r--r--src-qt5/core/libLumina/LuminaRandR.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src-qt5/core/libLumina/LuminaRandR.h b/src-qt5/core/libLumina/LuminaRandR.h
index fa2db63e..18c2ab23 100644
--- a/src-qt5/core/libLumina/LuminaRandR.h
+++ b/src-qt5/core/libLumina/LuminaRandR.h
@@ -74,9 +74,10 @@ public:
//Modification
bool setAsPrimary(bool);
bool disable();
- bool enable(QRect geom = QRect()); //if no geom provided, will add as the right-most screen at optimal resolution
- void changeResolution(QSize);
- void changeGeometry(QRect); //move a currently-enabled screen to another place
+ bool enable(QRect geom); //if empty resolution is supplied (QSize(0,0)) it will use the highest-available resolution
+ bool changeResolution(QSize); //change the resolution (but not position) of a currently-enabled screen
+ bool move(QPoint); //move a currently-enabled screen to another place
+ bool setGeometry(QRect); //move/resize a currently-enabled screen
void updateInfoCache(); //Run this after all modification functions to refresh the current info for this device
bgstack15