PyQt5可滚动标签–将工具提示设置到标签部分
在这篇文章中,我们将看到如何为滚动标签的标签部分设置工具提示,当我们知道我们可以通过继承一个滚动类并在其中制作标签来制作可滚动的标签时,但当我们为类对象设置工具提示时,工具提示被设置到整个部件,即标签和滚动条。为了只在标签部分添加工具提示,我们必须覆盖该对象的功能。
实现的步骤 –
- 创建一个继承于QScrollArea的新类
- 在该类中创建垂直布局
- 创建一个标签,使其成为多行,并将其添加到布局中
- 覆盖标签的setText和text方法
- 覆盖setToolTip方法并在标签上添加工具提示
- 在主窗口类中创建这个类的对象,并给它设置文本
- 在setToolTip方法的帮助下,为该对象添加工具提示。
下面是实现方法
# importing libraries
from PyQt5.QtWidgets import *
from PyQt5 import QtCore, QtGui
from PyQt5.QtGui import *
from PyQt5.QtCore import *
import sys
# class for scrollable label
class ScrollLabel(QScrollArea):
# constructor
def __init__(self, *args, **kwargs):
QScrollArea.__init__(self, *args, **kwargs)
# making widget resizable
self.setWidgetResizable(True)
# making qwidget object
content = QWidget(self)
self.setWidget(content)
# vertical box layout
lay = QVBoxLayout(content)
# creating label
self.label = QLabel(content)
# making label multi-line
self.label.setWordWrap(True)
# adding label to the layout
lay.addWidget(self.label)
# the setText method
def setText(self, text):
# setting text to the label
self.label.setText(text)
# getting text method
def text(self):
# getting text of the label
get_text = self.label.text()
# return the text
return get_text
# overriding setToolTip method
def setToolTip(self, text):
# setting tool tip to the label
self.label.setToolTip(text)
class Window(QMainWindow):
def __init__(self):
super().__init__()
# setting title
self.setWindowTitle("Python ")
# setting geometry
self.setGeometry(100, 100, 600, 400)
# calling method
self.UiComponents()
# showing all the widgets
self.show()
# method for widgets
def UiComponents(self):
# text to show in label
text = "There are so many options provided by Python to develop GUI " \
" There are so many options provided by Python to develop GUI" \
" There are so many options provided by Python to develop GUI"
# creating scroll label
label = ScrollLabel(self)
# setting text to the label
label.setText(text)
# setting geometry
label.setGeometry(100, 100, 150, 80)
# setting tool tip
label.setToolTip("It is tool tip")
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
Python
输出 :