ViewManager/ViewManager.py

changeset 1500
6ce6deb421cf
parent 1490
ed6f2208297d
child 1504
3e6ec85cede1
--- a/ViewManager/ViewManager.py	Sat Dec 17 19:13:19 2011 +0100
+++ b/ViewManager/ViewManager.py	Sun Dec 18 16:21:11 2011 +0100
@@ -940,6 +940,25 @@
         self.uncommentAct.triggered[()].connect(self.__editUncomment)
         self.editActions.append(self.uncommentAct)
         
+        self.toggleCommentAct = E5Action(
+                QApplication.translate('ViewManager', 'Toggle Comment'),
+                UI.PixmapCache.getIcon("editToggleComment.png"),
+                QApplication.translate('ViewManager', 'Toggle Comment'),
+                QKeySequence(QApplication.translate('ViewManager',
+                    "Ctrl+Shift+M", "Edit|Toggle Comment")),
+                0,
+                self.editActGrp, 'vm_edit_toggle_comment')
+        self.toggleCommentAct.setStatusTip(QApplication.translate('ViewManager',
+            'Toggle the comment of the current line, selection or comment block'))
+        self.toggleCommentAct.setWhatsThis(QApplication.translate('ViewManager',
+            """<b>Toggle Comment</b>"""
+            """<p>If the current line does not start with a block comment,"""
+            """ the current line or selection is commented. If it is already"""
+            """ commented, this comment block is uncommented. </p>"""
+        ))
+        self.toggleCommentAct.triggered[()].connect(self.__editToggleComment)
+        self.editActions.append(self.toggleCommentAct)
+        
         self.streamCommentAct = E5Action(QApplication.translate('ViewManager',
                     'Stream Comment'),
                 QApplication.translate('ViewManager', 'Stream Comment'),
@@ -2287,6 +2306,7 @@
         menu.addSeparator()
         menu.addAction(self.commentAct)
         menu.addAction(self.uncommentAct)
+        menu.addAction(self.toggleCommentAct)
         menu.addAction(self.streamCommentAct)
         menu.addAction(self.boxCommentAct)
         menu.addSeparator()
@@ -2334,6 +2354,7 @@
         tb.addSeparator()
         tb.addAction(self.commentAct)
         tb.addAction(self.uncommentAct)
+        tb.addAction(self.toggleCommentAct)
         
         toolbarManager.addToolBar(tb, tb.windowTitle())
         toolbarManager.addAction(self.smartIndentAct, tb.windowTitle())
@@ -4306,6 +4327,12 @@
         """
         self.activeWindow().smartIndentLineOrSelection()
         
+    def __editToggleComment(self):
+        """
+        Private method to handle the toggle comment action.
+        """
+        self.activeWindow().toggleCommentBlock()
+        
     def __editComment(self):
         """
         Private method to handle the comment action.

eric ide

mercurial