[Kst] extragear/graphics/kst/src/libkstapp

Barth Netterfield netterfield at astro.utoronto.ca
Wed Feb 7 14:44:28 CET 2007


SVN commit 631230 by netterfield:

Keyboard accelerators for the plot dialog
Fix the X Vector combo box to have completion.



 M  +3 -18     datawizard.ui  
 M  +3 -0      datawizard.ui.h  
 M  +5 -0      view2dplotwidget.ui.h  


--- trunk/extragear/graphics/kst/src/libkstapp/datawizard.ui #631229:631230
@@ -288,7 +288,7 @@
                             </sizepolicy>
                         </property>
                         <property name="text">
-                            <string>&amp;Select</string>
+                            <string></string>
                         </property>
                         <property name="whatsThis" stdset="0">
                             <string>Select (Alt-s): Move highlighted fields from the Available data list to the Selected data list for plotting.</string>
@@ -307,7 +307,7 @@
                             </sizepolicy>
                         </property>
                         <property name="text">
-                            <string>&amp;Remove</string>
+                            <string></string>
                         </property>
                         <property name="whatsThis" stdset="0">
                             <string>Remove (Alt-s): Move highlighted fields from the Selected data list to the Available data list so that they will not be plotted.</string>
@@ -614,21 +614,6 @@
                                         <verstretch>0</verstretch>
                                     </sizepolicy>
                                 </property>
-                                <property name="editable">
-                                    <bool>true</bool>
-                                </property>
-                                <property name="insertionPolicy">
-                                    <enum>NoInsertion</enum>
-                                </property>
-                                <property name="autoCompletion">
-                                    <bool>true</bool>
-                                </property>
-                                <property name="duplicatesEnabled">
-                                    <bool>false</bool>
-                                </property>
-                                <property name="urlDropsEnabled" stdset="0">
-                                    <bool>false</bool>
-                                </property>
                                 <property name="whatsThis" stdset="0">
                                     <string>The field to be used as the X axis in XY curves.</string>
                                 </property>
@@ -945,7 +930,7 @@
                                     <enum>PlusMinus</enum>
                                 </property>
                                 <property name="maxValue">
-                                    <number>20</number>
+                                    <number>64</number>
                                 </property>
                                 <property name="minValue">
                                     <number>2</number>
--- trunk/extragear/graphics/kst/src/libkstapp/datawizard.ui.h #631229:631230
@@ -58,7 +58,10 @@
     _xVectorExisting->_editVector->hide();
 
     _up->setPixmap(BarIcon("up"));
+    _up->setAccel(ALT+Key_Up);
+
     _down->setPixmap(BarIcon("down"));
+    _down->setAccel(ALT+Key_Down);
 
     _add->setPixmap(BarIcon("forward"));
     _add->setAccel(ALT+Key_S);
--- trunk/extragear/graphics/kst/src/libkstapp/view2dplotwidget.ui.h #631229:631230
@@ -54,12 +54,17 @@
 
   _up->setPixmap(BarIcon("up"));
   _up->setEnabled(false);
+  _up->setAccel(ALT+Key_Up);
   _down->setPixmap(BarIcon("down"));
   _down->setEnabled(false);
+  _down->setAccel(ALT+Key_Down);
   _add->setPixmap(BarIcon("forward"));
   _add->setEnabled(false);
+  _add->setAccel(ALT+Key_S);
   _remove->setPixmap(BarIcon("back"));
   _remove->setEnabled(false);
+  _remove->setAccel(ALT+Key_R);
+
   QToolTip::add(_up, i18n("Shortcut: Alt+Up"));
   QToolTip::add(_down, i18n("Shortcut: Alt+Down"));
   QToolTip::add(_add, i18n("Shortcut: Alt+s"));


More information about the Kst mailing list