1110 UserInterface.BottomSide) |
1110 UserInterface.BottomSide) |
1111 @param widget reference to the widget to add (QWidget) |
1111 @param widget reference to the widget to add (QWidget) |
1112 @param icon icon to be used (QIcon) |
1112 @param icon icon to be used (QIcon) |
1113 @param label label text to be shown (string) |
1113 @param label label text to be shown (string) |
1114 """ |
1114 """ |
1115 assert side in [UserInterface.LeftSide, UserInterface.BottomSide] |
1115 assert side in [UserInterface.LeftSide, UserInterface.BottomSide, |
|
1116 UserInterface.RightSide] |
1116 |
1117 |
1117 if self.__layoutType == "Toolboxes": |
1118 if self.__layoutType == "Toolboxes": |
1118 if side == UserInterface.LeftSide: |
1119 if side == UserInterface.LeftSide: |
1119 self.lToolbox.addItem(widget, icon, label) |
1120 self.lToolbox.addItem(widget, icon, label) |
1120 elif side == UserInterface.BottomSide: |
1121 elif side == UserInterface.BottomSide: |