Etiqueta desplazable PyQt5: información sobre herramientas de configuración

En este artículo, veremos cómo podemos configurar la información sobre herramientas en la etiqueta desplazable. De forma predeterminada, cuando creamos una etiqueta, todo el texto está en una sola línea y si la longitud del texto es mayor que la etiqueta, no se muestra texto adicional, aunque con la ayuda del método setWordWrap podemos crear una etiqueta de varias líneas, pero aún así si el texto excede no se mostrará en la etiqueta. Para mostrar el texto completo en una etiqueta pequeña, debemos hacer que la etiqueta se pueda desplazar, para hacer esto, debemos crear nuestra propia clase de etiqueta desplazable que hereda la clase QScrollArea que nos permite hacer que la etiqueta se pueda desplazar.

Pasos para las implementaciones: 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. Cree un objeto de esta clase dentro de la clase de ventana principal y establezca texto en él 7. Agregue información sobre herramientas al objeto con la ayuda del método setToolTip

A continuación se muestra la implementación. 

Python3

# 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
 
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())

Producción :

Publicación traducida automáticamente

Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *