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

时间:2023-01-11 15:20:38

#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&plus; 使用标准对话框&plus;关于对话框&plus;问题对话框&plus;文件对话框

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

  3. 18第一章&Tab;ASP&period;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编程入门之十六(对话框&colon;消息对话框)

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

  7. javascript内建对象

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

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

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

  9. &lbrack;pyhton&rsqb;python内建方法

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

随机推荐

  1. BingHack,Bing旁注API查询工具

    现在旁注查询都失效了.通过网上查询发现有人说可以通过微软的API进行旁注查询 https://datamarket.azure.com/dataset/explore/bing/search 注册登录 ...

  2. php中的gethostbyname函数有问题

    在根据域名获取ip的批量执行中,gethostbyname有些域名得到的ip是不正确的,不知道是不是版本的bug. 解决办法是,使用执行命令的方式获取 echo exec("host dom ...

  3. 使用XmlDataDocument将数据存储到XML文档

    string str = "Data Source=192.168.1.20;Initial Catalog=WebTest;User ID=sa;Password="; SqlC ...

  4. Unity Sprite转Prefab

    新项目使用Unity5.X,遇到了一些问题,其中就有Sprite的管理更新问题,查了一些资料,Mono推荐的是转为Prefab处理. 看了一些国外同行的处理方法,分析了一个编辑器插件脚本.学到了一些技 ...

  5. 【基础】Oracle 表空间和数据文件

    多个表空间的优势:1.能够将数据字典与用户数据分离出来,避免由于字典对象和用户对象保存在同一个数据文件中而产生的I/O冲突2.能够将回退数据与用户数据分离出来,避免由于硬盘损坏而导致永久性的数据丢失3 ...

  6. UVA&lowbar;Digit Puzzle UVA 12107

    If you hide some digits in an integer equation, you create a digit puzzle. The figure below shows tw ...

  7. JS对象2

    1.Date对象 创建对象 //方法1:不指定参数 var nowd1=new Date(); alert(nowd1.toLocaleString( )); //方法2:参数为日期字符串 var n ...

  8. Spring中&commat;相关注解的意义

    1.@controller 控制器(注入服务) 用于标注控制层,相当于struts中的action层 2.@service 服务(注入dao) 用于标注服务层,主要用来进行业务的逻辑处理 3.@rep ...

  9. Git Add&comma;Git别名等

    一,Git  Add 1.  git add -A   保存所有的修改 2.  git add .     保存新的添加和修改,但是不包括删除 3.  git add -u   保存修改和删除,但是不 ...

  10. Word2Vec中文语料实战

    http://blog.csdn.net/gnehcuoz/article/details/52136371