Chinaunix首页 | 论坛 | 博客
  • 博客访问: 631871
  • 博文数量: 1008
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 5175
  • 用 户 组: 普通用户
  • 注册时间: 2012-07-31 09:44
文章分类
文章存档

2012年(1008)

我的朋友

分类:

2012-08-01 11:07:49

原文地址:标准对话框的使用 作者:luozhiyong131

/*

 * 标准能用文件、颜色、字体对话框的使用(核心代码)

 * 参考:Linux窗口程序设计—Qt4精彩实例分析

 * Lzy  2011-8-27

 */

 

#include "widget.h"

#include "ui_widget.h"

#include

#include

#include

 

Widget::Widget(QWidget *parent) :

    QWidget(parent),

    ui(new Ui::Widget)

{

    ui->setupUi(this);

}

 

Widget::~Widget()

{

    delete ui;

}

 

void Widget::changeEvent(QEvent *e)

{

    QWidget::changeEvent(e);

    switch (e->type()) {

    case QEvent::LanguageChange:

        ui->retranslateUi(this);

        break;

    default:

        break;

    }

}

 

void Widget::on_BtnFont_clicked()

{

    bool ok;

    QFont font = QFontDialog::getFont(&ok, this);

    if(ok)

        ui->lineEditFont->setFont(font);

}

 

void Widget::on_BtnFile_clicked()

{

    QString finename = QFileDialog::getOpenFileName(this, "Open","/", "File(*.*)");

    ui->lineEditFile->setText(finename.toAscii());

}

 

void Widget::on_BtnColor_clicked()

{

    QColor color = QColorDialog::getColor();

    if(color.isValid())

        ui->lineEditColor->setPalette(color);

}

 

完整代码: 标准对话框的使用.rar   

阅读(108) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~