当前位置:   article > 正文

qt 实现窗口的放大或缩小_qt窗口实现缩放

qt窗口实现缩放
    this->setMinimumSize(0, 0);//设定窗口最大最小大小
	this->setMaximumSize(2040, 2040);
	QRect tmp = this->geometry();

	QPoint centerPoint = tmp.center(); // 储存中心点坐标
	int adjustSize = 20;	//放大缩小的尺寸
	if (放大) // 放大
	{
		tmp.setWidth(tmp.width() + adjustSize);
		tmp.setHeight(tmp.height() + adjustSize);
	}
	else // 缩小
	{
		tmp.setWidth(tmp.width() - adjustSize);
		tmp.setHeight(tmp.height() - adjustSize);
	}
	if (tmp.width() > 20) // 限制最小尺寸
	{
		tmp.moveCenter(centerPoint); // 从中心缩放而非左上角处
		this->setGeometry(tmp);//改变窗口大小
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/95001
推荐阅读
相关标签
  

闽ICP备14008679号