5 |
5 |
6 """ |
6 """ |
7 Module implementing a grabber widget for a rectangular snapshot region. |
7 Module implementing a grabber widget for a rectangular snapshot region. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ |
10 from __future__ import unicode_literals |
11 |
11 |
12 from PyQt4.QtCore import pyqtSignal, Qt, QRect, QPoint, QTimer, qVersion |
12 from PyQt4.QtCore import pyqtSignal, Qt, QRect, QPoint, QTimer, qVersion |
13 from PyQt4.QtGui import QWidget, QPixmap, QColor, QRegion, QApplication, \ |
13 from PyQt4.QtGui import QWidget, QPixmap, QColor, QRegion, QApplication, \ |
14 QPainter, QPalette, QToolTip, QPaintEngine, QPen, QBrush |
14 QPainter, QPalette, QToolTip, QPaintEngine, QPen, QBrush |
15 |
15 |