7 Module implementing a widget to stack url bars. |
7 Module implementing a widget to stack url bars. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt4.QtGui import QStackedWidget, QSizePolicy |
10 from PyQt4.QtGui import QStackedWidget, QSizePolicy |
11 |
11 |
|
12 |
12 class StackedUrlBar(QStackedWidget): |
13 class StackedUrlBar(QStackedWidget): |
13 """ |
14 """ |
14 Class implementing a widget to stack url bars. |
15 Class implementing a widget to stack url bars. |
15 """ |
16 """ |
16 def __init__(self, parent = None): |
17 def __init__(self, parent=None): |
17 """ |
18 """ |
18 Constructor |
19 Constructor |
19 |
20 |
20 @param parent reference to the parent widget (QWidget) |
21 @param parent reference to the parent widget (QWidget) |
21 """ |
22 """ |