Added tooltips
This commit is contained in:
@@ -153,6 +153,30 @@ class TaskPanel:
|
||||
None,QtGui.QApplication.UnicodeUTF8))
|
||||
self.form.findChild(QtGui.QLabel, "yPosLabel").setText(QtGui.QApplication.translate("plot_axes", "Y axis position",
|
||||
None,QtGui.QApplication.UnicodeUTF8))
|
||||
self.form.axId.setToolTip(QtGui.QApplication.translate("plot_axes", "Index of the active axes",
|
||||
None,QtGui.QApplication.UnicodeUTF8))
|
||||
self.form.new.setToolTip(QtGui.QApplication.translate("plot_axes", "Add new axes to the plot",
|
||||
None,QtGui.QApplication.UnicodeUTF8))
|
||||
self.form.remove.setToolTip(QtGui.QApplication.translate("plot_axes", "Remove selected axes",
|
||||
None,QtGui.QApplication.UnicodeUTF8))
|
||||
self.form.all.setToolTip(QtGui.QApplication.translate("plot_axes", "Check it to apply transformations to all axes",
|
||||
None,QtGui.QApplication.UnicodeUTF8))
|
||||
self.form.xMin.setToolTip(QtGui.QApplication.translate("plot_axes", "Left bound of axes",
|
||||
None,QtGui.QApplication.UnicodeUTF8))
|
||||
self.form.xMax.setToolTip(QtGui.QApplication.translate("plot_axes", "Right bound of axes",
|
||||
None,QtGui.QApplication.UnicodeUTF8))
|
||||
self.form.yMin.setToolTip(QtGui.QApplication.translate("plot_axes", "Bottom bound of axes",
|
||||
None,QtGui.QApplication.UnicodeUTF8))
|
||||
self.form.yMax.setToolTip(QtGui.QApplication.translate("plot_axes", "Top bound of axes",
|
||||
None,QtGui.QApplication.UnicodeUTF8))
|
||||
self.form.xOffset.setToolTip(QtGui.QApplication.translate("plot_axes", "Outward offset of X axis",
|
||||
None,QtGui.QApplication.UnicodeUTF8))
|
||||
self.form.yOffset.setToolTip(QtGui.QApplication.translate("plot_axes", "Outward offset of Y axis",
|
||||
None,QtGui.QApplication.UnicodeUTF8))
|
||||
self.form.xAuto.setToolTip(QtGui.QApplication.translate("plot_axes", "X axis scale autoselection",
|
||||
None,QtGui.QApplication.UnicodeUTF8))
|
||||
self.form.yAuto.setToolTip(QtGui.QApplication.translate("plot_axes", "Y axis scale autoselection",
|
||||
None,QtGui.QApplication.UnicodeUTF8))
|
||||
|
||||
def onAxesId(self, value):
|
||||
""" Executed when axes index is modified. """
|
||||
|
||||
Reference in New Issue
Block a user