2755 tb.addAction(self.cutAct) |
2755 tb.addAction(self.cutAct) |
2756 tb.addAction(self.copyAct) |
2756 tb.addAction(self.copyAct) |
2757 tb.addAction(self.pasteAct) |
2757 tb.addAction(self.pasteAct) |
2758 tb.addAction(self.deleteAct) |
2758 tb.addAction(self.deleteAct) |
2759 tb.addSeparator() |
2759 tb.addSeparator() |
2760 tb.addAction(self.indentAct) |
|
2761 tb.addAction(self.unindentAct) |
|
2762 tb.addSeparator() |
|
2763 tb.addAction(self.commentAct) |
2760 tb.addAction(self.commentAct) |
2764 tb.addAction(self.uncommentAct) |
2761 tb.addAction(self.uncommentAct) |
2765 tb.addAction(self.toggleCommentAct) |
2762 tb.addAction(self.toggleCommentAct) |
2766 |
2763 |
2767 toolbarManager.addToolBar(tb, tb.windowTitle()) |
2764 toolbarManager.addToolBar(tb, tb.windowTitle()) |
2768 toolbarManager.addAction(self.smartIndentAct, tb.windowTitle()) |
2765 toolbarManager.addAction(self.smartIndentAct, tb.windowTitle()) |
|
2766 toolbarManager.addAction(self.indentAct, tb.windowTitle()) |
|
2767 toolbarManager.addAction(self.unindentAct, tb.windowTitle()) |
2769 |
2768 |
2770 return tb |
2769 return tb |
2771 |
2770 |
2772 ################################################################## |
2771 ################################################################## |
2773 ## Initialize the search related actions and the search toolbar |
2772 ## Initialize the search related actions and the search toolbar |