eric6/Snapshot/SnapshotPreview.py

changeset 6942
2602857055c5
parent 6645
ad476851d7e0
child 7229
53054eb5b15a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/Snapshot/SnapshotPreview.py	Sun Apr 14 15:09:21 2019 +0200
@@ -0,0 +1,78 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2012 - 2019 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing the snapshot preview label.
+"""
+
+from __future__ import unicode_literals
+
+from PyQt5.QtCore import pyqtSignal, QPoint, Qt
+from PyQt5.QtWidgets import QLabel, QApplication
+
+
+class SnapshotPreview(QLabel):
+    """
+    Class implementing the snapshot preview label.
+    
+    @signal startDrag() emitted to indicate the start of a drag operation
+    """
+    startDrag = pyqtSignal()
+    
+    def __init__(self, parent=None):
+        """
+        Constructor
+        
+        @param parent reference to the parent widget (QWidget)
+        """
+        super(SnapshotPreview, self).__init__(parent)
+        
+        self.setAlignment(Qt.AlignHCenter | Qt.AlignCenter)
+        self.setCursor(Qt.OpenHandCursor)
+        
+        self.__mouseClickPoint = QPoint(0, 0)
+    
+    def setPreview(self, preview):
+        """
+        Public slot to set the preview picture.
+        
+        @param preview preview picture to be shown (QPixmap)
+        """
+        if not preview.isNull():
+            pixmap = preview.scaled(
+                self.width(), self.height(),
+                Qt.KeepAspectRatio, Qt.SmoothTransformation)
+        else:
+            pixmap = preview
+        self.setPixmap(pixmap)
+    
+    def mousePressEvent(self, evt):
+        """
+        Protected method to handle mouse button presses.
+        
+        @param evt mouse button press event (QMouseEvent)
+        """
+        if evt.button() == Qt.LeftButton:
+            self.__mouseClickPoint = evt.pos()
+    
+    def mouseReleaseEvent(self, evt):
+        """
+        Protected method to handle mouse button releases.
+        
+        @param evt mouse button release event (QMouseEvent)
+        """
+        self.__mouseClickPoint = QPoint(0, 0)
+    
+    def mouseMoveEvent(self, evt):
+        """
+        Protected method to handle mouse moves.
+        
+        @param evt mouse move event (QMouseEvent)
+        """
+        if self.__mouseClickPoint != QPoint(0, 0) and \
+           (evt.pos() - self.__mouseClickPoint).manhattanLength() > \
+                QApplication.startDragDistance():
+            self.__mouseClickPoint = QPoint(0, 0)
+            self.startDrag.emit()

eric ide

mercurial