Qt学习1

Action 的用法

首先在头文件的 private 中加:


1

2

3

QMenu *fileMenu;

QMenu *editMenu;

QMenu *helpMenu;


1

2

3

4

5

6

7

8

9

10

11

12

13

14

void MainWindow::createActions()

//! [17] //! [18]

{

    newAct = new QAction(QIcon(":/images/new.png"), tr("&New"), this);

    newAct->setShortcuts(QKeySequence::New);

    newAct->setStatusTip(tr("Create a new file"));

    connect(newAct, SIGNAL(triggered()), this, SLOT(newFile()));

//! [19]

    openAct = new QAction(QIcon(":/images/open.png"), tr("&Open..."), this);

    openAct->setShortcuts(QKeySequence::Open);

    openAct->setStatusTip(tr("Open an existing file"));

    connect(openAct, SIGNAL(triggered()), this, SLOT(open()));

}

menubar


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

fileMenu = menuBar()->addMenu(tr("&File"));

    fileMenu->addAction(newAct);

//! [28]

    fileMenu->addAction(openAct);

//! [28]

    fileMenu->addAction(saveAct);

//! [26]

    fileMenu->addAction(saveAsAct);

    fileMenu->addSeparator();

    fileMenu->addAction(exitAct);

    editMenu = menuBar()->addMenu(tr("&Edit"));

    editMenu->addAction(cutAct);

    editMenu->addAction(copyAct);

    editMenu->addAction(pasteAct);

toolbar


1

2

3

4

5

6

7

8

9

10

11

fileToolBar = addToolBar(tr("File"));

    fileToolBar->addAction(newAct);

//! [29] //! [31]

    fileToolBar->addAction(openAct);

//! [31]

    fileToolBar->addAction(saveAct);

    editToolBar = addToolBar(tr("Edit"));

    editToolBar->addAction(cutAct);

    editToolBar->addAction(copyAct);

    editToolBar->addAction(pasteAct);

Qsetting


1

2

3

QSettings settings("QtProject", "Application Example");

settings.setValue("pos", pos());

settings.setValue("size", size());


1

2

3

QSettings settings("QtProject", "Application Example");

QPoint pos = settings.value("pos", QPoint(200, 200)).toPoint();

QSize size = settings.value("size", QSize(400, 400)).toSize();

打开文本文件


1

2

3

4

5

6

7

8

9

void MainWindow::open()

//! [7] //! [8]

{

    if (maybeSave()) {

        QString fileName = QFileDialog::getOpenFileName(this);

        if (!fileName.isEmpty())

            loadFile(fileName);

    }

}


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

void MainWindow::loadFile(const QString &fileName)

//! [42] //! [43]

{

    QFile file(fileName);

    if (!file.open(QFile::ReadOnly | QFile::Text)) {

        QMessageBox::warning(this, tr("Application"),

                             tr("Cannot read file %1:\n%2.")

                             .arg(fileName)

                             .arg(file.errorString()));

        return;

    }

    QTextStream in(&file);

#ifndef QT_NO_CURSOR

    QApplication::setOverrideCursor(Qt::WaitCursor);

#endif

    textEdit->setPlainText(in.readAll());

#ifndef QT_NO_CURSOR

    QApplication::restoreOverrideCursor();

#endif

    setCurrentFile(fileName);

    statusBar()->showMessage(tr("File loaded"), 2000);

}

文本文件保存


1

2

3

4

5

6

7

8

9

bool MainWindow::saveAs()

//! [11] //! [12]

{

    QString fileName = QFileDialog::getSaveFileName(this);

    if (fileName.isEmpty())

        return false;

    return saveFile(fileName);

}


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

bool MainWindow::saveFile(const QString &fileName)

//! [44] //! [45]

{

    QFile file(fileName);

    if (!file.open(QFile::WriteOnly | QFile::Text)) {

        QMessageBox::warning(this, tr("Application"),

                             tr("Cannot write file %1:\n%2.")

                             .arg(fileName)

                             .arg(file.errorString()));

        return false;

    }

    QTextStream out(&file);

#ifndef QT_NO_CURSOR

    QApplication::setOverrideCursor(Qt::WaitCursor);

#endif

    out << textEdit->toPlainText();

#ifndef QT_NO_CURSOR

    QApplication::restoreOverrideCursor();

#endif

    setCurrentFile(fileName);

    statusBar()->showMessage(tr("File saved"), 2000);

    return true;

}

来自为知笔记(Wiz)

时间: 2024-12-19 14:43:25

Qt学习1的相关文章

Qt学习之路

  Qt学习之路_14(简易音乐播放器) Qt学习之路_13(简易俄罗斯方块) Qt学习之路_12(简易数据管理系统) Qt学习之路_11(简易多文档编辑器) Qt学习之路_10(Qt中statusBar,MessageBox和Timer的简单处理) Qt学习之路_9(Qt中Item Widget初步探索) Qt学习之路_8(Qt中与文件目录相关操作) Qt学习之路_7(线性布局和网格布局初步探索) Qt学习之路_6(Qt局域网聊天软件) Qt学习之路_5(Qt TCP的初步使用) Qt学习之路

QT学习之路(1):彩票绝对不中模拟器

//============================================//绝对不中,彩票开奖模拟器#include "mainwindow.h"#include "ui_mainwindow.h"#include <QHash>#include <QDebug>MainWindow::MainWindow(QWidget *parent) :    QMainWindow(parent),    ui(new Ui::M

qt学习(三):鼠标图标改变

qt学习 (三):鼠标图标改变 当你进入一个美好的qt软件场景,比如游戏,电脑的黑白图标会让程序逊色不少, 1改图标要加光标的头文件, 2 载入光标图, 3 再设置改光标就可以了 1在头文件中加 #include <QtGui>  //光标类的父类 //再在public成员中声明换的函数void keyPressEvent(QKeyEvent *k); //声明按键换图的函数         .h文件    --注意头文件和声明 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Qt学习总结-ui篇(二)

qccs定义圆角 border-radius:10px; 如果想给特定位置定义圆角,如: 左上角:border-left-top-radius:10px; 右下角色:border-right-bottom-rasius:10px; 半透明效果 只需要在css中使用rgba(100,100,100,40)这种形式来表示颜色即可. 为可执行文件添加图标 1.新建文件:finename.rc 文件名无所谓,只要后缀为rc就可以. 2.编辑新建的文件,输入以下内容: IDI_ICON1 ICON DIS

【qt学习005】搞不明白的布局

记录一下自己在布局这一章遇见的各种狗屎问题. 问题主要出现在布局最后一节:综合布局实例,类似于一个qq管理器的界面(见下图1).看见这个时,打算动手实现一下,于是开始写代码,写着写着发现不知道怎么写了,遇见一些无法解决的问题(问题中描述的布局类之间的关系见下图2): 1. 最底层应该使用哪一类? 2. 怎么将QListWidget加入到最底层? 3. 怎么往QStackWidget加入三个页面,每个页面代表不同的信息? 4. 怎么将QHBoxLayout中的CLOSE按钮连接到退出函数,要完整地

【Qt学习笔记】13.拖放技术:Drag & Drop

1.接受拖放 Drag & Drop 是一个界面操作,用于在两个窗口间传递数据. Drag Source: 拖放源窗口 Drag Target: 拖放目标窗口 拖放操作: 1.在源窗口:选中目标,按下鼠标,移动,拖至目标窗口(Drag) 2.在目标窗口:取消鼠标,到指定位置,松开鼠标(Drop) (按下ESC取消操作) MIME: MIME(Multipurpose Internet Mail Extensions)被传递的数据以MIME格式传送,它是多组type-data数据:(type0,

QT学习第1天

QT学习第一天  坚持住!! 一 Qt概述 1.Qt发展历史 (1)1991年诞生(Haavard Nord/Eirik Chambe-Eng), (2)1994年创立Troll Tech(奇趣科技) (3)2005年QT4.0 (4)2008年被Nokia收购 (5)2009年源代码开源 (6)2012年Nokia将全部QT业务和知识产权卖给Digia公司 (7)2013年QT5.0 QT5.1 QT5.2 (8)2014年Digia公司成立 The Qt Company子公司 2.Qt5.4

QT学习之路--创建一个对话框

Q_OBJECT:这是一个宏,凡是定义信号槽的类都必须声明这个宏. 函数tr()全名是QObject::tr(),被他处理过的字符串可以使用工具提取出来翻译成其他语言,也就是做国际化使用. 对于QT学习之路:Qt学习之路(7):创建一个对话框(上)这个程序.编译出现 invalid use of incomplete type ‘class QPushButton’ findButton->setEnabled(!text.isEmpty()); ^ In file included from

qt学习(四)主窗选钮,显示新窗口。

游戏有选区这个习惯, 当然,我特指<冒险岛>了,有的时候就是打开一个主屏幕上五个按钮让你点击进入, 甚至有的时候进去了还要选哪个频道,游戏服务器都得分区,频道来完成功能.现在我们先进入想选的区,不需要的可以看以后的登陆窗口了. 这一次的主要功能是完成选区,选完进入输入账号界面. 这次用的是一个点完出啦一个所以需要两个窗口,在原有的基础上新建qt设计师界面类.选择dialogwithoutbutton. 把最后一个要显示的当作主界面, 其他的都可以选择dialog模板, 完成以后,画ui界面,

qt学习(一)qt三个文件函数的框架

学到点什么, 而不是复制着什么, 每天敲着别人给的代码,苦涩得改完bug, 就这样一天天的过去, 实质上并没有学到什么, 别人的思想只是拿来借鉴, 你的思想是好是坏都是你的, 不用急着抛弃自己. 从qt看看人家的思路. Qt编程思路: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~` 以下:xxx.h ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~