[Cmake-commits] [cmake-commits] clinton committed CMakeSetupDialog.cxx 1.46 1.47 CMakeSetupDialog.ui 1.16 1.17

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Apr 3 16:49:48 EDT 2008


Update of /cvsroot/CMake/CMake/Source/QtDialog
In directory public:/mounts/ram/cvs-serv20716

Modified Files:
	CMakeSetupDialog.cxx CMakeSetupDialog.ui 
Log Message:
ENH:  Add more shortcuts.  Fixes 6357.


Index: CMakeSetupDialog.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/QtDialog/CMakeSetupDialog.cxx,v
retrieving revision 1.46
retrieving revision 1.47
diff -C 2 -d -r1.46 -r1.47
*** CMakeSetupDialog.cxx	3 Apr 2008 20:18:37 -0000	1.46
--- CMakeSetupDialog.cxx	3 Apr 2008 20:49:45 -0000	1.47
***************
*** 98,102 ****
    QObject::connect(this->GenerateAction, SIGNAL(triggered(bool)), 
                     this, SLOT(doGenerate()));
! #if defined(__APPLE__)
    this->InstallForCommandLineAction 
      = ToolsMenu->addAction(tr("&Install For Command Line Use"));
--- 98,102 ----
    QObject::connect(this->GenerateAction, SIGNAL(triggered(bool)), 
                     this, SLOT(doGenerate()));
! #if defined(Q_WS_MAC)
    this->InstallForCommandLineAction 
      = ToolsMenu->addAction(tr("&Install For Command Line Use"));
***************
*** 808,812 ****
      this->GenerateButton->setEnabled(false);
      this->GenerateAction->setEnabled(false);
!     this->ConfigureButton->setText(tr("Stop"));
      }
    else if(s == Generating)
--- 808,812 ----
      this->GenerateButton->setEnabled(false);
      this->GenerateAction->setEnabled(false);
!     this->ConfigureButton->setText(tr("&Stop"));
      }
    else if(s == Generating)
***************
*** 816,820 ****
      this->ConfigureButton->setEnabled(false);
      this->GenerateAction->setEnabled(false);
!     this->GenerateButton->setText(tr("Stop"));
      }
    else if(s == ReadyConfigure)
--- 816,820 ----
      this->ConfigureButton->setEnabled(false);
      this->GenerateAction->setEnabled(false);
!     this->GenerateButton->setText(tr("&Stop"));
      }
    else if(s == ReadyConfigure)
***************
*** 825,830 ****
      this->GenerateAction->setEnabled(false);
      this->ConfigureButton->setEnabled(true);
!     this->ConfigureButton->setText(tr("Configure"));
!     this->GenerateButton->setText(tr("Generate"));
      }
    else if(s == ReadyGenerate)
--- 825,830 ----
      this->GenerateAction->setEnabled(false);
      this->ConfigureButton->setEnabled(true);
!     this->ConfigureButton->setText(tr("&Configure"));
!     this->GenerateButton->setText(tr("&Generate"));
      }
    else if(s == ReadyGenerate)
***************
*** 835,840 ****
      this->GenerateAction->setEnabled(true);
      this->ConfigureButton->setEnabled(true);
!     this->ConfigureButton->setText(tr("Configure"));
!     this->GenerateButton->setText(tr("Generate"));
      }
  }
--- 835,840 ----
      this->GenerateAction->setEnabled(true);
      this->ConfigureButton->setEnabled(true);
!     this->ConfigureButton->setText(tr("&Configure"));
!     this->GenerateButton->setText(tr("&Generate"));
      }
  }

Index: CMakeSetupDialog.ui
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/QtDialog/CMakeSetupDialog.ui,v
retrieving revision 1.16
retrieving revision 1.17
diff -C 2 -d -r1.16 -r1.17
*** CMakeSetupDialog.ui	13 Nov 2007 04:54:49 -0000	1.16
--- CMakeSetupDialog.ui	3 Apr 2008 20:49:46 -0000	1.17
***************
*** 38,42 ****
        <widget class="QPushButton" name="BrowseSourceDirectoryButton" >
         <property name="text" >
!         <string>Browse...</string>
         </property>
        </widget>
--- 38,42 ----
        <widget class="QPushButton" name="BrowseSourceDirectoryButton" >
         <property name="text" >
!         <string>Browse &amp;Source...</string>
         </property>
        </widget>
***************
*** 67,71 ****
        <widget class="QPushButton" name="BrowseBinaryDirectoryButton" >
         <property name="text" >
!         <string>Browse...</string>
         </property>
        </widget>
--- 67,71 ----
        <widget class="QPushButton" name="BrowseBinaryDirectoryButton" >
         <property name="text" >
!         <string>Browse &amp;Build...</string>
         </property>
        </widget>
***************
*** 156,160 ****
             </property>
             <property name="text" >
!             <string>Add Entry</string>
             </property>
             <property name="icon" >
--- 156,160 ----
             </property>
             <property name="text" >
!             <string>&amp;Add Entry</string>
             </property>
             <property name="icon" >
***************
*** 172,176 ****
             </property>
             <property name="text" >
!             <string>Remove Entry</string>
             </property>
             <property name="icon" >
--- 172,176 ----
             </property>
             <property name="text" >
!             <string>&amp;Remove Entry</string>
             </property>
             <property name="icon" >
***************
*** 221,225 ****
            <widget class="QPushButton" name="ConfigureButton" >
             <property name="text" >
!             <string>Configure</string>
             </property>
            </widget>
--- 221,225 ----
            <widget class="QPushButton" name="ConfigureButton" >
             <property name="text" >
!             <string>&amp;Configure</string>
             </property>
            </widget>
***************
*** 228,232 ****
            <widget class="QPushButton" name="GenerateButton" >
             <property name="text" >
!             <string>Generate</string>
             </property>
            </widget>
--- 228,232 ----
            <widget class="QPushButton" name="GenerateButton" >
             <property name="text" >
!             <string>&amp;Generate</string>
             </property>
            </widget>



More information about the Cmake-commits mailing list