forked from qt-creator/qt-creator
Add "..." to buttons which open a dialog
Change-Id: I70974a223b68b9823ac0f1346a9ecc504355955f Reviewed-by: Rafael Roquetto <rafael.roquetto@kdab.com> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
@@ -340,7 +340,7 @@
|
|||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Start</string>
|
<string>Start...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@@ -389,7 +389,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="manageAVDPushButton">
|
<widget class="QPushButton" name="manageAVDPushButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Start AVD Manager</string>
|
<string>Start AVD Manager...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@@ -408,7 +408,7 @@
|
|||||||
<item row="1" column="1">
|
<item row="1" column="1">
|
||||||
<widget class="QPushButton" name="AVDAddPushButton">
|
<widget class="QPushButton" name="AVDAddPushButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Add</string>
|
<string>Add...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|||||||
@@ -79,14 +79,14 @@ To do this, you type this shortcut and a space in the Locator entry field, and t
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="addButton">
|
<widget class="QPushButton" name="addButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Add</string>
|
<string>Add...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="editButton">
|
<widget class="QPushButton" name="editButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Edit</string>
|
<string>Edit...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="addButton">
|
<widget class="QPushButton" name="addButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Add</string>
|
<string>Add...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Edit</string>
|
<string>Edit...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|||||||
@@ -115,7 +115,7 @@ Add, modify, and remove document filters, which determine the documentation set
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="filterAddButton">
|
<widget class="QPushButton" name="filterAddButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Add</string>
|
<string>Add...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|||||||
@@ -305,7 +305,7 @@ void DeviceSettingsWidget::currentDeviceChanged(int index)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (device->canCreateProcessModel()) {
|
if (device->canCreateProcessModel()) {
|
||||||
QPushButton * const button = new QPushButton(tr("Show Running Processes"));
|
QPushButton * const button = new QPushButton(tr("Show Running Processes..."));
|
||||||
m_additionalActionButtons << button;
|
m_additionalActionButtons << button;
|
||||||
connect(button, SIGNAL(clicked()), SLOT(handleProcessListRequested()));
|
connect(button, SIGNAL(clicked()), SLOT(handleProcessListRequested()));
|
||||||
m_ui->buttonsLayout->insertWidget(m_ui->buttonsLayout->count() - 1, button);
|
m_ui->buttonsLayout->insertWidget(m_ui->buttonsLayout->count() - 1, button);
|
||||||
|
|||||||
@@ -170,7 +170,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="createCertificateButton">
|
<widget class="QPushButton" name="createCertificateButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Create Certificate</string>
|
<string>Create Certificate...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@@ -202,21 +202,21 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="requestDbTkButton">
|
<widget class="QPushButton" name="requestDbTkButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Request</string>
|
<string>Request...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="importDbTkButton">
|
<widget class="QPushButton" name="importDbTkButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Import</string>
|
<string>Import...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="editDbTkButton">
|
<widget class="QPushButton" name="editDbTkButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Edit</string>
|
<string>Edit...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="addConfigButton">
|
<widget class="QPushButton" name="addConfigButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Add</string>
|
<string>Add...</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|||||||
Reference in New Issue
Block a user