Qt: 内建对话框(各种对话框都有了,且用到了qobject_cast解析sender的技术)
#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的技术)的更多相关文章
- qt学习001之运行对话框
使用QT实现Window下运行对话框 1.摆放控件 首先设置并摆放相应的对话框控件,并更改相应名称: 2.实现功能 1)在文本框中输入信息后,点击确定或回车可以运行系统中相应的程序: 点 ...
- QT+ 使用标准对话框+关于对话框+问题对话框+文件对话框
#include "mainwindow.h" #include <QMenuBar> #include <QMenu> #include <QAct ...
- 18第一章 ASP.Net内建对象
第一章 ASP.Net内建对象 第一章 ASP.Net内建对象 ASP.Net为保持用户的数据和信息,内建了许多对象,包括Application.Response.Requ ...
- Bash shell的内建命令:type
type指令是用来观察指令时来自于外部指令还是内建在bash中的指令. type [-tpa] name 选项与参数: :不加任何选项与参数时,type会显示出name是外部指令还是bash内建指 ...
- javascript 对象初探 (四)--- 内建对象之旅之Array
我们不要去纠结神马是内建对象,神马是內建构造器.到后来你们便会发现其实她们都是对象. Array()是一个构建数组的內建构造器函数: var arr = new Array(); 与下面的是等效的: ...
- MFC编程入门之十六(对话框:消息对话框)
前面几节讲了属性页对话框,我们可以根据所讲内容方便的建立自己的属性页对话框.本节讲解Windows系统中最常用最简单的一类对话框--消息对话框. 我们在使用Windows系统的过程中经常会见到消息对话 ...
- javascript内建对象
内建对象等价于内建构造器内建对象大致分为三类:数据封装类对象--Object.Array.Boolean.Number和String工具类对象--Math.Date.RegExp等用于提供遍历的对象错 ...
- Paip.最佳实践-- Buildin variale 内建变量 ,魔术变量,预定义变量,系统常量,系统变量 1
Paip.最佳实践-- Buildin variale 内建变量 ,魔术变量,预定义变量,系统常量,系统变量 1.1.1 C++内建变量(__LINE__).... 1.1.2 ...
- [pyhton]python内建方法
撸一遍python的内建方法 这样做的好处就是:我如果要完成一个功能的时候,如果能用内建方法完成,就用内建方法.这样可以提高效率,同时使自己的代码更加优雅.哎呦?那岂不是撸完就是python高手了?我 ...
随机推荐
- SpringMVC接收多个对象
问题背景: 要在一个表单里同时一次性提交多名乘客的个人信息到SpringMVC,前端HTML和SpringMVC Controller里该如何处理? 第1种方法:将Json对象序列化成Json字符串提 ...
- css3学习笔记之图片
圆角图片 border-radius: 圆角图片: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <!DOCTYPE html> <htm ...
- 通过使用Chrome的开发者工具来学习JavaScript
本文作者是Peter Rybin,Chrome开发者工具团队成员. 本文中,我们将通过使用Chrome的开发者工具,来学习JavaScript中的两个重要概念”闭包”和”内部属性”. 闭包 首先要讲的 ...
- xamarin.ios 豆瓣电台视频教程
视频中提到的网址: http://www.sufeinet.com/thread-655-1-1.html https://github.com/akfish/fm-terminal/blob/dev ...
- SQL Server如何使用XML格式传输解析
Sqlserver in 实现 参数化查询 XML类型解决方案 [转] :如果参数是int类型: declare @a xml set @a=' <row><id>1</ ...
- PNG兼容IE6解决方法
虽然说现在早就不用ie6浏览器了,可以还是有一小部分还在使用 ,刚好公司也有要求~~~ <p> E6不兼容png图片,确实让网页的图片质量大大下降,为了兼容万恶的IE6,总结了下面几种方法 ...
- Laravel Homestead安装教程
1/先在https://www.vagrantup.com 下载vagrantup ,对应平台下载,并安装,安装后可以在命令行使用vagrant https://www.vagrantup.com/ ...
- CentOS 6,7最小化安装后再安装图形界面
CentOS 6.2最小化安装后再安装图形界面 在安装CentOS 6.2时发现它没有提示我要怎么安装,而是“自作主张”地给我选择了最小化安装,结果装完之后只有终端界面,因为有时候不得不用图形界面,所 ...
- 关于hadoop2.4.2版本学习时遇到的问题
问题一:namenode启动失败 描述:在初始化后hadoop后,发现datanode启动失败,namenode则可以正常启动,如果把用户换成root权限,再次启动时,则namenode和datano ...
- The 50 Most Essential Pieces of Classical Music
1. Die Zauberflöte ("The Magic Flute"), K. 620: Overture London Philharmonic Orchestra 7:2 ...