8 """ |
8 """ |
9 |
9 |
10 from PyQt4.QtCore import Qt, QPoint, QPointF |
10 from PyQt4.QtCore import Qt, QPoint, QPointF |
11 from PyQt4.QtGui import QAbstractButton, QPainter, QPainterPath |
11 from PyQt4.QtGui import QAbstractButton, QPainter, QPainterPath |
12 |
12 |
|
13 |
13 class E5LineEditButton(QAbstractButton): |
14 class E5LineEditButton(QAbstractButton): |
14 """ |
15 """ |
15 Class implementing a button to be used with E5LineEdit. |
16 Class implementing a button to be used with E5LineEdit. |
16 """ |
17 """ |
17 def __init__(self, parent = None): |
18 def __init__(self, parent=None): |
18 """ |
19 """ |
19 Constructor |
20 Constructor |
20 |
21 |
21 @param parent reference to the parent widget (QWidget) |
22 @param parent reference to the parent widget (QWidget) |
22 """ |
23 """ |