最近在学习Qt框架,今天学习了一下消息框的使用, 现整理出来以作记录。
在程序运行时,经常需要提示用户一些信息,比如警告啊,提示啊,建议啊之类的东西。这些东西基本上是通过消息框与用户进行交互的,Qt中主要是用QMessageBox类来加以实现的。
消息框一般分为七种:
具体用法见源码以及分析:
Dialog.pro
#------------------------------------------------- # # Project created by QtCreator 2015-10-24T17:32:35 # #------------------------------------------------- QT += core gui greaterThan(QT_MAJOR_VERSION, 4): QT += widgets TARGET = Dialog TEMPLATE = app SOURCES += main.cpp dialog.cpp HEADERS += dialog.h
dialog.h
#ifndefDIALOG_H #defineDIALOG_H #include<QDialog> #include<QGridLayout> #include<QPushButton> #include<QLabel> #include<QMessageBox> class Dialog: public QDialog { Q_OBJECT public: Dialog(QWidget *parent = 0); ~Dialog(); public://配置部件和布局 QLabel *label; QPushButton *QuestionBtn,*InformationBtn,*WarningBtn,*CriticalBtn,*AboutBtn,*AboutQtBtn,*CustomBtn; QGridLayout *layout,*layoutLabel,*layoutBtn; protected slots://各种按钮的槽 void slotQuestion(); void slotInformation(); void slotWarning(); void slotCritical(); void slotAbout(); void slotAboutQt(); void slotCustom(); }; #endif// DIALOG_H
dialog.cpp
#include"dialog.h" Dialog::Dialog(QWidget *parent) : QDialog(parent) { setWindowTitle("QMessageBox"); QuestionBtn=new QPushButton("Question"); InformationBtn=new QPushButton("Information"); WarningBtn=new QPushButton("Warning"); CriticalBtn=new QPushButton("Critical"); AboutBtn=new QPushButton("About"); AboutQtBtn=new QPushButton("AboutQt"); CustomBtn=new QPushButton("Custom"); label=new QLabel("About Qt MessageBox:"); layout=new QGridLayout(this); layoutLabel=new QGridLayout; layoutBtn=new QGridLayout; layoutLabel->addWidget(label,0,0); layoutBtn->addWidget(QuestionBtn,1,0); layoutBtn->addWidget(InformationBtn,1,1); layoutBtn->addWidget(WarningBtn,2,0); layoutBtn->addWidget(CriticalBtn,2,1); layoutBtn->addWidget(AboutBtn,3,0); layoutBtn->addWidget(AboutQtBtn,3,1); layoutBtn->addWidget(CustomBtn,4,0); layoutBtn->setSpacing(15); //嵌套布局 layout->addLayout(layoutLabel,0,0); layout->addLayout(layoutBtn,1,0); setFixedSize(300,220);//固定大小 connect(QuestionBtn,SIGNAL(clicked()),this,SLOT(slotQuestion())); connect(InformationBtn,SIGNAL(clicked()),this,SLOT(slotInformation())); connect(WarningBtn,SIGNAL(clicked()),this,SLOT(slotWarning())); connect(CriticalBtn,SIGNAL(clicked()),this,SLOT(slotCritical())); connect(AboutBtn,SIGNAL(clicked()),this,SLOT(slotAbout())); connect(AboutQtBtn,SIGNAL(clicked()),this,SLOT(slotAboutQt())); connect(CustomBtn,SIGNAL(clicked()),this,SLOT(slotCustom())); } Dialog::~Dialog() { } //直接调用AboutQt,设置句柄和标题即可 void Dialog::slotAboutQt(){ QMessageBox::aboutQt(this,"This is the title"); } //以下三个函数均是设置句柄标题和信息即可,也可以在最后设置默认按钮,一般默认的是QMessageBox::Ok。 void Dialog::slotAbout(){ QMessageBox::about(this,"About","This is the label."); } void Dialog::slotCritical(){ QMessageBox::critical(this,"Critical","This is the label."); } void Dialog::slotInformation(){ QMessageBox::information(this,"Information","This is the label."); } //自定义消息框 void Dialog::slotCustom(){ QMessageBox customMsgBox; customMsgBox.setWindowTitle("Custom message box"); //添加按键 QPushButton *lockBtn=customMsgBox.addButton("Lock",QMessageBox::ActionRole); QPushButton *unlockBtn=customMsgBox.addButton("Unlock",QMessageBox::ActionRole); QPushButton *cancelBtn=customMsgBox.addButton(QMessageBox::Cancel);//注意cancel不能指定Text //customMsgBox.setIconPixmap(QPixmap("a.png"));//设置图片 customMsgBox.setText("This is the label"); customMsgBox.exec();//执行消息框 QPushButton *msg=(QPushButton*)customMsgBox.clickedButton();//接受按键信息 //判断按键 if(msg==lockBtn) label->setText("Custom button /lock"); if(msg==unlockBtn) label->setText("Custom button /unlock"); if(msg==cancelBtn) label->setText("Custom button /cancel"); } void Dialog::slotQuestion(){ //QMessageBox::**question()**函数,传入句柄,标题,文本,按钮值,返回按键对应的值,最后也可以加默认按键的位置 int msg=QMessageBox::question(this,"Question","This is the label.",QMessageBox::Ok|QMessageBox::Cancel); //判断选择信息 switch(msg){ case QMessageBox::Ok: label->setText("Question button /OK"); break; case QMessageBox::Cancel: label->setText("Question button /Cancel"); break; default: break; } } void Dialog::slotWarning(){ //QmessageBox::warning()函数同Question函数 int msg=QMessageBox::warning(this,"Question","This is the label.",QMessageBox::Save|QMessageBox::Discard|QMessageBox::Cancel,QMessageBox::Save); switch(msg){//判断选择信息 case QMessageBox::Save: label->setText("Warning button /Save"); break; case QMessageBox::Cancel: label->setText("Warning button /Cancel"); break; case QMessageBox::Discard: label->setText("Warning button /Discard"); break; default: break; } }
##main.cpp
#include"dialog.h" #include<QApplication> int main(intargc,char*argv[]) { QApplicationa(argc, argv); Dialog w; w.show(); return a.exec(); }
运行截图
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。
本文向大家介绍javascript实现对话框功能警告(alert 消息对话框)确认(confirm 消息对话框),包括了javascript实现对话框功能警告(alert 消息对话框)确认(confirm 消息对话框)的使用技巧和注意事项,需要的朋友参考一下 我们在访问网站的时候,有时会突然弹出一个小窗口,上面写着一段提示信息文字。如果你不点击“确定”,就不能对网页做任何操作,这个小窗口就是使用a
问题内容: 我希望对话框中的消息文本居中对齐。 问题答案: 创建您自己的TextView对象,然后将其作为View提供给弹出窗口生成器: 您可以控制所有其他文本参数(样式,颜色,大小…)。要控制边距,您可以以编程方式创建LinearLayout,设置LayoutParams,然后将TextView放入其中。
本文向大家介绍Android中创建对话框(确定取消对话框、单选对话框、多选对话框)实例代码,包括了Android中创建对话框(确定取消对话框、单选对话框、多选对话框)实例代码的使用技巧和注意事项,需要的朋友参考一下 Android中可以创建三种对话框、确定取消对话框、单选对话框、多选对话框 android中的确定取消对话框演示示例 Android中使用单选对话框的演示案例 android中使用多选
本文向大家介绍基于.Net实现前端对话框和消息框,包括了基于.Net实现前端对话框和消息框的使用技巧和注意事项,需要的朋友参考一下 关于前端对话框、消息框的优秀插件多不胜数。造轮子是为了更好的使用轮子,并不是说自己造的轮子肯定好。所以,这个博客系统基本上都是自己实现的,包括日志记录、响应式布局等等一些本可以使用插件的。好了,废话不多时。我们来实现自己的对话框和消息框。 对话框 要求:可拖动、点击按
本文向大家介绍8种android 对话框(Dialog)使用方法详解,包括了8种android 对话框(Dialog)使用方法详解的使用技巧和注意事项,需要的朋友参考一下 本文汇总了android 8种对话框(Dialog)使用方法,分享给大家供大家参考,具体内容如下 1.写在前面 Android提供了丰富的Dialog函数,本文介绍最常用的8种对话框的使用方法,包括普通(包含提示消息和按钮)、列
我是游戏开发新手,正在尝试为android创建一个Contra或旧的tmnt游戏(但很简单)。对于这场比赛,我决定将我的主屏幕分为三部分:上部用于统计,中部用于比赛,下部用于控制。我的主要。xml是 所以我为Mid Surface创建了GameView和GameloopThread类(这是非常标准的)。我的问题是如何在上下框架布局中绘制?我应该为每个布局的视图和线程创建新类,我应该在 GameVi