소스 검색

ENH: Add more shortcuts. Fixes 6357.

Clinton Stimpson 17 년 전
부모
커밋
3cb2ba9e90
2개의 변경된 파일13개의 추가작업 그리고 13개의 파일을 삭제
  1. 7 7
      Source/QtDialog/CMakeSetupDialog.cxx
  2. 6 6
      Source/QtDialog/CMakeSetupDialog.ui

+ 7 - 7
Source/QtDialog/CMakeSetupDialog.cxx

@@ -97,7 +97,7 @@ CMakeSetupDialog::CMakeSetupDialog()
   this->GenerateAction = ToolsMenu->addAction(tr("&Generate"));
   QObject::connect(this->GenerateAction, SIGNAL(triggered(bool)), 
                    this, SLOT(doGenerate()));
-#if defined(__APPLE__)
+#if defined(Q_WS_MAC)
   this->InstallForCommandLineAction 
     = ToolsMenu->addAction(tr("&Install For Command Line Use"));
   QObject::connect(this->InstallForCommandLineAction, SIGNAL(triggered(bool)), 
@@ -807,7 +807,7 @@ void CMakeSetupDialog::enterState(CMakeSetupDialog::State s)
     this->setEnabledState(false);
     this->GenerateButton->setEnabled(false);
     this->GenerateAction->setEnabled(false);
-    this->ConfigureButton->setText(tr("Stop"));
+    this->ConfigureButton->setText(tr("&Stop"));
     }
   else if(s == Generating)
     {
@@ -815,7 +815,7 @@ void CMakeSetupDialog::enterState(CMakeSetupDialog::State s)
     this->setEnabledState(false);
     this->ConfigureButton->setEnabled(false);
     this->GenerateAction->setEnabled(false);
-    this->GenerateButton->setText(tr("Stop"));
+    this->GenerateButton->setText(tr("&Stop"));
     }
   else if(s == ReadyConfigure)
     {
@@ -824,8 +824,8 @@ void CMakeSetupDialog::enterState(CMakeSetupDialog::State s)
     this->GenerateButton->setEnabled(false);
     this->GenerateAction->setEnabled(false);
     this->ConfigureButton->setEnabled(true);
-    this->ConfigureButton->setText(tr("Configure"));
-    this->GenerateButton->setText(tr("Generate"));
+    this->ConfigureButton->setText(tr("&Configure"));
+    this->GenerateButton->setText(tr("&Generate"));
     }
   else if(s == ReadyGenerate)
     {
@@ -834,8 +834,8 @@ void CMakeSetupDialog::enterState(CMakeSetupDialog::State s)
     this->GenerateButton->setEnabled(true);
     this->GenerateAction->setEnabled(true);
     this->ConfigureButton->setEnabled(true);
-    this->ConfigureButton->setText(tr("Configure"));
-    this->GenerateButton->setText(tr("Generate"));
+    this->ConfigureButton->setText(tr("&Configure"));
+    this->GenerateButton->setText(tr("&Generate"));
     }
 }
 

+ 6 - 6
Source/QtDialog/CMakeSetupDialog.ui

@@ -37,7 +37,7 @@
      <item row="0" column="2" >
       <widget class="QPushButton" name="BrowseSourceDirectoryButton" >
        <property name="text" >
-        <string>Browse...</string>
+        <string>Browse &amp;Source...</string>
        </property>
       </widget>
      </item>
@@ -66,7 +66,7 @@
      <item row="1" column="2" >
       <widget class="QPushButton" name="BrowseBinaryDirectoryButton" >
        <property name="text" >
-        <string>Browse...</string>
+        <string>Browse &amp;Build...</string>
        </property>
       </widget>
      </item>
@@ -155,7 +155,7 @@
             <string>Add New Entry</string>
            </property>
            <property name="text" >
-            <string>Add Entry</string>
+            <string>&amp;Add Entry</string>
            </property>
            <property name="icon" >
             <iconset resource="CMakeSetup.qrc" >:/Icons/Plus16.png</iconset>
@@ -171,7 +171,7 @@
             <string>Remove Selected Entries</string>
            </property>
            <property name="text" >
-            <string>Remove Entry</string>
+            <string>&amp;Remove Entry</string>
            </property>
            <property name="icon" >
             <iconset resource="CMakeSetup.qrc" >:/Icons/Delete16.png</iconset>
@@ -220,14 +220,14 @@
          <item>
           <widget class="QPushButton" name="ConfigureButton" >
            <property name="text" >
-            <string>Configure</string>
+            <string>&amp;Configure</string>
            </property>
           </widget>
          </item>
          <item>
           <widget class="QPushButton" name="GenerateButton" >
            <property name="text" >
-            <string>Generate</string>
+            <string>&amp;Generate</string>
            </property>
           </widget>
          </item>