#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. lex&yacc6 ---error

    类的检测 http://blog.csdn.net/pandaxcl/article/details/1536784

  2. 创建型模式——Builder

    1.意图 将一个复杂对象的构建与它的表示分离,使得同样的构建过程可以创建不同的表示. 2.结构 3.参与者 Builder为创建一个Product对象的各个部件指定抽象接口 ConcreteBuild ...

  3. 简单风格 在线音乐播放器(支持wav,MP3等)

    找了两天终于找到了,支持wav,MP3,其他格式没有测试. 1.修复了jQuery判断ie的bug, 2.修复播放循环 下载地址: http://pan.baidu.com/s/1o6upwHs

  4. laravel--模型中各种属性详解

    首先以这个模型为例 首先看, 1.$guarded属性,$fillable属性 $guarded属性一般是和$fillable对应的,不是一起存在但是互相使用,他们都是laravel的批量赋值方法cr ...

  5. CentOS-6.5安装配置JDK-7|Tomcat-8

    安装说明 系统环境:centos-6.5 安装方式:rpm安装 软件:jdk-7-linux-x64.rpm 下载地址:http://www.oracle.com/technetwork/java/j ...

  6. 不加好友实现QQ在线代码状态临时会话

    网友在介绍怎么样使用QQ来强制聊天,才想到以前一直遇到的QQ在线生成代码后,遇到的必须添加好友才能聊天的一个疑问. 公告:“QQ在线状态”V2.0正式发布,解决了QQ2009用户点击“在线状态”后须添 ...

  7. ueditor使用中的坑

    项目中要使用富文本编辑于是采用了百度的开源富文本编辑器 ueditor    官网 http://ueditor.baidu.com/website/ 使用方法就按照官方的来的. 经过使用记录以下要点 ...

  8. JSP 隐藏对象

    [摘要]     隐藏对象用在jsp表达式和脚本中,不能直接用在jsp声明中,因为这些隐藏对象是容器在jspservice方法中定义的,在这个方法中定义的变量不能在jsp声明中使用.可以通过参数方法将 ...

  9. android模拟器打开时比较慢,Run As就找不到模拟器

    1.运行中输入cmd,然后回车,调出command窗口 2.用cd,将目录切换到adb所在目录,然后输入adb kill-server ,adb start-server 3.adb devices就 ...

  10. go语言实现线程池

    话说真的好久没有写博客了,最近赶新项目,工作太忙了.这一周任务比较少,又可以随便敲敲了. 逛论坛的时候突发奇想,想用go语言实现一个线程池,主要功能是:添加total个任务到线程池中,线程池开启num ...