#include "BuiltinDialog.h"

#include <QtGui/QTextEdit>

#include <QtGui/QPushButton>

#include <QtGui/QFileDialog>

#include <QtGui/QFontDialog>

#include <QtGui/QColorDialog>

#include <QtGui/QPrintDialog>

#include <QtGui/QInputDialog>

#include <QtGui/QErrorMessage>

#include <QtGui/QProgressDialog>

#include <QtGui/QPageSetupDialog>

#include <QtGui/QGridLayout>

#include <QtGui/QPalette>

#include <QtGui/QColor>

#include <QtGui/QPrinter>

#include <QtGui/QApplication>

#include <QtDebug>

BuiltinDialog::BuiltinDialog(QWidget *parent) :

QDialog(parent) {

// Create widgets.

displayTextEdit = new QTextEdit();

showFileDialogButton = new QPushButton(QObject::tr("File Dialog"));

showFontDialogButton = new QPushButton(QObject::tr("Font Dialog"));

showColorDialogButton = new QPushButton(QObject::tr("Color Dialog"));

showPrintDialogButton = new QPushButton(QObject::tr("Print Dialog"));

showInputDialogButton = new QPushButton(QObject::tr("Input Dialog"));

showErrorDialogButton = new QPushButton(QObject::tr("Error Dialog"));

showProgressDialogButton = new QPushButton(QObject::tr("Progress Dialog"));

showPageSetupDialogButton = new QPushButton(

QObject::tr("Page Setup Dialog"));

// Lay out widgets.

QGridLayout *gridLayout = new QGridLayout();

gridLayout->addWidget(showFileDialogButton, 0, 0, 1, 1);

gridLayout->addWidget(showFontDialogButton, 0, 1, 1, 1);

gridLayout->addWidget(showColorDialogButton, 0, 2, 1, 1);

gridLayout->addWidget(showPrintDialogButton, 1, 0, 1, 1);

gridLayout->addWidget(showInputDialogButton, 1, 1, 1, 1);

gridLayout->addWidget(showErrorDialogButton, 1, 2, 1, 1);

gridLayout->addWidget(showProgressDialogButton, 2, 0, 1, 1);

gridLayout->addWidget(showPageSetupDialogButton, 2, 1, 1, 1);

gridLayout->addWidget(displayTextEdit, 3, 0, 3, 3);

setLayout(gridLayout);

// Connect signals and slots.

QObject::connect(showFileDialogButton, SIGNAL(clicked()), this, SLOT(

buttonsClicked()));

QObject::connect(showFontDialogButton, SIGNAL(clicked()), this, SLOT(

buttonsClicked()));

QObject::connect(showColorDialogButton, SIGNAL(clicked()), this, SLOT(

buttonsClicked()));

QObject::connect(showPrintDialogButton, SIGNAL(clicked()), this, SLOT(

buttonsClicked()));

QObject::connect(showInputDialogButton, SIGNAL(clicked()), this, SLOT(

buttonsClicked()));

QObject::connect(showErrorDialogButton, SIGNAL(clicked()), this, SLOT(

buttonsClicked()));

QObject::connect(showProgressDialogButton, SIGNAL(clicked()), this, SLOT(

buttonsClicked()));

QObject::connect(showPageSetupDialogButton, SIGNAL(clicked()), this, SLOT(

buttonsClicked()));

// Initialize.

setWindowTitle(QObject::tr("Builtin Dialogs"));

}

void BuiltinDialog::buttonsClicked() {

QPushButton *button = qobject_cast<QPushButton *> (sender());

if (button == showFileDialogButton) {

QString fileName = QFileDialog::getOpenFileName(this, QObject::tr(

"Open File"), QDir::home().path(), QObject::tr(

"Images(*.png *.jpg *.gif)"));

displayTextEdit->setText(fileName);

else if (button == showFontDialogButton) {

bool ok;

const QFont &font = QFontDialog::getFont(&ok, displayTextEdit->font(),

this);

if (ok) {

displayTextEdit->setFont(font);

}

else if (button == showColorDialogButton) {

QPalette palette = displayTextEdit->palette();

const QColor &color = QColorDialog::getColor(palette.color(

QPalette::Base), this);

if (color.isValid()) {

palette.setColor(QPalette::Base, color);

displayTextEdit->setPalette(palette);

}

else if (button == showPrintDialogButton) {

QPrinter printer;

QPrintDialog dialog(&printer, this);

dialog.setWindowTitle(QObject::tr("Print Dialog"));

if (QDialog::Accepted == dialog.exec()) {

displayTextEdit->setText("Printing file.....");

}

else if (button == showInputDialogButton) {

bool ok;

QString text = QInputDialog::getText(this, QObject::tr(

"Input User Name"), QObject::tr("User Name: "),

QLineEdit::Normal, QDir::home().dirName(), &ok);

if (ok && !text.isEmpty()) {

displayTextEdit->setText(text);

}

else if (button == showErrorDialogButton) {

QErrorMessage box(this);

box.setWindowTitle(QObject::tr("Error Message"));

box.showMessage(QObject::tr("There are errors XX."));

box.showMessage(QObject::tr("There are errors XX."));

box.showMessage(QObject::tr("There are errors XX."));

box.showMessage(QObject::tr("There are errors YY."));

box.exec();

else if (button == showProgressDialogButton) {

int maxValue = 10000;

QProgressDialog dialog(QObject::tr("Copying files..."), QObject::tr(

"Cancel"), 0, maxValue, this);

dialog.setWindowModality(Qt::WindowModal);

dialog.setWindowTitle(QObject::tr("Progress Dialog"));

dialog.show();

for (int i = 0; i < maxValue; ++i) {

dialog.setValue(i);

qApp->processEvents();

if (dialog.wasCanceled()) {

break;

}

qDebug() << i; // #include <QtDebug>

}

dialog.setValue(maxValue);

else if (button == showPageSetupDialogButton) {

QPrinter printer;

QPageSetupDialog dlg(&printer, this);

dlg.setWindowTitle(QObject::tr("Page Setup"));

if (QDialog::Accepted == dlg.exec()) {

displayTextEdit->setText("Page's properties are setupped.");

}

}

}

http://www.cppblog.com/biao/archive/2009/03/28/78105.html

Qt: 内建对话框(各种对话框都有了,且用到了qobject_cast解析sender的技术)的更多相关文章

  1. qt学习001之运行对话框

    使用QT实现Window下运行对话框 1.摆放控件 首先设置并摆放相应的对话框控件,并更改相应名称:        2.实现功能 1)在文本框中输入信息后,点击确定或回车可以运行系统中相应的程序: 点 ...

  2. QT+ 使用标准对话框+关于对话框+问题对话框+文件对话框

    #include "mainwindow.h" #include <QMenuBar> #include <QMenu> #include <QAct ...

  3. 18第一章 ASP.Net内建对象

    第一章        ASP.Net内建对象 第一章        ASP.Net内建对象 ASP.Net为保持用户的数据和信息,内建了许多对象,包括Application.Response.Requ ...

  4. Bash shell的内建命令:type

    type指令是用来观察指令时来自于外部指令还是内建在bash中的指令. type  [-tpa]  name 选项与参数: :不加任何选项与参数时,type会显示出name是外部指令还是bash内建指 ...

  5. javascript 对象初探 (四)--- 内建对象之旅之Array

     我们不要去纠结神马是内建对象,神马是內建构造器.到后来你们便会发现其实她们都是对象. Array()是一个构建数组的內建构造器函数: var arr = new Array(); 与下面的是等效的: ...

  6. MFC编程入门之十六(对话框:消息对话框)

    前面几节讲了属性页对话框,我们可以根据所讲内容方便的建立自己的属性页对话框.本节讲解Windows系统中最常用最简单的一类对话框--消息对话框. 我们在使用Windows系统的过程中经常会见到消息对话 ...

  7. javascript内建对象

    内建对象等价于内建构造器内建对象大致分为三类:数据封装类对象--Object.Array.Boolean.Number和String工具类对象--Math.Date.RegExp等用于提供遍历的对象错 ...

  8. Paip.最佳实践-- Buildin variale 内建变量 ,魔术变量,预定义变量,系统常量,系统变量 1

    Paip.最佳实践-- Buildin variale 内建变量 ,魔术变量,预定义变量,系统常量,系统变量 1.1.1       C++内建变量(__LINE__).... 1.1.2       ...

  9. [pyhton]python内建方法

    撸一遍python的内建方法 这样做的好处就是:我如果要完成一个功能的时候,如果能用内建方法完成,就用内建方法.这样可以提高效率,同时使自己的代码更加优雅.哎呦?那岂不是撸完就是python高手了?我 ...

随机推荐

  1. javascript笔记——JavaScript经典实例

    转载自百度文库 http://wenku.baidu.com/view/9a703522bcd126fff7050bfa.html 1. oncontextmenu="window.even ...

  2. root-systerm-bin是什么program

    root-systerm-bin是什么program http://packages.ubuntu.com/lucid/root-system-bin

  3. C# 代理HTTP请求

    目的: 应该有不少人需要去某些网站不停爬取数据,有时会使用HTTPRequest一直请求某个网站的某个网址.有的网站比如 QQ空间,赶集网(这是我测试的网站),不停刷新会提醒你的账号异常,可能会查封你 ...

  4. DQL_数据查询语言

    2014年11月21日 21:43:53 DQL      基础查询--  注意要点:1.用户友善的标题                                                 ...

  5. 官方 Material Design App

    [转]MaterialDesignCenter 发表回复 转: https://github.com/lightSky/MaterialDesignCenter MaterialDesignCente ...

  6. 使用fiddler4做代理调试手机页面

    由于一般手机不能改host,手机页面如果涉及到各个域名ip的混合使用,在手机上调试看效果非常麻烦. 使用fiddler4做代理,手机跟电脑连到同一个局域网,手机上网通过电脑做个代理上网,那么一切请求就 ...

  7. chrome jsonView插件安装

    chrome 应用商店打不开,想装插件愁死人了. 今天想到一个好方法,以 jsonView插件为例分享一下. 1.打开 https://github.com : 2.搜索 jsonView 链接:ht ...

  8. 解决pxe网络批量安装部署linux遇到的问题和解决方法

    解决“出现Unable to retrieve 192.168.0.100/var/www/html/images/install.img错误” 分析:我们必须了解这个错误出现在哪个阶段才能正确找到错 ...

  9. Opencv 摄像头矫正

    摄像机有6个外参数(3个旋转,3个平移),5个内参数(fx,fy,cx,cy,θ),摄像机的内参数在不同的视场,分辨率中是一样的,但是不同的视角下6个外参数是变化的,一个平面物体可以固定8个参数,(为 ...

  10. Button控件

    1.通过设置AutoSize(bool)属性来控制按钮的大小以适应文本的长度 btn_One.AutoSize = true;//设置按钮基于内容自动调整大小 2.当按钮得到焦点是自动放大,失去焦点时 ...