当前位置:   article > 正文

QT应用程序分辨率自适应---Qt_qt适配分辨率

qt适配分辨率

转自:https://blog.csdn.net/matengxiao/article/details/52853332


一、应用程序分辨率自适应


    为了满足应用程序能在不同尺寸及分辨率的屏幕下能够正常的运行显示,就需要对不同的分辨率进行自适应,而且应用程序分辨率自适应的问题在应用UI设计布局以及UI代码编写阶段进行设计规划,如在界面完成后期再考虑分辨率问题可能需要更大的工作量,并且自适应效果不一定能达到要求。一般来说,应用程序的设计应该按照支持的最小分辨率来进行设计,在应用程序分辨率变化时应用程序中的各个元素进行尺寸的缩放以及位置的调整,同时增加或减少应用程序显示界面内容,同时还要考虑图片失真,控件变形,字体显示等问题。 
    对于Qt应用来说,官方并没有提供一整套完整的解决有效方案,因此Qt程序的分辨率自适应问题需要按照应用程序的要求,在程序中自己实现相应的控件适应,但是分辨率适配的大体思路都是一致的,即调整控件尺寸及位置以及修改界面元素显示内容,Qt程序又可分为QtWidget程序以及qml程序,下面分别描述这两部分程序的界面分辨力的自适应解决方案。

 

 

二、QtWidget中的分辨率自适应


    在QtWidget中Qt已经提供有相应的解决方案来实现控件分辨率的自适应,即通过layout对控件进行布局来实现控件的自适应,此外还可以通过自定义QTWidget中控件的自适应策略来实现分辨率自适应,下面分别介绍这两种方法:

 

2.1 layout布局

     通过layout布局的方式对QtwWidget的分辨率自适应,即将需要将自适应的控件添加进layout布局中,当layout的父对象的尺寸变化时,layout会根据父对象相应的变化宽、高比例对布局中的控件进行缩放,以此来实现相应控件的分辨率自适应。 
    通过layout的方式实现控件的方式实现自动缩放使用简单,且无须关注其具体的实现细节,但是这种方式需要就界面刚开始布局时,就要需要采用layout的方式进行布局,但是对于已经完成且没有采用layout布局的界面,可在QtCreator设计器中将需要添加布局的控件选中,然后点击右键,选择栅格化即可。 
但是在QtCreator Designer中添加的layout存在一个问题,如下图在Designer中添加一个Vertical Layout,layout中添加两个PushButton,当运行程序后,调整程序大小,中间的PushButton并不会随着窗口大小而进行缩放
 
    通过查看QtCreator中通过ui文件生成的头文件,即ui_widget.h中的代码可以发现,在QtDesigner中添加layout时,会给layout自动添加一个widget的父对象,即下图中的verticalLayoutWidget,因此verticalLayout会随着其父对象verticalLayoutWidget的大小变化,对其中的控件进行缩放调整,因此才会出现上面的程序窗口变化时,layout中的控件不会自动缩放。 

    对于上述情况,需要在窗口大小变化时先调整verticalLayoutWidget的位置及大小,这样verticalLayout就会随着窗口大小的变化而自动调整其中的控件,具体操作如下 
重载widget的resizeEvent函数,依据窗口大小的变化调整动态verticalLayoutWidget

  1.      QWidget * resizeWidget=ui->verticalLayoutWidget;
  2.      QRect resizeRect=resizeWidget->rect();
  3.      static float baseWidth=400;
  4.      static float baseHeight=300;
  5.      static float widgetWidth=resizeRect.width();
  6.      static float widgetHeight=resizeRect.height();
  7.      static float widgetX=ui->verticalLayoutWidget->geometry().x();
  8.      static float widgetY=ui->verticalLayoutWidget->geometry().y();
  9.      qDebug()<<resizeRect<<widgetX<<widgetY;
  10.      float horRatio=this->rect().width()/baseWidth;
  11.      float verRatio=this->rect().height()/baseHeight;
  12.      //dajust the position of verticalLayoutWidget
  13.      resizeRect.setX(widgetX*horRatio);
  14.      resizeRect.setY(widgetY*verRatio);
  15.      //resize the verticalLayoutWidget
  16.      resizeRect.setWidth(widgetWidth*horRatio);
  17.      resizeRect.setHeight(widgetHeight*verRatio);
  18.      //set Geometry
  19.      resizeWidget->setGeometry(resizeRect);


    对于控件的缩放和位置调整,都是依据程序窗口的变化来调整的,这里选用horRatio,verRatio两个变量来记录窗口的宽度方向和高度方向的缩放比例,对于verticalLayoutWidget的宽度和高度来说直接按窗口的缩放比例按等比例缩放即可,对于X,Y按比例缩放 

  1. resizeRect.setX(widgetX*horRatio); 
  2. resizeRect.setY(widgetY*verRatio);

 

2.1自定义控件缩放


    利用layout对控件进行布局缩放使用简单,且无需关注内部细节,但是利用layout进行布局时,控件的位置和大小受布局的约束无法实现大小和位置的精确控制,对于界面又复杂布局要求时layout并不能满足使用要求,对于这部分控件只能自定义控件的缩放,在程序窗口缩放是实现分辨率的自适应。 
具体的缩放规则与前面类似,在程序窗口尺寸变化时,即首先获得程序窗口的缩放比例horRatio,verRatio放,然后对各个控件的X,Y以及宽度width和高度height进行相应比例的缩放即可,但是对于每个单独的控件都进行自定义缩放,实现起来较复杂,因此需要采用通用的方法来对各个控件进行缩放。 
    由于大部分的可以控件都是继承于QWidget的,因此查找到程序中所有的QWidget对象,然后在实现相应的变换即可。Qt提供了findChildren方法可以查找特定类型的子对象,因此可以利用这个方法来实现查找QWidget的子对象,并进行自定义缩放: 
首先定义结构体来存储控件的基本尺寸及位置

  1. struct AutoResizeOriginalData
  2. {
  3.     QRect data_rect;
  4.     QFont data_font;
  5. };
  6. //define a map to store the resize items
  7. QMap<QWidget*,AutoResizeOriginalData> m_resizeMap;


然后在查找窗口中全部的QWidget对象,并记录其初始位置

  1. QWidget *item=NULL;
  2. AutoResizeOriginalData resizeData;
  3. QRect tmp;
  4. QList<QLabel*> _labelList=m_autoResizeObj->findChildren<QLabel *>();
  5. for(auto it=_labelList.begin();it!=_labelList.end();it++)
  6. {
  7.     item=*it;
  8.     tmp=item->geometry();
  9.     tmp.setX(item->x());
  10.     tmp.setY(item->y());
  11.     tmp.setWidth(abs(tmp.width()));
  12.     tmp.setHeight(abs(tmp.height()));
  13.     resizeData.data_rect=tmp;
  14.     resizeData.data_font=item->font();
  15.     m_resizeMap[item]=resizeData;
  16. }



再重载窗口对象的resizeEvent函数,对各个控件进行自适应控制

  1. m_horRatio=this->rect().width()/m_baseWidth;
  2. m_verRatio=this->rect().height()/m_baseHeight;
  3. QMapIterator<QWidget*, AutoResizeOriginalData> _itarator(m_resizeMap);
  4.         while(_itarator.hasNext())
  5.         {
  6.             _itarator.next();
  7.             QWidget* _item=_itarator.key();
  8.             QRect tmp=_itarator.value().data_rect;
  9.             tmp.setWidth(tmp.width()*m_horRatio);
  10.             tmp.setHeight(tmp.height()*m_verRatio);
  11.             QRect after=QRect(tmp.x()*m_horRatio,tmp.y()*m_verRatio,tmp.width(),tmp.height());    
  12. _item->setGeometry(after);
  13.         }


    如果界面中有一部分控件包含在layout中,在查找QWidget对象时会把这一部分控件也包含在其中,这样的话在进行尺寸缩放时回合layout相互影响,导致界面发成错位,应去除这些控件,交由layout来控制其缩放,具体操作如下: 
首先定义一个函数用于移除其所有子对象

  1. void AutoResize::ignoreAllChiledren(QObject* obj)
  2. {
  3.     QList<QObject*> children=obj->children();
  4.     for(auto it=children.begin();it!=children.end();it++)
  5.     {
  6.         QWidget *item=qobject_cast<QWidget*>(*it);
  7.         m_ignoreItem.push_back(item);
  8.         AutoResizeOriginalData resizeData;
  9.         if(!item)
  10.             continue;
  11.         m_resizeMap.remove(item);
  12.     }
  13. }



查找所有的layout:

  1. QString desName="widget";
  2. QList<QLayout*> layoutList=m_autoResizeObj->findChildren<QLayout*>();
  3. for(auto it=layoutList.begin();it!=layoutList.end();it++)
  4. {
  5.     QString objName=(*it)->parent()->objectName();
  6.     if(objName.contains(desName))
  7.     {
  8.         //need to find the items in layout by the parent widget of layout                
  9.         QWidget* layoutWidget=qobject_cast<QWidget*>((*it)->parent());
  10.         ignoreAllChiledren(layoutWidget);
  11.     }
  12. }

 


2.3字体缩放
    

    Qt中的字体Qfont定义字体大小是有两种方式,一种是PixelSize,另一种是PointSize,PixelSize实际上是以像素为单位,即PixelSize的大小即为实际的像素大小。PointSize的单位不是像素,它是以字体在屏幕实际显示的大小为单位的,它和屏幕的分辨率以及屏幕的真实尺寸相关,即它的单位即为屏幕上显示的字体大小。 
    对于相同尺寸不同分辨率的屏幕,通过设置PointSize大小的字体,不同分辨率的屏幕上显示的实际字体的大小是一样的,通过设置PointSize的字体来说,字体大小是随着屏幕大小以及分辨率自适应的,因此无须处理字体的缩放;但是对于设置PixelSize大小的字体来说,由于所占分辨率大小固定,因此在相同尺寸上更高分辨率的屏幕上,由于其单位长度内的像素点数更多,即像素密度更大,因此对于更好分辨率的屏幕来说,字体会看起来小一些,要处理这种情况,一种办法就是所有字体都用PointSize来表示大小,但对于已经采用PixelSize的字体来说,就要对其进行控制缩放。 
首先创建用于缩放字体的函数

  1. void AutoResize::fontAutoResize(QWidget *obj,int fontSize) 
  2. if(fontSize<=0
  3. return
  4. bool hasTextStyle=false
  5. fontSize*=m_fontRatio; 
  6. QFont changedFont; 
  7. changedFont=obj->font(); 
  8. changedFont.setPixelSize(fontSize); 
  9. obj->setFont(changedFont); 
  10. }

    由于控件都继承与QWidget,且QWidget具有字体属性,因此可以通过QWidget来查找自控件,并记录相应的字体信息

  1. QWidget *item=NULL;
  2. AutoResizeOriginalData resizeData;
  3. QRect tmp;
  4. QList<QLabel*> _labelList=m_autoResizeObj->findChildren<QLabel *>();
  5. for(auto it=_labelList.begin();it!=_labelList.end();it++)
  6. {
  7.     item=*it;
  8.     tmp=item->geometry();
  9.     tmp.setX(item->x());
  10.     tmp.setY(item->y());
  11.     tmp.setWidth(abs(tmp.width()));
  12.     tmp.setHeight(abs(tmp.height()));
  13.     resizeData.data_rect=tmp;
  14.     resizeData.data_font=item->font();
  15.     m_resizeMap[item]=resizeData;
  16.     //the pixelsize !=-1 when set font size by pixelsize
  17.     if(resizeData.pixelSize()!=-1)
  18.     {
  19.         m_fontMap[item]=resizeData;
  20.     }
  21. }



计算字体缩放比例

  1. void AutoResize::calculateResizeRatio()
  2. {
  3.     m_horRatio=m_autoResizeObj->width()/m_baseWidth;
  4.     m_verRatio=m_autoResizeObj->height()/m_baseHeight;
  5.     m_fontRatio=m_horRatio<m_verRatio?m_horRatio:m_verRatio;
  6. }



重载resizeEvent函数,缩放字体

  1. void AutoResize::doAutoResize()
  2. {
  3.     calculateResizeRatio();
  4.     if(m_autoResize)
  5.     {
  6.         QMapIterator<QWidget*,AutoResizeOriginalData> _fontIt(m_fontMap);
  7.         while(_fontIt.hasNext())
  8.         {
  9.             _fontIt.next();
  10.             QWidget* _item=_fontIt.key();
  11.               changedFont=_fontIt.value().data_font;
  12.               fontAutoResize(_item,changedFont.pointSize());
  13.         }
  14.     }
  15. }

 

三、qml中的分辨率自适应
    

     qml中没有提供类似QtWidget中的layout进行布局,因此qml中的所有控件的分辨率自适应都需要自定义实现,其自适应原理与QtWidget中类似,都是在程序窗口发生变化时,对窗口尺寸变化事件进行响应,依据父窗口的中宽度以及高度的缩放比例,分辨对各个子对象进行位置以及尺寸的变换。 
下面实现一种通用的分辨率自适应的组件

  1. // AutoResize.qml
  2. import QtQuick 2.0
  3. Item {
  4.     id:globalResize
  5.     property var targetItem: parent  // the parent of all items
  6. property bool fixedAspectRatio: false // Else zoom from width and height
  7. property bool fontAccordingToMax: false
  8.     property bool ifAutoResize: true
  9.     property string ignoreAll: "ignoreAll"
  10.     property string ignoreChildren: "ignoreChildren"
  11.     //变换比例
  12.     property real horizontalRatio: 1.0
  13.     property real verticalRatio: 1.0
  14.     property real fontRatio: 1.0
  15.     property var targetItemGeometry
  16.     property var childrenItemGeometry
  17.     property var childrenText
  18.     property real fontSizeScaleFactor: 1.0
  19.     property bool isBegin: false
  20.     signal resized()
  21.     Component.onCompleted: {
  22.         begin();
  23.     }
  24.     Component {
  25.         id: connections
  26.         Connections {
  27.             target: targetItem
  28.             onWidthChanged: {
  29.                 resize();
  30.             }
  31.             onHeightChanged:
  32.             {
  33.                 resize();
  34.             }
  35.         }
  36.     }
  37.     Loader {
  38.         Component.onCompleted: {
  39.             sourceComponent = connections;
  40.         }
  41.     }
  42. }



定义begin( )函数用于才开始时获取程序窗口中要进行缩放的所有子对象的,并记录其基本的尺寸信息,具体试下如下

  1. function begin() {
  2.         var _childrenItemGeometry=new Array;
  3.         targetItemGeometry = new Object;
  4.         targetItemGeometry["width"] = targetItem.width;
  5.         targetItemGeometry["height"] = targetItem.height;
  6.         var children = targetItem.children;
  7.         for(var index = 1; index < children.length; index++)
  8.         {
  9.             var currentItem = children[index];
  10.             var buf = new Object;
  11.             buf["item"] = currentItem;
  12.             buf["name"]=currentItem.objectName;
  13.             buf["x"] = currentItem.x;
  14.             buf["y"] = currentItem.y;
  15.             buf["centerX"] = currentItem.x + (currentItem.width / 2);
  16.             buf["centerY"] = currentItem.y + (currentItem.height / 2);
  17.             buf["width"] = currentItem.width;
  18.             buf["height"] = currentItem.height;
  19.             //to scale the font size
  20.             buf["fontSize"]=0;
  21.             if(currentItem.font!=undefined)
  22.             {
  23.                 buf["fontSize"]=currentItem.font.pointSize
  24.             }
  25.             if(buf["name"]==ignoreAll)
  26.             {
  27.                 continue;
  28.             }
  29.             else if(buf["name"]==ignoreChildren)
  30.             {
  31.                 _childrenItemGeometry.push(buf)
  32.             }
  33.             else
  34.             {
  35.                 _childrenItemGeometry.push(buf)
  36.                 getAllChildren(_childrenItemGeometry,currentItem)
  37.             }
  38.         }
  39.         childrenItemGeometry=_childrenItemGeometry
  40.         isBegin = true;
  41.     }



    getAllChildren用于获取某个对象的全部子对象,由于qml中的children只能获得当前对象的直系子对象,对孙子对象等是获取不到的,因此需要递归调用才能获取全部子对象

  1. function getAllChildren(_childrenItemGeometry,target)
  2.     {
  3.         var children = target.children;
  4.         for(var index = 0; index < children.length; index++)
  5.         {
  6.             var currentItem = children[index];
  7.             var buf = new Object;
  8.             buf["item"] = currentItem;
  9.             buf["name"]=currentItem.objectName;
  10.             buf["x"] = currentItem.x;
  11.             buf["y"] = currentItem.y;
  12.             buf["centerX"] = currentItem.x + (currentItem.width / 2);
  13.             buf["centerY"] = currentItem.y + (currentItem.height / 2);
  14.             buf["width"] = currentItem.width;
  15.             buf["height"] = currentItem.height;
  16.             buf["fontSize"]=0;
  17.             if(currentItem.font!=undefined)
  18.             {
  19.                 buf["fontSize"]=currentItem.font.pointSize
  20.             }
  21.             if(buf["name"]=="ingnoreAll")
  22.             {
  23.                 continue;
  24.             }
  25.             else if(buf["name"]=="ingnoreChildren")
  26.             {
  27.                 _childrenItemGeometry.push(buf)
  28.             }
  29.             else
  30.             {
  31.                 _childrenItemGeometry.push(buf)
  32.                 getAllChildren(_childrenItemGeometry,currentItem)
  33.             }
  34.         }
  35.     }


    resize函数是在targetItem对象的宽度或这高度发生变化时出发的,用于实现所有子对象的缩放

  1.     function resize() {
  2.         if(isBegin&&ifAutoResize)
  3.         {
  4.             //calculate the ratio
  5.             horizontalRatio = targetItem.width / targetItemGeometry["width"];
  6.             verticalRatio = targetItem.height / targetItemGeometry["height"];
  7.             fontRatio=horizontalRatio>verticalRatio?verticalRatio:horizontalRatio;
  8.             for(var index = 0; index < childrenItemGeometry.length; index++)
  9.             {
  10.                 var currentItem=childrenItemGeometry[index]
  11.         //adjust the size of item
  12.                 childrenItemGeometry[index]["item"].width  = childrenItemGeometry[index]["width"] * horizontalRatio;
  13.                 childrenItemGeometry[index]["item"].height = childrenItemGeometry[index]["height"] * verticalRatio;
  14.         //adjust the position of item
  15.                 childrenItemGeometry[index]["item"].x = childrenItemGeometry[index]["x"] * horizontalRatio;
  16.                 childrenItemGeometry[index]["item"].y = childrenItemGeometry[index]["y"] * verticalRatio;
  17.                 if(childrenItemGeometry[index]["item"].font!=undefined)
  18.                 {
  19.                     childrenItemGeometry[index]["item"].font.pixelSize = childrenItemGeometry[index]["fontSize"]*fontRatio*fontSizeScaleFactor
  20.                 }
  21.             }
  22.            //emit the resize signal
  23.             globalResize.resized();
  24.         }
  25.     }


AutoResize.qml的使用示例

  1. //AutoResizeDemo
  2. import QtQuick 2.6
  3. import QtQuick.Controls 2.0
  4. Rectangle {
  5.     visible: true
  6.     width: 400
  7.     height: 300
  8.     AutoResize{
  9.         id:resizeHandler
  10.     }
  11.     Rectangle{
  12.         x:20
  13.         y:20
  14.         color: "red"
  15.         width: 100
  16.         height: 50
  17.     }
  18.     Rectangle{
  19.         x:200
  20.         y:20
  21.         color: "yellow"
  22.         width: 100
  23.         height: 50
  24.         Text {
  25.             anchors.centerIn: parent
  26.             text: qsTr("Text Size Test")
  27.         }
  28.     }
  29.     Row{
  30.         x:20
  31.         y:150
  32.         spacing: 4*resizeHandler.horizontalRatio
  33.         Button{
  34.             text: "Button1"
  35.         }
  36.         Button{
  37.             text: "Button2"
  38.         }
  39.     }
  40.     ComboBox{
  41.         x:20
  42.         y:200
  43.         model: ["Combobox Test"]
  44.     }
  45.     ListView{
  46.         y:150
  47.         x:250
  48.         width: 100
  49.         height:200
  50.         model: 5
  51.         header:Rectangle{
  52.             height: 20
  53.             Text {
  54.                 text: qsTr("ListView Test")
  55.             }
  56.         }
  57.         delegate: Rectangle{
  58.             height: 20
  59.             border.width: 2
  60.             Text {
  61.                 text: index
  62.             }
  63.         }
  64.     }
  65. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/94910
推荐阅读
相关标签
  

闽ICP备14008679号