• Create a Qt Widget Based Application—Windows


    This turtorial describes how to use Qt Creator to create a small Qt application, Text Finder. It is a simplified version of the Qt UI Tools Text Finder Example. The application user interface is constructed from Qt widgets by using Qt Designer. The application logic is written in C++ by using the code editor.

    QQ图片20150714091612

    Creating the Text Finder Project

    1. Select File > New File or Project > Application > Qt Widgets Application > Choose.

    2

    The Introduction and Project Location dialog opens.

    3

    2. In the Name field, type TextFinder.

    3. In the Create in field, enter the path for the project files. For example, C:UsersJohnDocuments, and then click Next .

    The Kit Selection dialog opens.

    4

    4. Select build and run kits for your project, and click Next .

    Note: If only one kit is specified in Tools > Options > Build & Run > Kits.

    The Class Information dialog opens.

    5

    5. In the Class name field, type TextFinder as the class name.

    6. In the Base class list, select QWidget as the base class type.

        Note: The Header file, Source file and Form file fields are automatically updated to match the name of the class.

    7. Click Next.

        The Project Management dialog opens.

    6

    8. Review the project settings, and click Finish to create the project.

        Note: The project opens in the Edit mode, and these instructions are hidden. To return to these instructions, open the Help mode.

    The TextFinder project now contains the following files:

       > textfinder.h

       > textfinder.cpp

       > main.cpp

       > textfinder.ui

       > textfinder.pro

    7

    The .h and .cpp files come with the necessary boilerplate code. The .pro file is complete.

    Filling in the Missing Pieces

    Begin by designing the user interface and then move on to filling in the missing code. Finally, add the finde functionality.

    Designing the User Interface

    "Text Finder UI"

    1. In the Edit mode, double-click the textfinder.ui file in the Projects view to launch the integrated Qt Designer.

    2. Drag and drop the following widgets to the form.

            > Label (QLabel)

            > Line Edit (QLineEdit)

            > Push Button (QPushButton)

    "Adding widgets to Text Finder UI"

    Note: To easily locate the widgets, use the search box at the top of the Sidebar. For example, to finde the Label widget, start typing the word label.

    "Filter field"

    3. Double-click the Label widget and enter the text Keyword.

    4. Double-click the Push Button widget and enter the text Find.

    5. In the Properties pane, change the objectName to findButton.

    "Changing object names"

    6. Press Ctrl+A (or Cmd+A) to select the widgets and click Lay out Horizontally (or press Ctrl+H on Windows) to apply a horizontal layout (QHBoxLayout).

    "Applying horizontal layout"

    7. Drag and drop a Text Edit widget (QTextEdit) to the form.

    8. Select the screen area and click Lay out Vertically (or press Ctrl-L) to apply a vertical layout (QVBoxLayout).

    "Text Finder UI"

    Applying the horizontal and vertical layouts ensures that the application UI scales to different screen sizes.

    9. To call a find function when users press the Finde button, you use the Qt signals and slots mechanism. A signal is emitted when a particular event occurs and a slot is a function that is called in response to a particular signal. Qt widgets have predefined signals and slots that you can use directly from Qt Designer. To add a slot for the find function:

       > Right-click the Find button to open a context-menu.

       > Select Go to Slot > clicked(), and then select OK.

          A private slot, on_findButton_clicked(), is added to the header files, textfinder.h and a private function, TextFinder:: on_finderButton_clicked(), is added to the source file, textfinder.cpp.

    10. Press Ctrl+S to save your changes.

    Completing the Header File

    The textfinder.h file already has the necessary #includes, a constructor, a destructor, and the Ui object. You need to add a private function, loadTextFile(), to read and display the contents of the input text file in the QTextEdit.

    1. In the Projects pane in the Edit view, double-click the textfinder.h file to open it for editing.

    2. Add a private function to the private section, after the Ui::Textfinder pointer, as illustrated by the following code snippet:

    private
    slots: void on_findButton_clicked(); private: Ui::TextFinder *ui; void loadTextFile();

    Completing the Source File

    Now that the header file is complete, move on to the source file, textfinder.cpp.

    1. In the Project pane in the Edit view, double-click the textfinder.cpp file to open it for editing.

    2. Add code to load a text file using QFile, read it with QTextStream, and then display it on textEdit with QTextEdit:: setPlainText().

    This is illustrated by the following code snippet:

    void TextFinder::loadTextFile()
    {
        QFile inputFile(":/input.txt");
        inputFile.open(QIODevice::ReadOnly);
    
        QTextStream in(&inputFile);
        QString line = in.readAll();
        inputFile.close();
    
        ui->textEdit->setPlainText(line);
        QTextCursor cursor = ui->textEdit->textCursor();
        cursor.movePosition(QTextCursor::Start, QTextCursor::MoveAnchor, 1);
    }

    3. To use QFile and QTextStream, add the following #includes to textfinder.cpp:

    #include <QFile>
    #include <QTextStream>

    4. For the on_findButton_clicked() slot, add code to extract the searching string and use the QTextEdit::find() function to look for the search string within the text file. This is illustrated by the following code snippet:

    void TextFinder::on_findButton_clicked()
    {
        QString searchString = ui->lineEdit->text();
        ui->textEdit->find(searchString, QTextDocument::FindWholeWords);
    }

    5. Once both of these functions are complete, add a line to call loadTextFile() in the constructor, as illustrated by the following code snippet:

    TextFinder::TextFinder(QWidget *parent)
        : QWidget(parent), ui(new Ui::TextFinder)
    {
        ui->setupUi(this);
        loadTextFile();
    }

    The on_findButton_clicked() slot is called automatically in the uic generated ui_textfinder.h file by this line of code:

    QMetaObject::connectSlotsByName(TextFinder);

    Creating a Resource File

    You need a resource file (.qrc) wihin which you embed the input text file. The input file can be any .txt file wih a paragraph of text. Create a text file called input.txt and store it in the textfinder folder.

    To add a resource file:

    1. Select File > New File or Project > Qt > Qt Resource File > Choose.

    8

    The Choose the Location dialog opens.

    9

    2. In the Name field, enter textfinder.

    3. In the Path field, enter C:UserJohnDocumentsTextFinder, and click Next.

        The Project Management dialog opens.

    10

    4. In the Add to project field, select TextFinder.pro and click Finish or Done to open the file in the code editor.

    5. Select Add > Add Prefix.

    6. In the Prefix field, replace the default prefix with a slash(/).

    7. Select Add > Add Files, to locate and add input.txt.

    11

    Compiling and Running Your Program

    Now that you have all the necessary files, click the button to compile and run your program.

    Ref:http://doc.qt.io/qtcreator/creator-writing-program.html

    转载本Blog文章请注明出处,否则,本作者保留追究其法律责任的权利。 本人转载别人或者copy别人的博客内容的部分,会尽量附上原文出处,仅供学习交流之用,如有侵权,联系立删。
  • 相关阅读:
    【318】C# 学习笔记
    【317】python 指定浏览器打开网页 / 文件
    【316】python.requests 读取网页信息
    【315】Windows 之间代码自动传文件
    多线程经典问题-----乘客做公交车问题解答3
    VS2013/2012 下无法打开 源 文件“stdafx.h”的解决方法
    [课堂实践与项目]手机QQ客户端--4期(SQLite的加入,注册,找回,登录界面的修改):建立关于QQ注册类,使用SQLite进行存储,
    《Effective C++》学习笔记条款13 以对象管理资源
    抛弃编程语言的偏见——对话百度架构师
    IOS开发之UINavigationBar
  • 原文地址:https://www.cnblogs.com/drfxiaoliuzi/p/4644878.html
Copyright © 2020-2023  润新知