diff options
author | Ken Moore <ken@ixsystems.com> | 2017-06-23 08:14:44 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-06-23 08:14:44 -0400 |
commit | 930d5388c8c7b354fd172ea70a5739e52938adcd (patch) | |
tree | 72f5e4aa18ce55a9ea5c3227cae0942d033ad345 | |
parent | Merge branch 'master' of github.com:trueos/lumina (diff) | |
download | lumina-930d5388c8c7b354fd172ea70a5739e52938adcd.tar.gz lumina-930d5388c8c7b354fd172ea70a5739e52938adcd.tar.bz2 lumina-930d5388c8c7b354fd172ea70a5739e52938adcd.zip |
A few more changes to LuminaRandR.
-rw-r--r-- | src-qt5/core/libLumina/LuminaRandR-X11.cpp | 92 | ||||
-rw-r--r-- | src-qt5/core/libLumina/LuminaRandR.h | 7 |
2 files changed, 57 insertions, 42 deletions
diff --git a/src-qt5/core/libLumina/LuminaRandR-X11.cpp b/src-qt5/core/libLumina/LuminaRandR-X11.cpp index 214d908f..7b78e63f 100644 --- a/src-qt5/core/libLumina/LuminaRandR-X11.cpp +++ b/src-qt5/core/libLumina/LuminaRandR-X11.cpp @@ -128,6 +128,46 @@ inline xcb_randr_mode_t modeForResolution(QSize res, QList<xcb_randr_mode_t> mod return det_mode; } +inline bool showOutput(QRect geom, p_objects *p_obj){ + //if no geom provided, will add as the right-most screen at optimal resolution + //qDebug() << "Enable Monitor:" << geom; + xcb_randr_mode_t mode = modeForResolution(geom.size(), p_obj->modes); + if(mode==XCB_NONE){ return false; } //invalid resolution for this monitor + //qDebug() << " - Found Mode:" << mode; + if(p_obj->crtc == 0){ + //Need to scan for an available crtc to use (turning on a monitor for the first time) + xcb_randr_get_screen_resources_reply_t *reply = xcb_randr_get_screen_resources_reply(QX11Info::connection(), + xcb_randr_get_screen_resources_unchecked(QX11Info::connection(), QX11Info::appRootWindow()), + NULL); + int num = xcb_randr_get_screen_resources_crtcs_length(reply); + for(int i=0; i<num && p_obj->crtc==0; i++){ + xcb_randr_crtc_t crt = xcb_randr_get_screen_resources_crtcs(reply)[i]; + xcb_randr_get_crtc_info_reply_t *info = xcb_randr_get_crtc_info_reply(QX11Info::connection(), + xcb_randr_get_crtc_info_unchecked(QX11Info::connection(), crt, QX11Info::appTime()), + NULL); + //Verify that the output is supported by this crtc + QList<xcb_randr_output_t> possible; + if(xcb_randr_get_crtc_info_outputs_length(info) < 1){ //make sure it is not already associated with an output + int pnum = xcb_randr_get_crtc_info_possible_length(info); + for(int p=0; p<pnum; p++){ possible << xcb_randr_get_crtc_info_possible(info)[p]; } + } + if(possible.contains(p_obj->output)){ p_obj->crtc = crt; } + free(info); + } + free(reply); + } + //qDebug() << " - Using crtc:" << p_obj->crtc; + xcb_randr_output_t outList[1]{ p_obj->output }; + + xcb_randr_set_crtc_config_cookie_t cookie = xcb_randr_set_crtc_config_unchecked(QX11Info::connection(), p_obj->crtc, + XCB_CURRENT_TIME, XCB_CURRENT_TIME, geom.x(), geom.y(), mode, XCB_RANDR_ROTATION_ROTATE_0, 1, outList); + //Now check the result of the configuration + xcb_randr_set_crtc_config_reply_t *reply = xcb_randr_set_crtc_config_reply(QX11Info::connection(), cookie, NULL); + if(reply==0){ return false; } + bool ok = (reply->status == XCB_RANDR_SET_CONFIG_SUCCESS); + free(reply); + return ok; +} /* //Clones qDebug() << "Number of Clones:" << xcb_randr_get_output_info_clones_length(info); @@ -210,49 +250,23 @@ bool OutputDevice::disable(){ } bool OutputDevice::enable(QRect geom){ - //if no geom provided, will add as the right-most screen at optimal resolution - //if(this->isEnabled()){ return true; } //already enabled - //qDebug() << "Enable Monitor:" << geom; - xcb_randr_mode_t mode = modeForResolution(geom.size(), p_obj.modes); - if(mode==XCB_NONE){ return false; } //invalid resolution for this monitor - //qDebug() << " - Found Mode:" << mode; - if(p_obj.crtc == 0){ - //Need to scan for an available crtc to use (turning on a monitor for the first time) - xcb_randr_get_screen_resources_reply_t *reply = xcb_randr_get_screen_resources_reply(QX11Info::connection(), - xcb_randr_get_screen_resources_unchecked(QX11Info::connection(), QX11Info::appRootWindow()), - NULL); - int num = xcb_randr_get_screen_resources_crtcs_length(reply); - for(int i=0; i<num && p_obj.crtc==0; i++){ - xcb_randr_crtc_t crt = xcb_randr_get_screen_resources_crtcs(reply)[i]; - xcb_randr_get_crtc_info_reply_t *info = xcb_randr_get_crtc_info_reply(QX11Info::connection(), - xcb_randr_get_crtc_info_unchecked(QX11Info::connection(), crt, QX11Info::appTime()), - NULL); - //Verify that the output is supported by this crtc - QList<xcb_randr_output_t> possible; - if(xcb_randr_get_crtc_info_outputs_length(info) < 1){ //make sure it is not already associated with an output - int pnum = xcb_randr_get_crtc_info_possible_length(info); - for(int p=0; p<pnum; p++){ possible << xcb_randr_get_crtc_info_possible(info)[p]; } - } - if(possible.contains(p_obj.output)){ p_obj.crtc = crt; } - free(info); - } - free(reply); - } - //qDebug() << " - Using crtc:" << p_obj.crtc; - xcb_randr_output_t outList[1]{ p_obj.output }; + if(this->isEnabled()){ return false; } //already enabled + return showOutput(geom, &p_obj); +} - xcb_randr_set_crtc_config_cookie_t cookie = xcb_randr_set_crtc_config_unchecked(QX11Info::connection(), p_obj.crtc, - XCB_CURRENT_TIME, XCB_CURRENT_TIME, geom.x(), geom.y(), mode, XCB_RANDR_ROTATION_ROTATE_0, 1, outList); - //Now check the result of the configuration - xcb_randr_set_crtc_config_reply_t *reply = xcb_randr_set_crtc_config_reply(QX11Info::connection(), cookie, NULL); - if(reply==0){ return false; } - bool ok = (reply->status == XCB_RANDR_SET_CONFIG_SUCCESS); - free(reply); - return ok; +bool OutputDevice::changeResolution(QSize res){ + if(!this->isEnabled()){ return false; } + return showOutput( QRect( p_obj.geometry.topLeft(), res), &p_obj ); } -void OutputDevice::changeResolution(QSize){ +bool OutputDevice::move(QPoint pt){ + if(!this->isEnabled()){ return false; } + return showOutput( QRect( pt, p_obj.geometry.size()), &p_obj); +} +bool OutputDevice::setGeometry(QRect geom){ + if(!this->isEnabled()){ return false; } + return showOutput(geom, &p_obj); } void OutputDevice::updateInfoCache(){ 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 |