- 1、本文档共5页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
QT问答
1、如果在窗体关闭前自行判断是否可关闭答:重新实现这个窗体的closeEvent()函数,加入判断操作void MainWindow::closeEvent(QCloseEvent *event){? ? if (maybeSave())? ? {? ? ? ? writeSettings();? ? ? ? event-accept();? ? }? ? else { event-ignore(); }}2、如何用打开和保存文件对话答:使用QFileDialogQuote:? ? ? ? QString fileName = QFileDialog::getOpenFileName(this);? ? ? ? if (!fileName.isEmpty())? ? ? ? {? ? ? ? ? ? ? loadFile(fileName);? ? ? ? }Quote:? ? QString fileName = QFileDialog::getSaveFileName(this);? ? if (fileName.isEmpty())? ? {? ? ? ? return false;? ? }3、如果创建Actions(可在菜单和工具栏里使用这些Action)答: newAct = new QAction(QIcon(:/images/new.png), tr(New), this);? ? newAct-setShortcut(tr(Ctrl+N));? ? newAct-setStatusTip(tr(Create a new file));? ? connect(newAct, SIGNAL(triggered()), this, SLOT(newFile()));? ? openAct = new QAction(QIcon(:/images/open.png), tr(Open...), this);? ? openAct-setShortcut(tr(Ctrl+O));? ? openAct-setStatusTip(tr(Open an existing file));? ? connect(openAct, SIGNAL(triggered()), this, SLOT(open()));? ? saveAct = new QAction(QIcon(:/images/save.png), tr(Save), this);? ? saveAct-setShortcut(tr(Ctrl+S));? ? saveAct-setStatusTip(tr(Save the document to disk));? ? connect(saveAct, SIGNAL(triggered()), this, SLOT(save()));? ? saveAsAct = new QAction(tr(Save As...), this);? ? saveAsAct-setStatusTip(tr(Save the document under a new name));? ? connect(saveAsAct, SIGNAL(triggered()), this, SLOT(saveAs()));? ? exitAct = new QAction(tr(Exit), this);? ? exitAct-setShortcut(tr(Ctrl+Q));? ? exitAct-setStatusTip(tr(Exit the application));? ? connect(exitAct, SIGNAL(triggered()), this, SLOT(close()));? ? cutAct = new QAction(QIcon(:/images/cut.png), tr(Cut), this);? ? cutAct-setShortcut(tr(Ctrl+X));? ? cutAct-setStatusTip(tr(Cut the current selections contents to the ? ? ? ? ? ? ? ? ? ? clipboard));? ? connect(cutAct, SIGNAL(triggered()), textEdit, SLOT(cut()));? ? copyAct = new QAction(QIcon(:/images/copy.png), tr(Copy), this);? ? copyAct-setShortcut(tr(Ctrl+C))
您可能关注的文档
- 小学数学第十一册第五单元.doc
- 尼科国润监理合同.doc
- 常用SQL查询命令的语法.doc
- 干气密封讲解.doc
- 广集教学资源.doc
- 平面向量2.4.1.doc.doc
- 广东省惠州市2011届高三第一次调研考试理综物理试题.doc
- 微机原理及接口技术_点阵显示器显示系统设计.doc
- 微机汇编.ppt
- 微笑服务换真情.doc
- 山东省聊城市高唐县2024-2025学年九年级上学期第一次月考语文试题(解析版).docx
- 辽宁省沈阳市郊联体2024-2025学年高三上学期11月期中地理试题.docx
- 宁夏回族自治区石嘴山市第一中学2024-2025学年高二上学期11月期中英语试题.docx
- 甘肃省多校2024-2025学年高一上学期期中联考历史试题(解析版).docx
- 海南省海口市琼山区海南中学2024-2025学年高二上学期11月期中考试地理试题(解析版).docx
- 四川省雅安中学2024-2025学年高二上学期11月期中生物试卷.docx
- 浙江省金华市十校2024-2025学年高三上学期11月模拟考试历史试题(解析版).docx
- 浙江省衢州五校联盟2024-2025学年高二上学期期中联考历史试卷.docx
- 福建省漳州市第一中学2024-2025学年高三上学期期中化学试卷.docx
- 江西省上饶市蓝天教育集团2024-2025学年高一上学期期中考试物理试题(解析版).docx
文档评论(0)