Skip to content

Commit

Permalink
Added action: Hide/Show toolbar for PyQGIS Console
Browse files Browse the repository at this point in the history
- image help update
  • Loading branch information
slarosa committed Nov 12, 2012
1 parent 3b88637 commit 1495f65
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
Binary file added images/console/iconHideToolConsole.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/console/imgHelpMenu.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions images/images.qrc
Expand Up @@ -491,6 +491,7 @@
<file>console/iconCodepadConsole.png</file>
<file>console/imgHelpConsole.png</file>
<file>console/imgHelpMenu.png</file>
<file>console/iconHideToolConsole.png</file>
<file>flags/sr_Cyrl.png</file>
<file>flags/sr_Latn.png</file>
<file>flags/sw.png</file>
Expand Down
10 changes: 10 additions & 0 deletions python/console/console_output.py
Expand Up @@ -165,6 +165,11 @@ def contextMenuEvent(self, e):
iconRun = QIcon(":/images/console/iconRunConsole.png")
iconPastebin = QIcon(":/images/console/iconCodepadConsole.png")
iconClear = QIcon(":/images/console/iconClearConsole.png")
iconHideTool = QIcon(":/images/console/iconHideToolConsole.png")
hideToolBar = menu.addAction(iconHideTool,
"Hide/Show Toolbar",
self.hideToolBar)
menu.addSeparator()
runAction = menu.addAction(iconRun,
"Enter Selected",
self.enteredSelected,
Expand Down Expand Up @@ -196,6 +201,11 @@ def contextMenuEvent(self, e):
selectAllAction.setEnabled(True)
clearAction.setEnabled(True)
action = menu.exec_(self.mapToGlobal(e.pos()))

def hideToolBar(self):
tB = self.parent.toolBar
tB.hide() if tB.isVisible() else tB.show()
self.edit.setFocus()

def copy(self):
"""Copy text to clipboard... or keyboard interrupt"""
Expand Down

0 comments on commit 1495f65

Please sign in to comment.