《开始使用PyQT》 第01章 PyQT入门 04 创建第一个桌面应用

04 创建第一个桌面应用

《开始使用PyQT》 第01章 PyQT入门 04 创建第一个桌面应用

A GUI application generally consists of a main window and possibly one or more dialog boxes. The main window is where the user will spend most of their time when using your application and can consist of a menu bar, a status bar, and other widgets. Dialog boxes typically are made up of text, maybe one or more widgets for collecting information, and buttons. They appear to the user when necessary to communicate information and prompt them for input. An alert window that pops up asking you if you want to save changes to your document is an example of a dialog. Dialog boxes will be covered further in Chapter 3.

图形用户界面应用程序一般由一个主窗口和一个或多个对话框组成。主窗口是用户使用应用程序时花费最多时间的地方,可以由菜单栏、状态栏和其他部件组成。对话框通常由文本、一个或多个用于收集信息的部件以及按钮组成。必要时,对话框会出现在用户面前,以传递信息并提示用户输入。对话框的一个例子就是弹出一个提示窗口,询问你是否要保存对文档的修改。对话框将在第 3 章中进一步介绍。

For your first project, seen in Figure 1-1, we’ll consider

  • How to create an empty window in PyQt6
  • The basic classes and modules needed to set up your GUI
  • How to modify the main window’s size and title

对于图 1-1 所示的第一个项目,我们将考虑

  • 如何在 PyQt6 中创建一个空窗口
  • 设置 GUI 所需的基本类和模块
  • 如何修改主窗口的大小和标题

This application will serve as the foundation for all other programs found in this book.

此应用程序将作为本书中所有其他程序的基础。

创建空窗口的说明

The code found in Listing 1-1 is all you need to create a window in PyQt6. Examples throughout this book will take advantage of object-oriented programming (OOP), a programming paradigm that focuses on using classes to create instances of those classes, or objects, with their own properties and behaviors and modeling the relationships between other objects.

清单 1-1 中的代码就是在 PyQt6 中创建一个窗口所需的全部内容。本书中的示例将利用面向对象编程 (OOP) 的优势,OOP 是一种编程范式,其重点是使用类来创建这些类的实例或对象,这些实例或对象具有自己的属性和行为,并对其他对象之间的关系进行建模。

import sys
from PyQt6.QtWidgets import QApplication, QWidgetclass EmptyWindow(QWidget):def __init__(self):super().__init__()self.initializeUI()def initializeUI(self):# 设置坐标self.setGeometry(200, 100, 400, 300)# 设置窗口标题self.setWindowTitle("RestClient")# 显示窗口self.show()if __name__ == '__main__':# 创建应用app = QApplication(sys.argv)#  创建空窗口window = EmptyWindow()#  启动sys.exit(app.exec())

Your initial window should look similar to the one in Figure 1-1 depending upon your operating system.

根据操作系统的不同,初始窗口应与图 1-1 中的窗口相似。

Walking through the code, we first start by importing the sys and PyQt6 modules that we need to create a window. The sys module can be used in PyQt to pass command line arguments to our applications and to close them.

浏览代码时,我们首先导入创建窗口所需的 sys 和 PyQt6 模块。在 PyQt 中,sys 模块可用于向我们的应用程序传递命令行参数并关闭它们。

The QtWidgets module provides the widget classes that you will need to create desktop-style GUIs. From the QtWidgets module, we import two classes: QApplication and QWidget. You only need to create a single instance of the QApplication class, no matter how many windows or dialog boxes exist in an application. QApplication is responsible for managing the application’s main event loop and widget initialization and finalization. The main event loop is where user interactions in the GUI window, such as clicking on a button, are managed. Take a quick look at

QtWidgets 模块提供了创建桌面风格图形用户界面所需的部件类。我们从 QtWidgets 模块导入两个类: QApplication 和 QWidget。无论应用程序中有多少窗口或对话框,您只需创建一个 QApplication 类实例。QApplication 负责管理应用程序的主事件循环以及部件的初始化和最终确定。主事件循环是管理 GUI 窗口中用户交互(如点击按钮)的地方。快速查看

app = QApplication(sys.argv)

QApplication takes as an argument sys.argv. You can also pass in an empty list if you know that your program will not be taking any command line arguments using

QApplication 将 sys.argv 作为参数。如果您知道您的程序不会使用任何命令行参数,也可以使用

app = QApplication([])

Tip always create your GUi’s QApplication object before any other object belonging to the GUi, including the main window. this concept is demonstrated in Listing 1-2.

提示 始终先创建 GUi 的 QApplication 对象,然后再创建属于 GUi 的任何其他对象,包括主窗口。清单 1-2 演示了这一概念。

Next, we create a window object that inherits from the class we created, EmptyWindow. Our class actually inherits from QWidget, which is the base class for which all other user interface objects, such as widgets and windows, are derived.

接下来,我们创建一个窗口对象,它继承自我们创建的类 EmptyWindow。我们的类实际上继承自 QWidget,它是所有其他用户界面对象(如 widget 和窗口)的基类。

Tip when creating windows in pyQt, you will generally create a main class that inherits from either QMainWindow, QWidget, or QDialog. you’ll find out more about each of these classes and when to use them to create windows and dialog boxes in later chapters.

小提示 在 pyQt 中创建窗口时,通常会创建一个继承自 QMainWindow、QWidget 或 QDialog 的主类,您将在后面的章节中了解到更多有关这些类的信息,以及何时使用它们创建窗口和对话框。

We need to call the show() method on the window object to display it to the screen. This is located inside the initializeUI() function in our EmptyWindow class. You can see app.exec() being passed as an argument to sys.exit() in the final line of Listing 1-1. The method exec() starts the application’s event loop and will remain here until you quit the application. The function sys.exit() ensures a clean exit.

我们需要调用窗口对象的 show() 方法将其显示到屏幕上。该方法位于 EmptyWindow 类的 initializeUI() 函数中。在清单 1-1 的最后一行,我们可以看到 app.exec() 作为参数传递给 sys.exit()。方法 exec() 启动了应用程序的事件循环,并将一直保持到退出应用程序为止。函数 sys.exit() 可确保干净利落地退出。

The steps for creating a window are better illustrated in Listing 1-2 using procedural programming, a programming paradigm where the computer follows a set of sequential commands to perform a task.

程序编程是一种编程范式,计算机按照一系列顺序命令执行任务,清单 1-2 使用程序编程更好地说明了创建窗口的步骤。

Listing 1-2. Minimum code needed for creating an empty window in PyQt without OOP

清单 1-2. 不使用 OOP 在 PyQt 中创建空窗口所需的最少代码

import sys
from PyQt6.QtWidgets import QApplication, QWidget# 创建应用
app = QApplication(sys.argv)# 创建组件
window = QWidget()# 显示组件
window.show()# 退出服务
sys.exit(app.exec())

The next section demonstrates how to use built-in PyQt methods to change the main window’s size and set the window’s title.

下一节将演示如何使用 PyQt 内置方法改变主窗口大小和设置窗口标题。

修改窗口

The EmptyWindow class in Listing 1-1 contains a method, initializeUI(), that creates the window based upon the parameters we specify. The initializeUI() function is reproduced in the following code snippet:

清单 1-1 中的 EmptyWindow 类包含一个方法 initializeUI(),可根据我们指定的参数创建窗口。initializeUI() 函数在以下代码片段中重现:

    def initializeUI(self):# 设置坐标self.setGeometry(200, 100, 400, 300)# 设置窗口标题self.setWindowTitle("RestClient")# 显示窗口self.show()

The method setGeometry() defines the location of the window on your computer screen and its dimensions, width and height. So the window we just created is located at x=200, y=100 in the window and has width=400 and height=300. The setWindowTitle() method is used to set the title of the window. Take a moment to modify the geometry values or title text and see how your changes affect the window. You could also comment out the two methods and see how PyQt uses default parameter settings for both the size and window title.

方法 setGeometry() 定义了窗口在电脑屏幕上的位置及其尺寸(宽和高)。因此,我们刚刚创建的窗口在窗口中的位置是 x=200,y=100,宽度=400,高度=300。setWindowTitle() 方法用于设置窗口的标题。请花点时间修改几何值或标题文本,看看您的修改对窗口有何影响。您也可以注释掉这两个方法,看看 PyQt 是如何使用默认参数设置大小和窗口标题的。

We will look at further customization of the window’s layout in Chapter 4 and appearance in Chapter 6.

我们将在第 4 章和第 6 章进一步介绍窗口布局和外观的自定义。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/650240.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Docker】nacos集群搭建Nginx负载均衡

目录 一、mysql安装与基操 1.1 数据准备 1.2 创建mysql与数据表 二、Nacos集群部署 2.1 创建nacos及配置 2.2 创建Nginx容器 一、mysql安装与基操 1.1 数据准备 拉取mysql docker pull mysql:5.7(版本) 定义挂载目录 mkdir -p /mysql/{conf,data,script} 配置my.c…

第十四届蓝桥杯C组题目 三国游戏

4965. 三国游戏 - AcWing题库 小蓝正在玩一款游戏。 游戏中魏蜀吴三个国家各自拥有一定数量的士兵 X,Y,Z(一开始可以认为都为 00)。 游戏有 n 个可能会发生的事件,每个事件之间相互独立且最多只会发生一次,当第 i个事件发生时会分…

JavaWeb:商品管理系统(Vue版)

文章目录 1、功能介绍2、技术栈3、环境准备3.1、数据库准备3.2、在新建web项目中导入依赖3.3、编写Mybatis文件3.4、编写pojo类3.5、编写Mybatis工具类3.6、导入前端素材(element-ui & vue.js & axios.js)3.7、前端页面 4、功能实现4.1、查询所有…

2024 前端趋势预测:React 不会被取代,AI 崛起,追求全栈宇宙

对于前端来说,2023 是非同寻常的一年。我们见证了争相抢占甚至是发明服务器端渲染(SSR)市场的热潮、AI 的不断进步、Web 渲染器和 JS 引擎的寒武纪大爆发、一大批有力的竞争者试图摧毁巨头的统治地位…… 在开始预测未来一年发展趋势之前&am…

(4)Elastix图像配准:3D图像

文章目录 前言1、项目实战2、参数文件2.1、parameter_file_rigid_3D.txt2.2、parameter_file_affine_3D.txt2.3、parameter_file_bspline_3D.txt前言 (1)Elastix图像配准:原理 + 源码(详解) (2)Elastix图像配准:参数文件(配准精度的关键) 1、项目实战 将以下文件保…

深度学习:Softmax回归

在前面,我们介绍了线性回归模型的原理及实现。线性回归适合于预测连续值,而对于分类问题的离散值则束手无策。因此引出了本文所要介绍的softmax回归模型,该模型是针对多分类问题所提出的。下面我们将从softmax回归模型的原理开始介绍&#xf…

vscode远程服务器中文显示为数字乱码,终端无法输入中文

最开始以为是vscode设置问题,后来发现是服务器没有安装中文包 解决方案: ① 先安装locales,这个包在Debian/Ubuntu及其衍生发行版中用作区域设置,用于设置用户语言、所在地区以及对应的一些区域变量 sudo apt install locales ②…

浪花 - 响应拦截器(强制登录)

1. 配置响应拦截器 import axios from axios;const myAxios axios.create({baseURL: http://localhost:8080/api/, });myAxios.defaults.withCredentials true;// 请求拦截器 myAxios.interceptors.request.use(function (config) {// Do something before request is sentc…

把批量M3U8网络视频地址转为MP4视频

在数字媒体时代,视频格式的转换已成为一项常见的需求。尤其对于那些经常处理网络视频的用户来说,将M3U8格式的视频转换为更常见的MP4格式是一项必备技能。幸运的是,现在有了固乔剪辑助手这款强大的工具,这一过程变得异常简单。下面…

Android SharedPreferences源码分析

文章目录 Android SharedPreferences源码分析概述基本使用源码分析获取SP对象初始化和读取数据写入数据MemoryCommitResultcommitToMemory()commit()apply()enqueueDiskWrite()writeToFile() 主动等待写回任务结束 总结 Android SharedPreferences源码分析 概述 SharedPrefer…

2024初学编曲免费软件FL Studio21.2.2

FL Studio在业内也被称作“水果”软件,这是一款功能强大、简单易上手的专业编曲软件。软件中的音效插件库拥有超过25种音效插件,能够帮助激发我们的创作灵感。而FL Studio中文还推出了训练营课程,初学者可以在训练营中进行编曲知识的学习&…

Android消息推送 SSE(Server-Sent Events)方案实践

转载请注明出处:https://blog.csdn.net/kong_gu_you_lan/article/details/135777170 本文出自 容华谢后的博客 0.写在前面 最近公司项目用到了消息推送功能,在技术选型的时候想要找一个轻量级的方案,偶然看到一篇文章讲ChatGPT的对话机制是基…

探索半导体制造业中的健永科技RFID读写器的应用方案

一、引言 在当今高度自动化的工业环境中,无线射频识别(RFID)技术已经成为实现高效生产的重要一环。特别是在半导体制造业中,由于产品的高价值和复杂性,生产过程的追踪和管理显得尤为重要。健永科技RFID读写器以其出色…

Java程序设计实验7 | IO流

*本文是博主对Java各种实验的再整理与详解,除了代码部分和解析部分,一些题目还增加了拓展部分(⭐)。拓展部分不是实验报告中原有的内容,而是博主本人自己的补充,以方便大家额外学习、参考。 目录 一、实验…

nginx处理跨域问题

内网服务器A,服务映射到外网端口是8080,app接口请求外网8080端口的接口,出现跨域 下面有两种实现配置 server { listen 6600; server_name localhost; root /opt/runner/target/yongxing-one-map-mobile/; access…

【办公技巧】Excel只读模式怎么改成编辑模式?

Excel文件打开之后,大家可能经常会遇到文件处于只读模式的情况,那么我们应该如何将excel只读模式改成编辑模式呢?今天和大家分享几种情况的解决方法。 首先,大部分的只读模式,打开之后都是没有密码的,只是…

LabVIEW振动信号分析

LabVIEW振动信号分析 介绍如何使用LabVIEW软件实现希尔伯特-黄变换(Hilbert-Huang Transform, HHT),并将其应用于振动信号分析。HHT是一种用于分析非线性、非平稳信号的强大工具,特别适用于旋转机械等复杂系统的振动分析。开发了…

算法训练营第六十天打卡|84.柱状图中最大的矩形

目录 Leetcode84.柱状图中最大的矩形 Leetcode84.柱状图中最大的矩形 文章链接&#xff1a;代码随想录 文章链接&#xff1a;84.柱状图中最大的矩形 思路&#xff1a;暴力双指针&#xff0c;超时 class Solution { public:int largestRectangleArea(vector<int>& he…

一款强大的矢量图形设计软件:Adobe Illustrator 2023 (AI2023)软件介绍

Adobe Illustrator 2023 (AI2023) 是一款强大的矢量图形设计软件&#xff0c;为设计师提供了无限创意和畅行无阻的设计体验。AI2023具备丰富的功能和工具&#xff0c;让用户可以轻松创建精美的矢量图形、插图、徽标和其他设计作品。 AI2023在界面和用户体验方面进行了全面升级…

2024.1.26 寒假训练记录(9)

今天复习了下差分约束&#xff0c;发现用的是SPFA&#xff0c;这个复杂度…害&#xff0c;明天有空整个板子吧&#xff0c;估计也不太用得上了 花了好长时间搞训练赛的题&#xff0c;明天比赛时间刚好把题解写了&#xff0c;明天再学学网络流好了 文章目录 CF 1798A Showstopp…