31 @param duration duration of the animation |
31 @param duration duration of the animation |
32 @type int |
32 @type int |
33 @param parent reference to the parent widget |
33 @param parent reference to the parent widget |
34 @type QWidget |
34 @type QWidget |
35 """ |
35 """ |
36 super(E5AnimatedWidget, self).__init__(parent) |
36 super().__init__(parent) |
37 |
37 |
38 self.__direction = direction |
38 self.__direction = direction |
39 self.__stepHeight = 0.0 |
39 self.__stepHeight = 0.0 |
40 self.__stepY = 0.0 |
40 self.__stepY = 0.0 |
41 self.__startY = 0 |
41 self.__startY = 0 |