哈喽大家好,欢迎关注公众号(20YC编程),有免费视频课程哦!
-今日内容-
QFontComboBox是Qt框架中的一个字体选择类,它提供了一个下拉列表框,用于选择字体。
- 字体选择:QFontComboBox提供了一个字体选择器,用户可以从下拉列表中选择不同的字体。
- 字体筛选:可以使用setFontFilters()方法来设置字体筛选器,根据特定的筛选条件显示可用的字体。
- 当前字体:可以通过setCurrentFont()方法来设置当前字体,也可以使用currentFont()方法来获取当前选择的字体。
- 信号监听:QFontComboBox提供了currentFontChanged()信号,当选择的字体发生变化时,可以监听并响应这个信号。
头文件:#include <QFontComboBox>
cmake:find_package(Qt6 REQUIRED COMPONENTS Widgets)
target_link_libraries(mytarget PRIVATE Qt6::Widgets)
qmake:QT += widgets
继承于:QComboBox
#include <QFontComboBox>
m_pFontComboBox = new QFontComboBox(this);
m_pFontComboBox->setGeometry(35, 35, 280, 34);
// 当前字体改变时,发射该信号。
void currentFontChanged(const QFont &f)
fontFilters字体过滤器,主要目的是确定哪些字体会出现在QFontComboBox的下拉列表中。
QFontComboBox::FontFilters宏定义如下:
QFontComboBox::AllFonts 0 显示所有字体。(默认)
QFontComboBox::ScalableFonts 0x1 可缩放字体。
QFontComboBox::NonScalableFonts 0x2 不可缩放字体。
QFontComboBox::MonospacedFonts 0x4 单间距字体。
QFontComboBox::ProportionalFonts 0x8 比例字体。
// 访问函数
void setFontFilters(QFontComboBox::FontFilters filters)
QFontComboBox::FontFilters fontFilters() const
/**** 例子: ****/
// 显示可缩放和不可缩放字体。
m_pFontComboBox->setFontFilters(QFontComboBox::ScalableFonts | QFontComboBox::NonScalableFonts);
// 访问函数
QFont currentFont() const
void setCurrentFont(const QFont &f)
/**** 例子: ****/
m_pFontComboBox->setCurrentFont(QFont("宋体"));
#ifndef IMAINWINDOW_H
#define IMAINWINDOW_H
#include <QMainWindow>
#include <QFontComboBox>
#include <QLabel>
class IMainWindow : public QMainWindow
{
Q_OBJECT
public:
IMainWindow(QWidget *parent = nullptr);
~IMainWindow();
private slots:
void slotCurrentFontChanged(const QFont &f);
private:
QLabel * m_pLabel1 {nullptr};
QLabel * m_pLabel2 {nullptr};
QLabel * m_pLabel3 {nullptr};
QFontComboBox * m_pFontComboBox {nullptr};
};
#endif // IMAINWINDOW_H
#include "imainwindow.h"
#include <QLabel>
IMainWindow::IMainWindow(QWidget *parent)
: QMainWindow(parent)
{
this->setWindowTitle("欢迎关注公众号(20YC编程)");
this->setWindowFlags(Qt::CustomizeWindowHint|Qt::WindowMinMaxButtonsHint|Qt::WindowCloseButtonHint);
this->resize(780, 380);
// 创建QFontComboBox控件
m_pFontComboBox = new QFontComboBox(this);
m_pFontComboBox->setGeometry(35, 35, 280, 34);
// 字体1:默认选择字体
m_pLabel1 = new QLabel("字体1:默认选择字体", this);
m_pLabel1->setGeometry(35, 75, 680, 32);
// 字体2:选择字体 + 调整字体大小
m_pLabel2 = new QLabel("字体2:选择字体 + 调整字体大小", this);
m_pLabel2->setGeometry(35, 115, 680, 32);
m_pLabel2->setStyleSheet("QLabel { color: green; }");
// 字体3:选择字体 + 调整字体大小
m_pLabel3 = new QLabel("字体3:选择字体 + 调整字体大小 + 斜体", this);
m_pLabel3->setGeometry(35, 155, 680, 32);
m_pLabel3->setStyleSheet("QLabel { color: red; }");
connect(m_pFontComboBox, &QFontComboBox::currentFontChanged, this, &IMainWindow::slotCurrentFontChanged);
m_pFontComboBox->setCurrentFont(QFont("宋体"));
}
IMainWindow::~IMainWindow()
{
}
void IMainWindow::slotCurrentFontChanged(const QFont &f)
{
m_pLabel1->setFont(f);
m_pLabel2->setFont(QFont(f.family(), 20));
m_pLabel3->setFont(QFont(f.family(), 20, -1, true));
}
#include "imainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
IMainWindow w;
w.show();
return a.exec();
}
-【End】-
喜欢本文章,记得点赞、分享、关注哦~