PyQt5 QCalendarWidget: cómo arrastrarlo y soltarlo en cualquier lugar de la ventana con el mouse

En este artículo veremos cómo podemos arrastrar y soltar el calendario en la ventana principal. Para arrastrar el calendario, el usuario debe hacer clic en la barra de título del calendario y mover el cursor para mover el calendario y para soltarlo, simplemente suelte el cursor.

Pasos de implementación:
1. Cree una clase de Calendario que herede el QCalendarWidget
2. Dentro de la clase de Calendario, anule el evento de presionar y soltar del mouse dentro de los eventos, actualice el indicador de movimiento
3. Cree una clase de ventana principal
4. Cree un objeto de Calendario
5. Establezca principal seguimiento del mouse de la ventana habilitado
6. Anule el evento de movimiento del mouse
7. Dentro del evento de movimiento del mouse obtenga las coordenadas x, y y cambie la posición del calendario de acuerdo con esto

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
  
# QCalendarWidget Class
class Calendar(QCalendarWidget):
  
    # constructor
    def __init__(self, parent = None):
        super(Calendar, self).__init__(parent)
  
    # overriding the mouse press event
    def mousePressEvent(self, QMouseEvent):
  
        # making flag true
        window.move_calendar = True
  
    # overriding the mouse release event
    def mouseReleaseEvent(self, event):
  
        # making flag false
        window.move_calendar = False
  
  
  
  
  
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()
  
        # creating amove flag
        self.move_calendar = False
  
    # method for components
    def UiComponents(self):
  
        # creating a QCalendarWidget object
        # as Calendar class inherits QCalendarWidget
        self.calendar = Calendar(self)
  
        # enabling mouse tracking
        self.calendar.setMouseTracking(True)
        self.setMouseTracking(True)
  
        # setting geometry to the calendar
        self.calendar.setGeometry(50, 10, 250, 250)
  
        # setting cursor
        self.calendar.setCursor(Qt.PointingHandCursor)
  
  
    # overriding the mouse move event
    def mouseMoveEvent(self, event):
  
        # getting x, y co-ordinates
        x = event.x()
        y = event.y()
  
        # checking the flag
        if self.move_calendar:
  
            # moving the calendar
            self.calendar.move(x, y)
  
  
# 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 *