En este artículo, veremos cómo podemos obtener la duración de la información sobre herramientas de la parte de la etiqueta de la etiqueta de desplazamiento, cuando sabemos que podemos hacer una etiqueta desplazable con la ayuda de heredar una clase de desplazamiento y crear una etiqueta en ella, pero cuando configuramos la información sobre herramientas para la clase La información sobre herramientas del objeto se establece en todo el widget, es decir, la etiqueta y la barra de desplazamiento también.
Para obtener información sobre herramientas y su duración de la parte de la etiqueta, tenemos que anular la función del objeto.
Pasos para la implementación –
1. Cree una nueva clase que herede QScrollArea
2. Dentro de la clase, cree un diseño vertical
3. Cree una etiqueta y hágala multilínea y agréguela al diseño
5. Anule el método setText y text para la etiqueta
6. Anule utilice el método setToolTip y setToolTipDuration
7. Anule el método toolTipDuration que devuelve la duración de la información sobre herramientas de etiqueta
8. Cree un objeto de esta clase dentro de la clase de la ventana principal y establezca el texto en él
9. Agregue información sobre herramientas y su duración al objeto con la ayuda desetToolTip
y elsetToolTipDuration
método
10. Obtenga la información sobre herramientas con la ayuda del método toolTipDuration
11. Cree otra etiqueta para mostrar la duración
A continuación se muestra la implementación.
# 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 # setToolTip method def setToolTip(self, p_str): # setting tool tip to the label self.label.setToolTip(p_str) # setToolTipDuration method def setToolTipDuration(self, p_int): # setting tool tip duration to the label self.label.setToolTipDuration(p_int) # getting tool tip duration # toolTipDuration method def toolTipDuration(self): # returning the duration of label return self.label.toolTipDuration() 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") # setting tool tip duration label.setToolTipDuration(1000) # getting duration duration = label.toolTipDuration() # creating another label to show the duration result = QLabel("Duration : " + str(duration), self) # setting geometry to the label result.setGeometry(150, 200, 200, 30) # create pyqt5 app App = QApplication(sys.argv) # create the instance of our Window window = Window() # start the app sys.exit(App.exec())
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA