qt -- setGeometry函数的使用

ui->progressBar->setGeometry(0, 0, 60, 60 );

从窗体的(0,0)位置开始(即为最左上角的点),显示一个60*60的控件(宽60,高60)。

此函数的底层实现代码:

  void BorderLayout::setGeometry(const QRect &rect)
  {
      ItemWrapper *center = 0;
      int eastWidth = 0;
      int westWidth = 0;
      int northHeight = 0;
      int southHeight = 0;
      int centerHeight = 0;
      int i;

      QLayout::setGeometry(rect);

      for (i = 0; i < list.size(); ++i) {
          ItemWrapper *wrapper = list.at(i);
          QLayoutItem *item = wrapper->item;
          Position position = wrapper->position;

          if (position == North) {
              item->setGeometry(QRect(rect.x(), northHeight, rect.width(),
                                      item->sizeHint().height()));

              northHeight += item->geometry().height() + spacing();
          } else if (position == South) {
              item->setGeometry(QRect(item->geometry().x(),
                                      item->geometry().y(), rect.width(),
                                      item->sizeHint().height()));

              southHeight += item->geometry().height() + spacing();

              item->setGeometry(QRect(rect.x(),
                                rect.y() + rect.height() - southHeight + spacing(),
                                item->geometry().width(),
                                item->geometry().height()));
          } else if (position == Center) {
              center = wrapper;
          }
      }

      centerHeight = rect.height() - northHeight - southHeight;

      for (i = 0; i < list.size(); ++i) {
          ItemWrapper *wrapper = list.at(i);
          QLayoutItem *item = wrapper->item;
          Position position = wrapper->position;

          if (position == West) {
              item->setGeometry(QRect(rect.x() + westWidth, northHeight,
                                      item->sizeHint().width(), centerHeight));

              westWidth += item->geometry().width() + spacing();
          } else if (position == East) {
              item->setGeometry(QRect(item->geometry().x(), item->geometry().y(),
                                      item->sizeHint().width(), centerHeight));

              eastWidth += item->geometry().width() + spacing();

              item->setGeometry(QRect(
                                rect.x() + rect.width() - eastWidth + spacing(),
                                northHeight, item->geometry().width(),
                                item->geometry().height()));
          }
      }

      if (center)
          center->item->setGeometry(QRect(westWidth, northHeight,
                                          rect.width() - eastWidth - westWidth,
                                          centerHeight));
  }

 

  • 5
    点赞
  • 27
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值