C++day7

widget.cpp

#include "widget.h"
#include "ui_widget.h"

Widget::Widget(QWidget *parent)
    : QWidget(parent)
    , ui(new Ui::Widget)
{
    ui->setupUi(this);
}

Widget::~Widget()
{
    delete ui;
}


//字体按钮对应的槽函数
void Widget::on_pushButton_clicked()
{
    bool ok;        //返回是否选择字体
    //调出系统的字体对话框
    QFont f = QFontDialog::getFont(&ok,QFont("隶书",10,5,true),this,"字体");
    //功能:调出系统的字体对话框
    //参数一:返回字符选中字体状态
    //参数二:初始字体
    //参数三:父组件
    //参数四:对话框标题

    //将选中的字体设置到文本编辑器中
    if(ok)
    {
        //ui->msgEdit->setFont(f);      //对全局字体进行设置
        ui->msgEdit->setCurrentFont(f);
    }
}




//颜色按钮对应的槽函数
void Widget::on_colorBtn_clicked()
{
    //调取颜色对话框,选中颜色
    QColor c = QColorDialog::getColor(QColor(35,203,190),this,"颜色");
    //判断颜色是否合法
    if(c.isValid())
    {
        //将该颜色添加到文本
        //ui->msgEdit->setTextColor(c);           //设置字体颜色前景色

        ui->msgEdit->setTextBackgroundColor(c);     //设置背景色
    }
}




//打开文件路径对应的槽函数
void Widget::on_openfilebBnt_clicked()
{
    QString fileName = QFileDialog::getOpenFileName(
                this,       //父组件
                "选择",       //窗口名
                "./",       //起始路径
                "Txt(*.txt);c程序;;C++程序(*.cpp);;all(*.*)");      //过滤器

    //QDebug()<msgEdit->setText(msg);

    //6.关闭文件
    f.close();
}

    // 保存文件按钮对应槽函数

void Widget::on_savefileBtn_clicked()
{
    // 打开文件对话框,提供文件路径
    QString fileName = QFileDialog::getSaveFileName (this,  // 父组件
                                                    "保存", // 标题
                                                    "./",   // 起始路径和默认名字
                                                    "Txt(*.txt);;C(*.c);;C++(*.cpp);;all(*.)"   // 文件过滤器
                                                    );

    // 使用QFile实例化一个对象
    QFile file(fileName);
    // 打开文件
    if(!file.open (QFile::WriteOnly)){ // 以写方式打开文件
        return;
    }
    // 获取text中的内容
    QString str = ui->msgEdit->toPlainText ();

    // 写入文件
    file.write (str.toLocal8Bit ()); // 将QString类型转为QByteArray类型

    // 关闭文件
    file.close ();
}

widget.h

#ifndef WIDGET_H
#define WIDGET_H

#include 
#include      //字体类
#include             //字体对话框类
#include      //颜色对话框类
#include        //颜色类
#include
#include     //文件类
#include

QT_BEGIN_NAMESPACE
namespace Ui { class Widget; }
QT_END_NAMESPACE

class Widget : public QWidget
{
    Q_OBJECT

public:
    Widget(QWidget *parent = nullptr);
    ~Widget();

private slots:
    void on_pushButton_clicked();

    void on_colorBtn_clicked();

    void on_openfilebBnt_clicked();

    void on_savefileBtn_clicked();

private:
    Ui::Widget *ui;
};
#endif // WIDGET_H

你可能感兴趣的:(c++)