En este artículo veremos cómo podemos comprobar si el QCalendarWidget tiene foco o no. El foco es básicamente el foco de entrada, de forma predeterminada no tiene foco, pero cuando se ejecuta la aplicación, se hace clic con el mouse sobre ella, obtiene el foco, pero cuando se hace clic con el mouse sobre otro widget, su foco se desplazará.
Para hacer esto, usaremos el método hasFocus con el objeto QCalendarWidget.
Sintaxis : calendar.hasFocus()
Argumento : No requiere argumento
Devolución : Devuelve bool
Pasos de implementación:
1. Cree una ventana principal
2. Cree un widget de calendario
3. Cree un widget de edición de línea en una posición diferente
4. Cree una etiqueta para mostrar el estado de enfoque
5. Cree un objeto QTimer que llame a la acción cada 200 milisegundos
6. Dentro de la acción del temporizador, verifique el enfoque del calendario.
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 Window(QMainWindow): def __init__(self): super().__init__() # setting title self.setWindowTitle("Python ") # setting geometry self.setGeometry(100, 100, 650, 400) # calling method self.UiComponents() # showing all the widgets self.show() # method for components def UiComponents(self): # creating a QCalendarWidget object self.calendar = QCalendarWidget(self) # setting geometry to the calendar self.calendar.setGeometry(50, 10, 400, 250) # setting cursor self.calendar.setCursor(Qt.PointingHandCursor) # creating label to show the properties self.label = QLabel(self) # setting geometry to the label self.label.setGeometry(100, 280, 250, 60) # making label multi line self.label.setWordWrap(True) # checking edit focus value = self.calendar.hasFocus() # setting text to the label self.label.setText("Has Focus : " + str(value)) # creating a timer object timer = QTimer(self) timer.timeout.connect(self.show_time) timer.start(200) # creating a line edit line = QLineEdit(self) # setting geometry tot he line edit line.setGeometry(500, 100, 100, 40) # method called by the timer def show_time(self): # checking focus value = str(self.calendar.hasFocus()) # setting text through label self.label.setText("Has Focus : " + value) # 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