我正在尝试在Qt中创建一个圆形按钮。在设计器中创建了一个带有单个按钮QPushButton
的简单表单。我正在尝试使用setMask()
将其转换为圆形按钮。一旦应用setMask()
,按钮就会消失。是否需要创建自定义窗口小部件来制作圆形按钮?
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QMessageBox>
#include <QtGui/QPushButton>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->pushButton->setText("Test Text");
ui->pushButton->setFixedHeight(200);
ui->pushButton->setFixedWidth(200);
//Set Starting point of region 5 pixels inside , make region width & height
//values same and less than button size so that we obtain a pure-round shape
QRegion* region = new QRegion(*(new QRect(ui->pushButton->x()+5,ui->pushButton->y()+5,190,190)),QRegion::Ellipse);
ui->pushButton->setMask(*region);
ui->pushButton->show();
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_pushButton_clicked()
{
QMessageBox msgbox;
msgbox.setText("Text was set");
msgbox.show();
}
注意:如果按钮是在代码中创建的,并且在显示窗口之前应用于窗口,则会显示该按钮。我想使用Qt Designer的WYSIWIG功能,而不是在代码中创建整个表单。
答案 0 :(得分:18)
它是不可见的,但它是因为你没有以正确的点为中心的椭圆。
QWidget :: setMask “仅导致窗口小部件重叠区域的部分可见。如果区域包含窗口小部件的rect()之外的像素,则窗口系统控制该区域可能会或可能不会显示,具体取决于平台“。
尝试使用此代码,您会看到:
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->pushButton->setText("Test Text");
ui->pushButton->setFixedHeight(200);
ui->pushButton->setFixedWidth(200);
QRect rect(0,0,190,190);
qDebug() << rect.size();
qDebug() << ui->pushButton->size();
QRegion region(rect, QRegion::Ellipse);
qDebug() << region.boundingRect().size();
ui->pushButton->setMask(region);
}
聚苯乙烯。为什么要设置pushButton的高度两次?我假设这是一个错字,你的意思是宽度。
答案 1 :(得分:12)
我认为最简单的解决方案是使用样式表。
像这样:
background-color: white;
border-style: solid;
border-width:1px;
border-radius:50px;
border-color: red;
max-width:100px;
max-height:100px;
min-width:100px;
min-height:100px;
请注意,您必须为按钮创建完整样式,因为标准样式将不适用。
答案 2 :(得分:0)
这将完美地工作 -
QPushButton {
color: #333;
border: 2px solid #555;
border-radius: 20px;
border-style: outset;
background: qradialgradient(
cx: 0.3, cy: -0.4, fx: 0.3, fy: -0.4,
radius: 1.35, stop: 0 #fff, stop: 1 #888
);
padding: 5px;
}
QPushButton:hover {
background: qradialgradient(
cx: 0.3, cy: -0.4, fx: 0.3, fy: -0.4,
radius: 1.35, stop: 0 #fff, stop: 1 #bbb
);
}