- update Italian translate
- renamed help console to console_help.py
- renamed Deutsch properties file (help translation)
- added MouseEvent (midbutton) to Python Console
This commit is contained in:
Salvatore Larosa 2012-10-05 22:21:56 +02:00
parent 21eb6cff5d
commit 4513ada562
5 changed files with 15 additions and 3 deletions

View File

@ -6420,7 +6420,7 @@ Cambiare questa situazione prima, perché il plugin OSM non quale layer è la de
</message>
<message>
<source>Help Python Console</source>
<translation type="obsolete">Aiuto Console Python</translation>
<translation>Aiuto Console Python</translation>
</message>
<message>
<source>Import Class</source>

View File

@ -149,7 +149,7 @@ ADD_CUSTOM_COMMAND(TARGET compile_python_files
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
FOREACH(file __init__.py utils.py console.py console_sci.py help.py)
FOREACH(file __init__.py utils.py console.py console_sci.py console_help.py)
ADD_CUSTOM_COMMAND(TARGET compile_python_files
POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy ${file} ${QGIS_PYTHON_OUTPUT_DIRECTORY}
@ -162,4 +162,4 @@ PYTHON_INSTALL(__init__.py ${QGIS_PYTHON_DIR})
PYTHON_INSTALL(utils.py ${QGIS_PYTHON_DIR})
PYTHON_INSTALL(console.py ${QGIS_PYTHON_DIR})
PYTHON_INSTALL(console_sci.py ${QGIS_PYTHON_DIR})
PYTHON_INSTALL(help.py ${QGIS_PYTHON_DIR})
PYTHON_INSTALL(console_help.py ${QGIS_PYTHON_DIR})

View File

@ -424,6 +424,18 @@ class PythonEdit(QsciScintilla, code.InteractiveInterpreter):
else:
QsciScintilla.keyPressEvent(self, e)
def mousePressEvent(self, e):
"""
Re-implemented to handle the mouse press event.
event: the mouse press event (QMouseEvent)
"""
if e.button() == Qt.MidButton:
self.setFocus()
self.paste()
e.accept()
else:
QsciScintilla.mousePressEvent(self, e)
def paste(self):
"""Reimplement QScintilla method"""
stringPaste = unicode(QApplication.clipboard().text())