[QGIS Commit] r15244 - trunk/qgis/src/app

svn_qgis at osgeo.org svn_qgis at osgeo.org
Tue Feb 22 16:37:02 EST 2011


Author: timlinux
Date: 2011-02-22 13:37:02 -0800 (Tue, 22 Feb 2011)
New Revision: 15244

Modified:
   trunk/qgis/src/app/qgstipfactory.cpp
Log:
Some cleanups and additions to Andreas' tips

Modified: trunk/qgis/src/app/qgstipfactory.cpp
===================================================================
--- trunk/qgis/src/app/qgstipfactory.cpp	2011-02-22 21:36:46 UTC (rev 15243)
+++ trunk/qgis/src/app/qgstipfactory.cpp	2011-02-22 21:37:02 UTC (rev 15244)
@@ -106,9 +106,22 @@
         " found in the tab <strong>Item --> General Options --> Position "
         " and Size</strong>. For easier positioning you can also set "
         " specific anchor points of the element within this dialogue. "
+        " The other move tool (the globe icon combined with the hand icon) "
+        " allows to move the map content within a map frame. "
         ));
   addGuiTip(myTip);
   // This  tip contributed by Andreas Neumann
+  myTip.setTitle(tr("Lock an element in the layout view"));
+  myTip.setContent(tr(" By left clicking an element in the layout view you can "
+        " select it, by right clicking an element you can lock it. A lock symbol "
+        " will appear in the upper left corner of the selected element. This "
+        " prevents the element from accidentally being moved with the mouse. While "
+        " in a locked state, you cannot move an element with the mouse but you can "
+        " still move it with the arrow keys or by absolutely positioning it by "
+        " setting its <strong>Position and Size</strong>"
+        ));
+  addGuiTip(myTip);
+  // This  tip contributed by Andreas Neumann
   myTip.setTitle(tr("Rotating a map and linking a north arrow"));
   myTip.setContent(tr("You can rotate a map by setting its rotation value "
         " in the <strong>Item tab --> Map</strong> section. To place a north "
@@ -128,12 +141,12 @@
          " set the style to 'Numeric'. You also need to select the map frame, if there "
          " is more than one."
         ));
-  addGenericTip(myTip);
+  addGuiTip(myTip);
   /* Template for adding more tips
   myTip.setTitle(tr(""));
   myTip.setContent(tr(""
         ));
-  addGenericTip(myTip);
+  addGuiTip(myTip);
   */
 }
 



More information about the QGIS-commit mailing list