Home Backend Development Python Tutorial PyQt5 tooltip function that you must learn every day

PyQt5 tooltip function that you must learn every day

Apr 19, 2018 am 10:31 AM
pyqt5 tool hint

This article mainly introduces in detail the tool tip function of PyQt5 that you must learn every day. It has a certain reference value. Interested friends can refer to it.

This article will teach us how to use PyQt5 controls. Tooltip function.


#!/usr/bin/python3
# -*- coding: utf-8 -*-

"""
PyQt5 教程

这个例子显示了窗口和按钮气泡工具提示。

作者:我的世界你曾经来过
博客:http://blog.csdn.net/weiaitaowang
最后编辑:2016年7月29日
"""

import sys
from PyQt5.QtWidgets import (QApplication, QWidget, 
    QToolTip, QPushButton)
from PyQt5.QtGui import QFont

class Example(QWidget):

  def __init__(self):
    super().__init__()

    self.initUI()

  def initUI(self):

    QToolTip.setFont(QFont('楷体', 14))

    self.setToolTip(&#39;这是一个 <b>QWidget</b> 控件&#39;)

    btn = QPushButton(&#39;按钮&#39;, self)
    btn.setToolTip(&#39;这是一个 <b>QPushButton</b> 控件&#39;)
    btn.resize(btn.sizeHint())
    btn.move(50, 50)

    self.setGeometry(300, 300, 300, 220)
    self.setWindowTitle(&#39;工具提示&#39;)    
    self.show()

if __name__ == &#39;__main__&#39;:

  app = QApplication(sys.argv)
  ex = Example()
  sys.exit(app.exec_())
Copy after login

In this example, we display tooltips for two PyQt5 controls.

 QToolTip.setFont(QFont(&#39;楷体&#39;, 14))
Copy after login

This static method sets the font used for tool tips, we use 10px size with italic font

self.setToolTip('This is AQWidget control')

Create a tool tip for this window control. We use the setTooltip() method. We can use rich text format for the displayed text.

btn = QPushButton(&#39;按钮&#39;, self)
btn.setToolTip(&#39;这是一个 <b>QPushButton</b> 控件&#39;)
Copy after login

We create a button control and set the tooltip of the control.

 btn.resize(btn.sizeHint())
 btn.move(50, 50)
Copy after login

Set the size and position of the button control in the form. The sizeHint() method gives the button a recommended size.

After program execution

PyQt5 tooltip function that you must learn every day

Related recommendations:

python greedy matching and multi-line matching

Python deduplicates multi-attribute duplicate data

The above is the detailed content of PyQt5 tooltip function that you must learn every day. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to optimize Debian Hadoop How to optimize Debian Hadoop Apr 02, 2025 am 08:54 AM

To improve the performance of DebianHadoop cluster, we need to start from hardware, software, resource management and performance tuning. The following are some key optimization strategies and suggestions: 1. Select hardware and system configurations carefully to select hardware configurations: Select the appropriate CPU, memory and storage devices according to actual application scenarios. SSD accelerated I/O: Use solid state hard drives (SSDs) as much as possible to improve I/O operation speed. Memory expansion: Allocate sufficient memory to NameNode and DataNode nodes to cope with larger data processing and tasks. 2. Software configuration optimization Hadoop configuration file adjustment: core-site.xml: Configure HDFS default file system

How to monitor system performance through Debian logs How to monitor system performance through Debian logs Apr 02, 2025 am 08:00 AM

Mastering Debian system log monitoring is the key to efficient operation and maintenance. It can help you understand the system's operating conditions in a timely manner, quickly locate faults, and optimize system performance. This article will introduce several commonly used monitoring methods and tools. Monitoring system resources with the sysstat toolkit The sysstat toolkit provides a series of powerful command line tools for collecting, analyzing and reporting various system resource metrics, including CPU load, memory usage, disk I/O, network throughput, etc. The main tools include: sar: a comprehensive system resource statistics tool, covering CPU, memory, disk, network, etc. iostat: disk and CPU statistics. mpstat: Statistics of multi-core CPUs. pidsta

Which libraries in Go are developed by large companies or provided by well-known open source projects? Which libraries in Go are developed by large companies or provided by well-known open source projects? Apr 02, 2025 pm 04:12 PM

Which libraries in Go are developed by large companies or well-known open source projects? When programming in Go, developers often encounter some common needs, ...

How to troubleshoot Debian Syslog How to troubleshoot Debian Syslog Apr 02, 2025 am 09:00 AM

Syslog for Debian systems is a key tool for system administrators to diagnose problems. This article provides some steps and commands to troubleshoot common Syslog problems: 1. Log viewing real-time viewing of the latest log: tail-f/var/log/syslog viewing kernel logs (start errors and driver problems): dmesg uses journalctl (Debian8 and above, systemd system): journalctl-b (viewing after startup logs), journalctl-f (viewing new logs in real-time). 2. System resource monitoring and viewing process and resource usage: psaux (find high resource occupancy process) real-time monitoring

What impact does Debian log level setting have on the system What impact does Debian log level setting have on the system Apr 02, 2025 am 08:15 AM

The log level settings of the Debian system directly affect the system's operating efficiency, security and problem-solving capabilities. This article explains the Debian log level settings and their impact in detail. Log level Detailed explanation The log level determines the level of detailed information recorded by the system. The higher the level, the less information recorded, and vice versa. Common log levels (from low to high) include: emerg (emerg): system crashes and need to be handled immediately. alert: Serious problem, immediate action is required. crit: Critical error, affecting system functions. err(err): Error, but the system can still run. warning: potential problems that may lead to errors.

How to handle error reports in Debian Message How to handle error reports in Debian Message Apr 02, 2025 am 08:06 AM

Effectively handle Debian system error reports to ensure the stable operation of the system. This article will guide you on how to identify, analyze, and resolve errors in Debian systems. Error handling steps: locate the error source: Use the dmesg command to view the kernel log, or use the graphical system log tool to check the system log files such as /var/log/syslog to find the error information. Analyze error information: Read the error information carefully and determine the error type (for example, hardware failure, software conflict, configuration error, etc.) and possible causes. If it is a package problem, try to update or reinstall the relevant packages (aptupdate and aptupgrade or apt-getinstall

How to improve user experience with Debian Strings How to improve user experience with Debian Strings Apr 02, 2025 am 08:33 AM

DebianStrings is a powerful string management tool in the Debian system. It can significantly improve software development efficiency and indirectly improve user experience. Although it is not directly targeted at users, its role is reflected in the following aspects: Reducing errors and redundancy: DebianStrings effectively reduces errors and duplicate strings in software packages through automated processes and efficient management mechanisms, thereby reducing the probability of users encountering problems and improving the stability of the software. Accelerate the localization process: Optimized string management can significantly shorten the time for software localization, allowing more language versions of software to meet users faster, and meet the language needs of global users. Improve user feedback mechanism: Debi

What are the efficient techniques for Debian file management What are the efficient techniques for Debian file management Apr 02, 2025 am 08:48 AM

Debian system efficient file management skills help you improve efficiency and quickly and conveniently operate files and directories. The following are some practical tips: 1. Proficient in using the following command line tools will greatly improve your file management efficiency: ls: View directory contents. cd: Switch directory. cp: Copy file or directory. mv: Move or rename a file or directory. rm: Delete a file or directory. mkdir: Create a directory. rmdir: Delete empty directory. touch: Create an empty file or update the file timestamp. find: Find files and directories. grep: Search for text in a file. tar: Package and unzip the file. 2. The magical use of wildcard characters, using wildcard characters, you can more accurately

See all articles