ViewManager/ViewManager.py

changeset 3970
c16a52652af5
parent 3670
f0cb7579c0b4
child 4021
195a471c327b
equal deleted inserted replaced
3968:19d287451e44 3970:c16a52652af5
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

eric ide

mercurial