码迷,mamicode.com
首页 > 其他好文 > 详细

Qt之QFontDialog

时间:2020-07-08 13:36:54      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:数据库   ret   def   code   bool   return   argc   load   efi   

widget.h:

#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>

class Widget : public QWidget
{
    Q_OBJECT
public slots:
void showFontDialog();
public:
    Widget(QWidget *parent = 0);
    ~Widget();
};

#endif // WIDGET_H

widget.cpp:

#include "widget.h"
#include<QFont>
#include<QDebug>
#include<QPushButton>
#include<QVBoxLayout>
#include<QFontDialog>
#include<QFontDatabase>

Widget::Widget(QWidget *parent)
    : QWidget(parent)
{
    this->resize(600,480);
QFont qf=this->font();
qf.setFamily("仿宋");
qf.setPointSize(30);
 this->setFont(qf);

 //QFontDatabase db; //系统字体数据库
//qDebug()<<db.families()<<endl;
QPushButton *qp_one=new QPushButton("用户名");
QPushButton *qp_two=new QPushButton("密码");
QVBoxLayout *qv=new QVBoxLayout(this);
qv->addWidget(qp_one);
qv->addWidget(qp_two);
this->setLayout(qv);
connect(qp_one,SIGNAL(clicked()),this,SLOT(showFontDialog()));
connect(qp_two,SIGNAL(clicked()),this,SLOT(showFontDialog()));
}
void Widget::showFontDialog()
{
    bool ok;
   // QFont qf=QFontDialog::getFont(&ok,this);
     QFont qf=QFontDialog::getFont(&ok,this->font(),this,"ff");
    if(ok)
    {
        this->setFont(qf);
    }

}
Widget::~Widget()
{

}

main.cpp:

#include "widget.h"
#include <QApplication>
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Widget w;
    w.show();

    return a.exec();
}

效果:

技术图片

 

Qt之QFontDialog

标签:数据库   ret   def   code   bool   return   argc   load   efi   

原文地址:https://www.cnblogs.com/SunShine-gzw/p/13266294.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!