[Kst] branches/work/kst/portto4/kst/src

Nicolas Brisset nicolas.brisset at eurocopter.com
Thu Sep 23 01:01:17 CEST 2010


SVN commit 1178403 by brisset:

Improved icons for change data file and tied zoom. Still in need of
small improvements: the shadow below the first one looks strange when
all other icons don't have one, and the tied zoom icon is too light and
lacks contrast. But I think the ideas are good.


 M  +2 -0      images/images.qrc  
 AM            images/revert.png  
 A             images/svg_icons/tied-zoom.svg  
 AM            images/tied-zoom.png  
 M  +2 -2      libkstapp/mainwindow.cpp  


--- branches/work/kst/portto4/kst/src/images/images.qrc #1178402:1178403
@@ -97,5 +97,7 @@
         <file>text-x-log.png</file>
         <file>folder-development.png</file>
         <file>document-export.png</file>
+        <file>revert.png</file>
+        <file>tied-zoom.png</file>
     </qresource>
 </RCC>
--- branches/work/kst/portto4/kst/src/libkstapp/mainwindow.cpp #1178402:1178403
@@ -848,7 +848,7 @@
   // ************************** Mode Actions ******************************* //
   _tiedZoomAct = new QAction(tr("&Tied Zoom"), this);
   _tiedZoomAct->setStatusTip(tr("Toggle the current view's tied zoom"));
-  _tiedZoomAct->setIcon(QPixmap(":kst_zoomtie.png"));
+  _tiedZoomAct->setIcon(QPixmap(":tied-zoom.png"));
   //_tiedZoomAct->setCheckable(true);
   _tiedZoomAct->setShortcut(QString("t"));
   connect(_tiedZoomAct, SIGNAL(triggered()), this, SLOT(toggleTiedZoom()));
@@ -888,7 +888,7 @@
 
   _changeFileDialogAct = new QAction(tr("Change Data &File"), this);
   _changeFileDialogAct->setStatusTip(tr("Show Kst's Change Data File Dialog"));
-  _changeFileDialogAct->setIcon(QPixmap(":folder-development.png"));
+  _changeFileDialogAct->setIcon(QPixmap(":revert.png"));
   _changeFileDialogAct->setShortcut(QString("f"));
   connect(_changeFileDialogAct, SIGNAL(triggered()), this, SLOT(showChangeFileDialog()));
 


More information about the Kst mailing list