forked from qt-creator/qt-creator
Fix tooltips, add lacking dots
Change-Id: Id54a11b6868d5033fd1ecfd6324b7e50b94e305c Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
This commit is contained in:
@@ -75,35 +75,35 @@ void PluginErrorView::update(PluginSpec *spec)
|
|||||||
switch (spec->state()) {
|
switch (spec->state()) {
|
||||||
case PluginSpec::Invalid:
|
case PluginSpec::Invalid:
|
||||||
text = tr("Invalid");
|
text = tr("Invalid");
|
||||||
tooltip = tr("Description file found, but error on read");
|
tooltip = tr("Description file found, but error on read.");
|
||||||
break;
|
break;
|
||||||
case PluginSpec::Read:
|
case PluginSpec::Read:
|
||||||
text = tr("Read");
|
text = tr("Read");
|
||||||
tooltip = tr("Description successfully read");
|
tooltip = tr("Description successfully read.");
|
||||||
break;
|
break;
|
||||||
case PluginSpec::Resolved:
|
case PluginSpec::Resolved:
|
||||||
text = tr("Resolved");
|
text = tr("Resolved");
|
||||||
tooltip = tr("Dependencies are successfully resolved");
|
tooltip = tr("Dependencies are successfully resolved.");
|
||||||
break;
|
break;
|
||||||
case PluginSpec::Loaded:
|
case PluginSpec::Loaded:
|
||||||
text = tr("Loaded");
|
text = tr("Loaded");
|
||||||
tooltip = tr("Library is loaded");
|
tooltip = tr("Library is loaded.");
|
||||||
break;
|
break;
|
||||||
case PluginSpec::Initialized:
|
case PluginSpec::Initialized:
|
||||||
text = tr("Initialized");
|
text = tr("Initialized");
|
||||||
tooltip = tr("Plugin's initialization function succeeded");
|
tooltip = tr("Plugin's initialization function succeeded.");
|
||||||
break;
|
break;
|
||||||
case PluginSpec::Running:
|
case PluginSpec::Running:
|
||||||
text = tr("Running");
|
text = tr("Running");
|
||||||
tooltip = tr("Plugin successfully loaded and running");
|
tooltip = tr("Plugin successfully loaded and running.");
|
||||||
break;
|
break;
|
||||||
case PluginSpec::Stopped:
|
case PluginSpec::Stopped:
|
||||||
text = tr("Stopped");
|
text = tr("Stopped");
|
||||||
tooltip = tr("Plugin was shut down");
|
tooltip = tr("Plugin was shut down.");
|
||||||
break;
|
break;
|
||||||
case PluginSpec::Deleted:
|
case PluginSpec::Deleted:
|
||||||
text = tr("Deleted");
|
text = tr("Deleted");
|
||||||
tooltip = tr("Plugin ended its life cycle and was deleted");
|
tooltip = tr("Plugin ended its life cycle and was deleted.");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -84,7 +84,7 @@ ContextPaneWidgetImage::ContextPaneWidgetImage(QWidget *parent, bool borderImage
|
|||||||
uiBorderImage->setupUi(this);
|
uiBorderImage->setupUi(this);
|
||||||
m_fileWidget = uiBorderImage->fileWidget;
|
m_fileWidget = uiBorderImage->fileWidget;
|
||||||
m_sizeLabel = uiBorderImage->sizeLabel;
|
m_sizeLabel = uiBorderImage->sizeLabel;
|
||||||
uiBorderImage->label->setToolTip(tr("double click for preview"));
|
uiBorderImage->label->setToolTip(tr("Double click for preview."));
|
||||||
uiBorderImage->label->installEventFilter(labelFilter);
|
uiBorderImage->label->installEventFilter(labelFilter);
|
||||||
|
|
||||||
|
|
||||||
@@ -103,7 +103,7 @@ ContextPaneWidgetImage::ContextPaneWidgetImage(QWidget *parent, bool borderImage
|
|||||||
} else {
|
} else {
|
||||||
ui = new Ui::ContextPaneWidgetImage;
|
ui = new Ui::ContextPaneWidgetImage;
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
ui->label->setToolTip(tr("double click for preview"));
|
ui->label->setToolTip(tr("Double click for preview."));
|
||||||
ui->label->installEventFilter(labelFilter);
|
ui->label->installEventFilter(labelFilter);
|
||||||
m_fileWidget = ui->fileWidget;
|
m_fileWidget = ui->fileWidget;
|
||||||
m_sizeLabel = ui->sizeLabel;
|
m_sizeLabel = ui->sizeLabel;
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
<item row="1" column="1">
|
<item row="1" column="1">
|
||||||
<widget class="QRadioButton" name="stretchRadioButton">
|
<widget class="QRadioButton" name="stretchRadioButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>The image is scaled to fit</string>
|
<string>The image is scaled to fit.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
@@ -77,7 +77,7 @@
|
|||||||
<item row="1" column="2">
|
<item row="1" column="2">
|
||||||
<widget class="QRadioButton" name="horizontalStretchRadioButton">
|
<widget class="QRadioButton" name="horizontalStretchRadioButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>The image is stretched horizontally and tiled vertically</string>
|
<string>The image is stretched horizontally and tiled vertically.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
<item row="1" column="3">
|
<item row="1" column="3">
|
||||||
<widget class="QRadioButton" name="verticalStretchRadioButton">
|
<widget class="QRadioButton" name="verticalStretchRadioButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>The image is stretched vertically and tiled horizontally</string>
|
<string>The image is stretched vertically and tiled horizontally.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
@@ -117,7 +117,7 @@
|
|||||||
<item row="2" column="1">
|
<item row="2" column="1">
|
||||||
<widget class="QRadioButton" name="tileRadioButton">
|
<widget class="QRadioButton" name="tileRadioButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>The image is duplicated horizontally and vertically</string>
|
<string>The image is duplicated horizontally and vertically.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
@@ -137,7 +137,7 @@
|
|||||||
<item row="2" column="2">
|
<item row="2" column="2">
|
||||||
<widget class="QRadioButton" name="preserveAspectFitRadioButton">
|
<widget class="QRadioButton" name="preserveAspectFitRadioButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>The image is scaled uniformly to fit without cropping</string>
|
<string>The image is scaled uniformly to fit without cropping.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
@@ -157,7 +157,7 @@
|
|||||||
<item row="2" column="3">
|
<item row="2" column="3">
|
||||||
<widget class="QRadioButton" name="cropAspectFitRadioButton">
|
<widget class="QRadioButton" name="cropAspectFitRadioButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>The image is scaled uniformly to fill, cropping if necessary</string>
|
<string>The image is scaled uniformly to fill, cropping if necessary.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
|
|||||||
@@ -54,7 +54,7 @@
|
|||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Play simulation</string>
|
<string>Play simulation.</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Type of easing curve</string>
|
<string>Type of easing curve.</string>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@@ -164,7 +164,7 @@
|
|||||||
</sizepolicy>
|
</sizepolicy>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Acceleration or deceleration of easing curve</string>
|
<string>Acceleration or deceleration of easing curve.</string>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@@ -207,7 +207,7 @@
|
|||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Duration of animation</string>
|
<string>Duration of animation.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="specialValueText">
|
<property name="specialValueText">
|
||||||
<string>INVALID</string>
|
<string>INVALID</string>
|
||||||
@@ -251,7 +251,7 @@
|
|||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Amplitude of elastic and bounce easing curves</string>
|
<string>Amplitude of elastic and bounce easing curves.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="specialValueText">
|
<property name="specialValueText">
|
||||||
<string>INVALID</string>
|
<string>INVALID</string>
|
||||||
@@ -292,7 +292,7 @@
|
|||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Easing period of an elastic curve</string>
|
<string>Easing period of an elastic curve.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="specialValueText">
|
<property name="specialValueText">
|
||||||
<string>INVALID</string>
|
<string>INVALID</string>
|
||||||
@@ -333,7 +333,7 @@
|
|||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Easing overshoot for a back curve</string>
|
<string>Easing overshoot for a back curve.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="specialValueText">
|
<property name="specialValueText">
|
||||||
<string>INVALID</string>
|
<string>INVALID</string>
|
||||||
|
|||||||
@@ -248,7 +248,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QRadioButton" name="ministroOption">
|
<widget class="QRadioButton" name="ministroOption">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Use the external Ministro application to download and maintain Qt libraries.</string>
|
<string>Uses the external Ministro application to download and maintain Qt libraries.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Use Ministro service to install Qt</string>
|
<string>Use Ministro service to install Qt</string>
|
||||||
@@ -261,7 +261,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QRadioButton" name="temporaryQtOption">
|
<widget class="QRadioButton" name="temporaryQtOption">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Push local Qt libraries to device. You must have Qt libraries compiled for that platform.
|
<string>Pushes local Qt libraries to device. You must have Qt libraries compiled for that platform.
|
||||||
The APK will not be usable on any other device.</string>
|
The APK will not be usable on any other device.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QRadioButton" name="ministroOption">
|
<widget class="QRadioButton" name="ministroOption">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Use the external Ministro application to download and maintain Qt libraries.</string>
|
<string>Uses the external Ministro application to download and maintain Qt libraries.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Use Ministro service to install Qt</string>
|
<string>Use Ministro service to install Qt</string>
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QRadioButton" name="temporaryQtOption">
|
<widget class="QRadioButton" name="temporaryQtOption">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Push local Qt libraries to device. You must have Qt libraries compiled for that platform.
|
<string>Pushes local Qt libraries to device. You must have Qt libraries compiled for that platform.
|
||||||
The APK will not be usable on any other device.</string>
|
The APK will not be usable on any other device.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
<item row="0" column="0" colspan="2">
|
<item row="0" column="0" colspan="2">
|
||||||
<widget class="QPushButton" name="readInfoPushButton">
|
<widget class="QPushButton" name="readInfoPushButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Automatically check required Qt libraries from compiled application</string>
|
<string>Automatically check required Qt libraries from compiled application.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Read information from application (must be compiled)</string>
|
<string>Read information from application (must be compiled)</string>
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
<item row="2" column="1">
|
<item row="2" column="1">
|
||||||
<widget class="QCheckBox" name="isLocalCheckBox">
|
<widget class="QCheckBox" name="isLocalCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Perform a local commit in a bound branch.
|
<string>Performs a local commit in a bound branch.
|
||||||
Local commits are not pushed to the master branch until a normal commit is performed.</string>
|
Local commits are not pushed to the master branch until a normal commit is performed.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ This flag will allow branch to proceed.</string>
|
|||||||
<item row="1" column="0" colspan="2">
|
<item row="1" column="0" colspan="2">
|
||||||
<widget class="QCheckBox" name="stackedCheckBox">
|
<widget class="QCheckBox" name="stackedCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Create a stacked branch referring to the source branch.
|
<string>Creates a stacked branch referring to the source branch.
|
||||||
The new branch will depend on the availability of the source branch for all operations.</string>
|
The new branch will depend on the availability of the source branch for all operations.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@@ -60,7 +60,7 @@ The new branch will depend on the availability of the source branch for all oper
|
|||||||
<item row="2" column="0" colspan="2">
|
<item row="2" column="0" colspan="2">
|
||||||
<widget class="QCheckBox" name="standAloneCheckBox">
|
<widget class="QCheckBox" name="standAloneCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Do not use a shared repository, even if available.</string>
|
<string>Does not use a shared repository, even if available.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Standalone</string>
|
<string>Standalone</string>
|
||||||
@@ -77,7 +77,7 @@ The new branch will depend on the availability of the source branch for all oper
|
|||||||
<item row="4" column="0" colspan="2">
|
<item row="4" column="0" colspan="2">
|
||||||
<widget class="QCheckBox" name="switchCheckBox">
|
<widget class="QCheckBox" name="switchCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Switch the checkout in the current directory to the new branch.</string>
|
<string>Switches the checkout in the current directory to the new branch.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Switch checkout</string>
|
<string>Switch checkout</string>
|
||||||
@@ -87,7 +87,7 @@ The new branch will depend on the availability of the source branch for all oper
|
|||||||
<item row="5" column="0" colspan="2">
|
<item row="5" column="0" colspan="2">
|
||||||
<widget class="QCheckBox" name="hardlinkCheckBox">
|
<widget class="QCheckBox" name="hardlinkCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Hard-link working tree files where possible.</string>
|
<string>Hard-links working tree files where possible.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Hardlink</string>
|
<string>Hardlink</string>
|
||||||
@@ -97,7 +97,7 @@ The new branch will depend on the availability of the source branch for all oper
|
|||||||
<item row="6" column="0" colspan="2">
|
<item row="6" column="0" colspan="2">
|
||||||
<widget class="QCheckBox" name="noTreeCheckBox">
|
<widget class="QCheckBox" name="noTreeCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Create a branch without a working-tree.</string>
|
<string>Creates a branch without a working-tree.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>No working-tree</string>
|
<string>No working-tree</string>
|
||||||
|
|||||||
@@ -47,7 +47,7 @@
|
|||||||
<item row="2" column="0">
|
<item row="2" column="0">
|
||||||
<widget class="QRadioButton" name="urlButton">
|
<widget class="QRadioButton" name="urlButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>For example: https://[user[:pass]@]host[:port]/[path]</string>
|
<string>For example: 'https://[user[:pass]@]host[:port]/[path]'.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Specify URL:</string>
|
<string>Specify URL:</string>
|
||||||
@@ -60,7 +60,7 @@
|
|||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>For example: https://[user[:pass]@]host[:port]/[path]</string>
|
<string>For example: 'https://[user[:pass]@]host[:port]/[path]'.</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
@@ -86,7 +86,7 @@
|
|||||||
<item row="1" column="0" colspan="2">
|
<item row="1" column="0" colspan="2">
|
||||||
<widget class="QCheckBox" name="overwriteCheckBox">
|
<widget class="QCheckBox" name="overwriteCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Ignore differences between branches and overwrite
|
<string>Ignores differences between branches and overwrites
|
||||||
unconditionally.</string>
|
unconditionally.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@@ -108,7 +108,7 @@ This flag will allow push to proceed.</string>
|
|||||||
<item row="4" column="0" colspan="2">
|
<item row="4" column="0" colspan="2">
|
||||||
<widget class="QCheckBox" name="createPrefixCheckBox">
|
<widget class="QCheckBox" name="createPrefixCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Create the path leading up to the branch if it does not already exist.</string>
|
<string>Creates the path leading up to the branch if it does not already exist.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Create prefix</string>
|
<string>Create prefix</string>
|
||||||
@@ -128,7 +128,7 @@ This flag will allow push to proceed.</string>
|
|||||||
<item row="2" column="0" colspan="2">
|
<item row="2" column="0" colspan="2">
|
||||||
<widget class="QCheckBox" name="localCheckBox">
|
<widget class="QCheckBox" name="localCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Perform a local pull in a bound branch.
|
<string>Performs a local pull in a bound branch.
|
||||||
Local pulls are not applied to the master branch.</string>
|
Local pulls are not applied to the master branch.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
|||||||
@@ -193,7 +193,7 @@
|
|||||||
<item row="5" column="0">
|
<item row="5" column="0">
|
||||||
<widget class="QCheckBox" name="autoAssignActivityCheckBox">
|
<widget class="QCheckBox" name="autoAssignActivityCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Check this if you have a trigger that renames the activity automatically. You will not be prompted for activity name</string>
|
<string>Check this if you have a trigger that renames the activity automatically. You will not be prompted for activity name.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Aut&o assign activity names</string>
|
<string>Aut&o assign activity names</string>
|
||||||
@@ -227,7 +227,7 @@
|
|||||||
<item row="9" column="1">
|
<item row="9" column="1">
|
||||||
<widget class="QLineEdit" name="indexOnlyVOBsEdit">
|
<widget class="QLineEdit" name="indexOnlyVOBsEdit">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>VOBs list, separated by comma. Indexer will only traverse the specified VOBs. If left blank, all active VOBs will be indexed</string>
|
<string>VOBs list, separated by comma. Indexer will only traverse the specified VOBs. If left blank, all active VOBs will be indexed.</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|||||||
@@ -260,7 +260,7 @@ CMakeRunConfigurationWidget::CMakeRunConfigurationWidget(CMakeRunConfiguration *
|
|||||||
m_workingDirectoryEdit->setPromptDialogTitle(tr("Select Working Directory"));
|
m_workingDirectoryEdit->setPromptDialogTitle(tr("Select Working Directory"));
|
||||||
|
|
||||||
QToolButton *resetButton = new QToolButton();
|
QToolButton *resetButton = new QToolButton();
|
||||||
resetButton->setToolTip(tr("Reset to default"));
|
resetButton->setToolTip(tr("Reset to default."));
|
||||||
resetButton->setIcon(QIcon(QLatin1String(Core::Constants::ICON_RESET)));
|
resetButton->setIcon(QIcon(QLatin1String(Core::Constants::ICON_RESET)));
|
||||||
|
|
||||||
QHBoxLayout *boxlayout = new QHBoxLayout();
|
QHBoxLayout *boxlayout = new QHBoxLayout();
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="addButton">
|
<widget class="QPushButton" name="addButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Add tool</string>
|
<string>Add tool.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Add</string>
|
<string>Add</string>
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="removeButton">
|
<widget class="QPushButton" name="removeButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Remove tool</string>
|
<string>Remove tool.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Remove</string>
|
<string>Remove</string>
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="revertButton">
|
<widget class="QPushButton" name="revertButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Revert tool to default</string>
|
<string>Revert tool to default.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Reset</string>
|
<string>Reset</string>
|
||||||
@@ -149,7 +149,7 @@
|
|||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string><html><head/><body>
|
<string><html><head/><body>
|
||||||
<p>What to do with the executable's standard output.
|
<p>What to do with the executable's standard output.
|
||||||
<ul><li>Ignore: Do nothing with it</li><li>Show in pane: Show it in the general output pane</li><li>Replace selection: Replace the current selection in the current document with it</li></ul></p></body></html>
|
<ul><li>Ignore: Do nothing with it.</li><li>Show in pane: Show it in the general output pane.</li><li>Replace selection: Replace the current selection in the current document with it.</li></ul></p></body></html>
|
||||||
</string>
|
</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@@ -181,9 +181,9 @@
|
|||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string><html><head><body>
|
<string><html><head><body>
|
||||||
<p >What to do with the executable's standard error output.</p>
|
<p >What to do with the executable's standard error output.</p>
|
||||||
<ul><li>Ignore: Do nothing with it</li>
|
<ul><li>Ignore: Do nothing with it.</li>
|
||||||
<li>Show in pane: Show it in the general output pane</li>
|
<li>Show in pane: Show it in the general output pane.</li>
|
||||||
<li>Replace selection: Replace the current selection in the current document with it</li>
|
<li>Replace selection: Replace the current selection in the current document with it.</li>
|
||||||
</ul></body></html></string>
|
</ul></body></html></string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
|||||||
@@ -232,7 +232,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="autoSaveCheckBox">
|
<widget class="QCheckBox" name="autoSaveCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Automatically create temporary copies of modified files. If Qt Creator is restarted after a crash or power failure, it asks whether to recover the auto-saved content.</string>
|
<string>Automatically creates temporary copies of modified files. If Qt Creator is restarted after a crash or power failure, it asks whether to recover the auto-saved content.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Auto-save modified files</string>
|
<string>Auto-save modified files</string>
|
||||||
|
|||||||
@@ -205,7 +205,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="enableDoxygenCheckBox">
|
<widget class="QCheckBox" name="enableDoxygenCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Automatically creates a Doxygen comment upon pressing enter after a /**, /*!, //! or ///</string>
|
<string>Automatically creates a Doxygen comment upon pressing enter after a '/**', '/*!', '//!' or '///'.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Enable Doxygen blocks</string>
|
<string>Enable Doxygen blocks</string>
|
||||||
@@ -245,7 +245,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="leadingAsterisksCheckBox">
|
<widget class="QCheckBox" name="leadingAsterisksCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Adds leading asterisks when continuing Qt (/*!) and Java (/**) style comments on new lines.</string>
|
<string>Adds leading asterisks when continuing Qt '/*!' and Java '/**' style comments on new lines.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Add leading asterisks</string>
|
<string>Add leading asterisks</string>
|
||||||
|
|||||||
@@ -44,7 +44,7 @@
|
|||||||
<item row="1" column="0" colspan="2">
|
<item row="1" column="0" colspan="2">
|
||||||
<widget class="QCheckBox" name="consoleCheckBox">
|
<widget class="QCheckBox" name="consoleCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string><html><head/><body><p>Use CDB's native console instead of Qt Creator's console for console applications. The native console does not prompt on application exit. It is suitable for diagnosing cases in which the application does not start up properly in Qt Creator's console and the subsequent attach fails.</p></body></html></string>
|
<string><html><head/><body><p>Uses CDB's native console instead of Qt Creator's console for console applications. The native console does not prompt on application exit. It is suitable for diagnosing cases in which the application does not start up properly in Qt Creator's console and the subsequent attach fails.</p></body></html></string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Use CDB &console</string>
|
<string>Use CDB &console</string>
|
||||||
@@ -82,7 +82,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="breakpointCorrectionCheckBox">
|
<widget class="QCheckBox" name="breakpointCorrectionCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string><html><head/><body><p>Attempt to correct the location of a breakpoint based on file and line number should it be in a comment or in a line for which no code is generated. The correction is based on the code model.</p></body></html></string>
|
<string><html><head/><body><p>Attempts to correct the location of a breakpoint based on file and line number should it be in a comment or in a line for which no code is generated. The correction is based on the code model.</p></body></html></string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Correct breakpoint location</string>
|
<string>Correct breakpoint location</string>
|
||||||
|
|||||||
@@ -58,14 +58,14 @@ CommonOptionsPageWidget::CommonOptionsPageWidget
|
|||||||
checkBoxUseAlternatingRowColors->setText(tr("Use alternating row colors in debug views"));
|
checkBoxUseAlternatingRowColors->setText(tr("Use alternating row colors in debug views"));
|
||||||
|
|
||||||
checkBoxFontSizeFollowsEditor = new QCheckBox(behaviorBox);
|
checkBoxFontSizeFollowsEditor = new QCheckBox(behaviorBox);
|
||||||
checkBoxFontSizeFollowsEditor->setToolTip(tr("Change the font size in the debugger views when the font size in the main editor changes."));
|
checkBoxFontSizeFollowsEditor->setToolTip(tr("Changes the font size in the debugger views when the font size in the main editor changes."));
|
||||||
checkBoxFontSizeFollowsEditor->setText(tr("Debugger font size follows main editor"));
|
checkBoxFontSizeFollowsEditor->setText(tr("Debugger font size follows main editor"));
|
||||||
|
|
||||||
checkBoxUseToolTipsInMainEditor = new QCheckBox(behaviorBox);
|
checkBoxUseToolTipsInMainEditor = new QCheckBox(behaviorBox);
|
||||||
checkBoxUseToolTipsInMainEditor->setText(tr("Use tooltips in main editor while debugging"));
|
checkBoxUseToolTipsInMainEditor->setText(tr("Use tooltips in main editor while debugging"));
|
||||||
|
|
||||||
checkBoxListSourceFiles = new QCheckBox(behaviorBox);
|
checkBoxListSourceFiles = new QCheckBox(behaviorBox);
|
||||||
checkBoxListSourceFiles->setToolTip(tr("Populate the source file view automatically. This might slow down debugger startup considerably."));
|
checkBoxListSourceFiles->setToolTip(tr("Populates the source file view automatically. This might slow down debugger startup considerably."));
|
||||||
checkBoxListSourceFiles->setText(tr("Populate source file view automatically"));
|
checkBoxListSourceFiles->setText(tr("Populate source file view automatically"));
|
||||||
|
|
||||||
checkBoxCloseBuffersOnExit = new QCheckBox(behaviorBox);
|
checkBoxCloseBuffersOnExit = new QCheckBox(behaviorBox);
|
||||||
@@ -82,20 +82,20 @@ CommonOptionsPageWidget::CommonOptionsPageWidget
|
|||||||
checkBoxBringToForegroundOnInterrrupt->setText(tr("Bring Qt Creator to foreground when application interrupts"));
|
checkBoxBringToForegroundOnInterrrupt->setText(tr("Bring Qt Creator to foreground when application interrupts"));
|
||||||
|
|
||||||
checkBoxShowQmlObjectTree = new QCheckBox(behaviorBox);
|
checkBoxShowQmlObjectTree = new QCheckBox(behaviorBox);
|
||||||
checkBoxShowQmlObjectTree->setToolTip(tr("Show QML object tree in Locals & Expressions when connected and not stepping."));
|
checkBoxShowQmlObjectTree->setToolTip(tr("Shows QML object tree in Locals & Expressions when connected and not stepping."));
|
||||||
checkBoxShowQmlObjectTree->setText(tr("Show QML object tree"));
|
checkBoxShowQmlObjectTree->setText(tr("Show QML object tree"));
|
||||||
|
|
||||||
checkBoxBreakpointsFullPath = new QCheckBox(behaviorBox);
|
checkBoxBreakpointsFullPath = new QCheckBox(behaviorBox);
|
||||||
checkBoxBreakpointsFullPath->setToolTip(tr("Enable a full file path in breakpoints by default also for GDB."));
|
checkBoxBreakpointsFullPath->setToolTip(tr("Enables a full file path in breakpoints by default also for GDB."));
|
||||||
checkBoxBreakpointsFullPath->setText(tr("Set breakpoints using a full absolute path"));
|
checkBoxBreakpointsFullPath->setText(tr("Set breakpoints using a full absolute path"));
|
||||||
|
|
||||||
checkBoxRegisterForPostMortem = new QCheckBox(behaviorBox);
|
checkBoxRegisterForPostMortem = new QCheckBox(behaviorBox);
|
||||||
checkBoxRegisterForPostMortem->setToolTip(tr("Register Qt Creator for debugging crashed applications."));
|
checkBoxRegisterForPostMortem->setToolTip(tr("Registers Qt Creator for debugging crashed applications."));
|
||||||
checkBoxRegisterForPostMortem->setText(tr("Use Qt Creator for post-mortem debugging"));
|
checkBoxRegisterForPostMortem->setText(tr("Use Qt Creator for post-mortem debugging"));
|
||||||
|
|
||||||
checkBoxWarnOnReleaseBuilds = new QCheckBox(behaviorBox);
|
checkBoxWarnOnReleaseBuilds = new QCheckBox(behaviorBox);
|
||||||
checkBoxWarnOnReleaseBuilds->setText(tr("Warn when debugging \"Release\" builds"));
|
checkBoxWarnOnReleaseBuilds->setText(tr("Warn when debugging \"Release\" builds"));
|
||||||
checkBoxWarnOnReleaseBuilds->setToolTip(tr("Show a warning when starting the debugger "
|
checkBoxWarnOnReleaseBuilds->setToolTip(tr("Shows a warning when starting the debugger "
|
||||||
"on a binary with insufficient debug information."));
|
"on a binary with insufficient debug information."));
|
||||||
|
|
||||||
labelMaximalStackDepth = new QLabel(tr("Maximum stack depth:"), behaviorBox);
|
labelMaximalStackDepth = new QLabel(tr("Maximum stack depth:"), behaviorBox);
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ GdbOptionsPageWidget::GdbOptionsPageWidget(QWidget *parent)
|
|||||||
checkBoxLoadGdbDumpers->setText(GdbOptionsPage::tr("Load system GDB pretty printers"));
|
checkBoxLoadGdbDumpers->setText(GdbOptionsPage::tr("Load system GDB pretty printers"));
|
||||||
checkBoxLoadGdbDumpers->setToolTip(GdbOptionsPage::tr(
|
checkBoxLoadGdbDumpers->setToolTip(GdbOptionsPage::tr(
|
||||||
"Uses the default GDB pretty printers installed in your "
|
"Uses the default GDB pretty printers installed in your "
|
||||||
"system or linked to the libraries your application uses.\n"));
|
"system or linked to the libraries your application uses."));
|
||||||
|
|
||||||
checkBoxIntelFlavor = new QCheckBox(groupBoxGeneral);
|
checkBoxIntelFlavor = new QCheckBox(groupBoxGeneral);
|
||||||
checkBoxIntelFlavor->setText(GdbOptionsPage::tr("Use Intel style disassembly"));
|
checkBoxIntelFlavor->setText(GdbOptionsPage::tr("Use Intel style disassembly"));
|
||||||
|
|||||||
@@ -187,7 +187,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="labelTabulator">
|
<widget class="QLabel" name="labelTabulator">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Vim tabstop option</string>
|
<string>Vim tabstop option.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Tabulator size:</string>
|
<string>Tabulator size:</string>
|
||||||
|
|||||||
@@ -173,7 +173,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="trackButton">
|
<widget class="QPushButton" name="trackButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Sets current branch to track the selected one.</string>
|
<string>Set current branch to track the selected one.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Track</string>
|
<string>&Track</string>
|
||||||
|
|||||||
@@ -268,7 +268,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="defaultPageButton">
|
<widget class="QPushButton" name="defaultPageButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Reset to default</string>
|
<string>Reset to default.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Reset</string>
|
<string>Reset</string>
|
||||||
@@ -291,7 +291,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="m_returnOnClose">
|
<widget class="QCheckBox" name="m_returnOnClose">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Switch to editor context after last help page is closed.</string>
|
<string>Switches to editor context after last help page is closed.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Return to editor on closing the last page</string>
|
<string>Return to editor on closing the last page</string>
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
<item row="2" column="0">
|
<item row="2" column="0">
|
||||||
<widget class="QRadioButton" name="urlButton">
|
<widget class="QRadioButton" name="urlButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>e.g. https://[user[:pass]@]host[:port]/[path]</string>
|
<string>For example: 'https://[user[:pass]@]host[:port]/[path]'.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Specify URL:</string>
|
<string>Specify URL:</string>
|
||||||
@@ -56,7 +56,7 @@
|
|||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>e.g. https://[user[:pass]@]host[:port]/[path]</string>
|
<string>For example: 'https://[user[:pass]@]host[:port]/[path]'.</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|||||||
@@ -495,7 +495,7 @@ CustomToolChainConfigWidget::CustomToolChainConfigWidget(CustomToolChain *tc) :
|
|||||||
QHBoxLayout *parserLayout = new QHBoxLayout(parserLayoutWidget);
|
QHBoxLayout *parserLayout = new QHBoxLayout(parserLayoutWidget);
|
||||||
parserLayout->setContentsMargins(0, 0, 0, 0);
|
parserLayout->setContentsMargins(0, 0, 0, 0);
|
||||||
m_predefinedMacros->setTabChangesFocus(true);
|
m_predefinedMacros->setTabChangesFocus(true);
|
||||||
m_predefinedMacros->setToolTip(tr("Each line defines a macro. Format is MACRO[=VALUE]"));
|
m_predefinedMacros->setToolTip(tr("Each line defines a macro. Format is MACRO[=VALUE]."));
|
||||||
m_headerPaths->setTabChangesFocus(true);
|
m_headerPaths->setTabChangesFocus(true);
|
||||||
m_headerPaths->setToolTip(tr("Each line adds a global header lookup path."));
|
m_headerPaths->setToolTip(tr("Each line adds a global header lookup path."));
|
||||||
m_cxx11Flags->setToolTip(tr("Comma-separated list of flags that turn on C++11 support."));
|
m_cxx11Flags->setToolTip(tr("Comma-separated list of flags that turn on C++11 support."));
|
||||||
|
|||||||
@@ -175,7 +175,7 @@
|
|||||||
<item row="6" column="0">
|
<item row="6" column="0">
|
||||||
<widget class="QCheckBox" name="promptToStopRunControlCheckBox">
|
<widget class="QCheckBox" name="promptToStopRunControlCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Ask before terminating the running application in response to clicking the stop button in Application Output.</string>
|
<string>Asks before terminating the running application in response to clicking the stop button in Application Output.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Always ask before stopping applications</string>
|
<string>Always ask before stopping applications</string>
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ void RemoveTaskHandler::handle(const ProjectExplorer::Task &task)
|
|||||||
QAction *RemoveTaskHandler::createAction(QObject *parent) const
|
QAction *RemoveTaskHandler::createAction(QObject *parent) const
|
||||||
{
|
{
|
||||||
QAction *removeAction = new QAction(tr("Remove", "Name of the action triggering the removetaskhandler"), parent);
|
QAction *removeAction = new QAction(tr("Remove", "Name of the action triggering the removetaskhandler"), parent);
|
||||||
removeAction->setToolTip(tr("Remove task from the task list"));
|
removeAction->setToolTip(tr("Remove task from the task list."));
|
||||||
removeAction->setShortcut(QKeySequence(QKeySequence::Delete));
|
removeAction->setShortcut(QKeySequence(QKeySequence::Delete));
|
||||||
removeAction->setShortcutContext(Qt::WidgetWithChildrenShortcut);
|
removeAction->setShortcutContext(Qt::WidgetWithChildrenShortcut);
|
||||||
return removeAction;
|
return removeAction;
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
<item row="1" column="0">
|
<item row="1" column="0">
|
||||||
<widget class="QCheckBox" name="autoLoadCheckBox">
|
<widget class="QCheckBox" name="autoLoadCheckBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Automatically restore the last session when Qt Creator is started.</string>
|
<string>Automatically restores the last session when Qt Creator is started.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Restore last session on startup</string>
|
<string>Restore last session on startup</string>
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ void VcsAnnotateTaskHandler::handle(const Task &task)
|
|||||||
QAction *VcsAnnotateTaskHandler::createAction(QObject *parent) const
|
QAction *VcsAnnotateTaskHandler::createAction(QObject *parent) const
|
||||||
{
|
{
|
||||||
QAction *vcsannotateAction = new QAction(tr("&Annotate"), parent);
|
QAction *vcsannotateAction = new QAction(tr("&Annotate"), parent);
|
||||||
vcsannotateAction->setToolTip(tr("Annotate using version control system"));
|
vcsannotateAction->setToolTip(tr("Annotate using version control system."));
|
||||||
return vcsannotateAction;
|
return vcsannotateAction;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ QWidget *ComponentAction::createWidget(QWidget *parent)
|
|||||||
{
|
{
|
||||||
QComboBox *comboBox = new QComboBox(parent);
|
QComboBox *comboBox = new QComboBox(parent);
|
||||||
comboBox->setMinimumWidth(120);
|
comboBox->setMinimumWidth(120);
|
||||||
comboBox->setToolTip(tr("Edit sub components defined in this file"));
|
comboBox->setToolTip(tr("Edit sub components defined in this file."));
|
||||||
comboBox->setModel(m_componentView->standardItemModel());
|
comboBox->setModel(m_componentView->standardItemModel());
|
||||||
comboBox->setCurrentIndex(-1);
|
comboBox->setCurrentIndex(-1);
|
||||||
connect(comboBox, SIGNAL(activated(int)), SLOT(emitCurrentComponentChanged(int)));
|
connect(comboBox, SIGNAL(activated(int)), SLOT(emitCurrentComponentChanged(int)));
|
||||||
|
|||||||
@@ -205,7 +205,7 @@ QList<QToolButton *> ItemLibraryWidget::createToolBarWidgets()
|
|||||||
buttons << new QToolButton();
|
buttons << new QToolButton();
|
||||||
buttons.first()->setText(tr("I "));
|
buttons.first()->setText(tr("I "));
|
||||||
buttons.first()->setIcon(QIcon(QLatin1String(Core::Constants::ICON_FILTER)));
|
buttons.first()->setIcon(QIcon(QLatin1String(Core::Constants::ICON_FILTER)));
|
||||||
buttons.first()->setToolTip(tr("Manage imports for components"));
|
buttons.first()->setToolTip(tr("Manage imports for components."));
|
||||||
buttons.first()->setPopupMode(QToolButton::InstantPopup);
|
buttons.first()->setPopupMode(QToolButton::InstantPopup);
|
||||||
QMenu * menu = new QMenu;
|
QMenu * menu = new QMenu;
|
||||||
QAction * basicQtAction = new QAction(menu);
|
QAction * basicQtAction = new QAction(menu);
|
||||||
|
|||||||
@@ -83,24 +83,24 @@ QList<QToolButton *> NavigatorWidget::createToolBarWidgets()
|
|||||||
|
|
||||||
buttons << new QToolButton();
|
buttons << new QToolButton();
|
||||||
buttons.last()->setIcon(QIcon(":/navigator/icon/arrowleft.png"));
|
buttons.last()->setIcon(QIcon(":/navigator/icon/arrowleft.png"));
|
||||||
buttons.last()->setToolTip(tr("Become first sibling of parent (CTRL + Left)"));
|
buttons.last()->setToolTip(tr("Become first sibling of parent (CTRL + Left)."));
|
||||||
buttons.last()->setShortcut(QKeySequence(Qt::Key_Left | Qt::CTRL));
|
buttons.last()->setShortcut(QKeySequence(Qt::Key_Left | Qt::CTRL));
|
||||||
connect(buttons.last(), SIGNAL(clicked()), this, SIGNAL(leftButtonClicked()));
|
connect(buttons.last(), SIGNAL(clicked()), this, SIGNAL(leftButtonClicked()));
|
||||||
buttons << new QToolButton();
|
buttons << new QToolButton();
|
||||||
buttons.last()->setIcon(QIcon(":/navigator/icon/arrowright.png"));
|
buttons.last()->setIcon(QIcon(":/navigator/icon/arrowright.png"));
|
||||||
buttons.last()->setToolTip(tr("Become child of first sibling (CTRL + Right)"));
|
buttons.last()->setToolTip(tr("Become child of first sibling (CTRL + Right)."));
|
||||||
buttons.last()->setShortcut(QKeySequence(Qt::Key_Right | Qt::CTRL));
|
buttons.last()->setShortcut(QKeySequence(Qt::Key_Right | Qt::CTRL));
|
||||||
connect(buttons.last(), SIGNAL(clicked()), this, SIGNAL(rightButtonClicked()));
|
connect(buttons.last(), SIGNAL(clicked()), this, SIGNAL(rightButtonClicked()));
|
||||||
|
|
||||||
buttons << new QToolButton();
|
buttons << new QToolButton();
|
||||||
buttons.last()->setIcon(QIcon(":/navigator/icon/arrowdown.png"));
|
buttons.last()->setIcon(QIcon(":/navigator/icon/arrowdown.png"));
|
||||||
buttons.last()->setToolTip(tr("Move down (CTRL + Down)"));
|
buttons.last()->setToolTip(tr("Move down (CTRL + Down)."));
|
||||||
buttons.last()->setShortcut(QKeySequence(Qt::Key_Down | Qt::CTRL));
|
buttons.last()->setShortcut(QKeySequence(Qt::Key_Down | Qt::CTRL));
|
||||||
connect(buttons.last(), SIGNAL(clicked()), this, SIGNAL(downButtonClicked()));
|
connect(buttons.last(), SIGNAL(clicked()), this, SIGNAL(downButtonClicked()));
|
||||||
|
|
||||||
buttons << new QToolButton();
|
buttons << new QToolButton();
|
||||||
buttons.last()->setIcon(QIcon(":/navigator/icon/arrowup.png"));
|
buttons.last()->setIcon(QIcon(":/navigator/icon/arrowup.png"));
|
||||||
buttons.last()->setToolTip(tr("Move up (CTRL + Up)"));
|
buttons.last()->setToolTip(tr("Move up (CTRL + Up)."));
|
||||||
buttons.last()->setShortcut(QKeySequence(Qt::Key_Up | Qt::CTRL));
|
buttons.last()->setShortcut(QKeySequence(Qt::Key_Up | Qt::CTRL));
|
||||||
connect(buttons.last(), SIGNAL(clicked()), this, SIGNAL(upButtonClicked()));
|
connect(buttons.last(), SIGNAL(clicked()), this, SIGNAL(upButtonClicked()));
|
||||||
|
|
||||||
|
|||||||
@@ -226,19 +226,19 @@ QWidget *QmlProfilerTraceView::createToolbar()
|
|||||||
|
|
||||||
QToolButton *buttonPrev= new QToolButton;
|
QToolButton *buttonPrev= new QToolButton;
|
||||||
buttonPrev->setIcon(QIcon(QLatin1String(":/qmlprofiler/ico_prev.png")));
|
buttonPrev->setIcon(QIcon(QLatin1String(":/qmlprofiler/ico_prev.png")));
|
||||||
buttonPrev->setToolTip(tr("Jump to previous event"));
|
buttonPrev->setToolTip(tr("Jump to previous event."));
|
||||||
connect(buttonPrev, SIGNAL(clicked()), this, SIGNAL(jumpToPrev()));
|
connect(buttonPrev, SIGNAL(clicked()), this, SIGNAL(jumpToPrev()));
|
||||||
connect(this, SIGNAL(enableToolbar(bool)), buttonPrev, SLOT(setEnabled(bool)));
|
connect(this, SIGNAL(enableToolbar(bool)), buttonPrev, SLOT(setEnabled(bool)));
|
||||||
|
|
||||||
QToolButton *buttonNext= new QToolButton;
|
QToolButton *buttonNext= new QToolButton;
|
||||||
buttonNext->setIcon(QIcon(QLatin1String(":/qmlprofiler/ico_next.png")));
|
buttonNext->setIcon(QIcon(QLatin1String(":/qmlprofiler/ico_next.png")));
|
||||||
buttonNext->setToolTip(tr("Jump to next event"));
|
buttonNext->setToolTip(tr("Jump to next event."));
|
||||||
connect(buttonNext, SIGNAL(clicked()), this, SIGNAL(jumpToNext()));
|
connect(buttonNext, SIGNAL(clicked()), this, SIGNAL(jumpToNext()));
|
||||||
connect(this, SIGNAL(enableToolbar(bool)), buttonNext, SLOT(setEnabled(bool)));
|
connect(this, SIGNAL(enableToolbar(bool)), buttonNext, SLOT(setEnabled(bool)));
|
||||||
|
|
||||||
QToolButton *buttonZoomControls = new QToolButton;
|
QToolButton *buttonZoomControls = new QToolButton;
|
||||||
buttonZoomControls->setIcon(QIcon(QLatin1String(":/qmlprofiler/ico_zoom.png")));
|
buttonZoomControls->setIcon(QIcon(QLatin1String(":/qmlprofiler/ico_zoom.png")));
|
||||||
buttonZoomControls->setToolTip(tr("Show zoom slider"));
|
buttonZoomControls->setToolTip(tr("Show zoom slider."));
|
||||||
buttonZoomControls->setCheckable(true);
|
buttonZoomControls->setCheckable(true);
|
||||||
buttonZoomControls->setChecked(false);
|
buttonZoomControls->setChecked(false);
|
||||||
connect(buttonZoomControls, SIGNAL(toggled(bool)), this, SIGNAL(showZoomSlider(bool)));
|
connect(buttonZoomControls, SIGNAL(toggled(bool)), this, SIGNAL(showZoomSlider(bool)));
|
||||||
@@ -246,7 +246,7 @@ QWidget *QmlProfilerTraceView::createToolbar()
|
|||||||
|
|
||||||
d->m_buttonRange = new QToolButton;
|
d->m_buttonRange = new QToolButton;
|
||||||
d->m_buttonRange->setIcon(QIcon(QLatin1String(":/qmlprofiler/ico_rangeselection.png")));
|
d->m_buttonRange->setIcon(QIcon(QLatin1String(":/qmlprofiler/ico_rangeselection.png")));
|
||||||
d->m_buttonRange->setToolTip(tr("Select range"));
|
d->m_buttonRange->setToolTip(tr("Select range."));
|
||||||
d->m_buttonRange->setCheckable(true);
|
d->m_buttonRange->setCheckable(true);
|
||||||
d->m_buttonRange->setChecked(false);
|
d->m_buttonRange->setChecked(false);
|
||||||
connect(d->m_buttonRange, SIGNAL(clicked(bool)), this, SLOT(toggleRangeMode(bool)));
|
connect(d->m_buttonRange, SIGNAL(clicked(bool)), this, SLOT(toggleRangeMode(bool)));
|
||||||
@@ -255,7 +255,7 @@ QWidget *QmlProfilerTraceView::createToolbar()
|
|||||||
|
|
||||||
d->m_buttonLock = new QToolButton;
|
d->m_buttonLock = new QToolButton;
|
||||||
d->m_buttonLock->setIcon(QIcon(QLatin1String(":/qmlprofiler/ico_selectionmode.png")));
|
d->m_buttonLock->setIcon(QIcon(QLatin1String(":/qmlprofiler/ico_selectionmode.png")));
|
||||||
d->m_buttonLock->setToolTip(tr("View event information on mouseover"));
|
d->m_buttonLock->setToolTip(tr("View event information on mouseover."));
|
||||||
d->m_buttonLock->setCheckable(true);
|
d->m_buttonLock->setCheckable(true);
|
||||||
d->m_buttonLock->setChecked(false);
|
d->m_buttonLock->setChecked(false);
|
||||||
connect(d->m_buttonLock, SIGNAL(clicked(bool)), this, SLOT(toggleLockMode(bool)));
|
connect(d->m_buttonLock, SIGNAL(clicked(bool)), this, SLOT(toggleLockMode(bool)));
|
||||||
|
|||||||
@@ -140,7 +140,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QLineEdit" name="portsLineEdit">
|
<widget class="QLineEdit" name="portsLineEdit">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>You can enter lists and ranges like this: 1024,1026-1028,1030</string>
|
<string>You can enter lists and ranges like this: '1024,1026-1028,1030'.</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|||||||
@@ -186,10 +186,10 @@ void BehaviorSettingsWidget::updateConstrainTooltipsBoxTooltip() const
|
|||||||
{
|
{
|
||||||
if (d->m_ui.constrainTooltipsBox->currentIndex() == 0) {
|
if (d->m_ui.constrainTooltipsBox->currentIndex() == 0) {
|
||||||
d->m_ui.constrainTooltipsBox->setToolTip(
|
d->m_ui.constrainTooltipsBox->setToolTip(
|
||||||
tr("Display context-sensitive help or type information on mouseover."));
|
tr("Displays context-sensitive help or type information on mouseover."));
|
||||||
} else {
|
} else {
|
||||||
d->m_ui.constrainTooltipsBox->setToolTip(
|
d->m_ui.constrainTooltipsBox->setToolTip(
|
||||||
tr("Display context-sensitive help or type information on Shift+Mouseover."));
|
tr("Displays context-sensitive help or type information on Shift+Mouseover."));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -360,7 +360,7 @@ Specifies how backspace interacts with indentation.
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="keyboardTooltips">
|
<widget class="QCheckBox" name="keyboardTooltips">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Press Alt to display context-sensitive help or type information as tooltips.</string>
|
<string>Pressing Alt displays context-sensitive help or type information as tooltips.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Show help tooltips using keyboard shortcut (Alt)</string>
|
<string>Show help tooltips using keyboard shortcut (Alt)</string>
|
||||||
|
|||||||
@@ -61,7 +61,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="eraseForegroundToolButton">
|
<widget class="QToolButton" name="eraseForegroundToolButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Erase foreground</string>
|
<string>Erase foreground.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>x</string>
|
<string>x</string>
|
||||||
@@ -107,7 +107,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="eraseBackgroundToolButton">
|
<widget class="QToolButton" name="eraseBackgroundToolButton">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Erase background</string>
|
<string>Erase background.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>x</string>
|
<string>x</string>
|
||||||
|
|||||||
@@ -97,7 +97,7 @@
|
|||||||
<item row="4" column="0">
|
<item row="4" column="0">
|
||||||
<widget class="QCheckBox" name="visualizeWhitespace">
|
<widget class="QCheckBox" name="visualizeWhitespace">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Show tabs and spaces.</string>
|
<string>Shows tabs and spaces.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Visualize whitespace</string>
|
<string>&Visualize whitespace</string>
|
||||||
|
|||||||
@@ -207,7 +207,7 @@ TextEditorSettings::TextEditorSettings(QObject *parent)
|
|||||||
tr("Reserved keywords of the programming language."),
|
tr("Reserved keywords of the programming language."),
|
||||||
Qt::darkYellow));
|
Qt::darkYellow));
|
||||||
formatDescr.append(FormatDescription(C_OPERATOR, tr("Operator"),
|
formatDescr.append(FormatDescription(C_OPERATOR, tr("Operator"),
|
||||||
tr("Operators. (For example operator++ operator-=)")));
|
tr("Operators (for example operator++ or operator-=).")));
|
||||||
formatDescr.append(FormatDescription(C_PREPROCESSOR, tr("Preprocessor"),
|
formatDescr.append(FormatDescription(C_PREPROCESSOR, tr("Preprocessor"),
|
||||||
tr("Preprocessor directives."), Qt::darkBlue));
|
tr("Preprocessor directives."), Qt::darkBlue));
|
||||||
formatDescr.append(FormatDescription(C_LABEL, tr("Label"), tr("Labels for goto statements."),
|
formatDescr.append(FormatDescription(C_LABEL, tr("Label"), tr("Labels for goto statements."),
|
||||||
@@ -220,7 +220,7 @@ TextEditorSettings::TextEditorSettings(QObject *parent)
|
|||||||
formatDescr.append(FormatDescription(C_DOXYGEN_TAG, tr("Doxygen Tag"), tr("Doxygen tags."),
|
formatDescr.append(FormatDescription(C_DOXYGEN_TAG, tr("Doxygen Tag"), tr("Doxygen tags."),
|
||||||
Qt::blue));
|
Qt::blue));
|
||||||
formatDescr.append(FormatDescription(C_VISUAL_WHITESPACE, tr("Visual Whitespace"),
|
formatDescr.append(FormatDescription(C_VISUAL_WHITESPACE, tr("Visual Whitespace"),
|
||||||
tr("Whitespace\nWill not be applied to whitespace "
|
tr("Whitespace.\nWill not be applied to whitespace "
|
||||||
"in comments and strings."), Qt::lightGray));
|
"in comments and strings."), Qt::lightGray));
|
||||||
formatDescr.append(FormatDescription(C_DISABLED_CODE, tr("Disabled Code"),
|
formatDescr.append(FormatDescription(C_DISABLED_CODE, tr("Disabled Code"),
|
||||||
tr("Code disabled by preprocessor directives.")));
|
tr("Code disabled by preprocessor directives.")));
|
||||||
|
|||||||
@@ -152,9 +152,9 @@
|
|||||||
<p>By default, only instruction read accesses will be counted ("Ir").</p>
|
<p>By default, only instruction read accesses will be counted ("Ir").</p>
|
||||||
<p>
|
<p>
|
||||||
With cache simulation, further event counters are enabled:
|
With cache simulation, further event counters are enabled:
|
||||||
<ul><li>Cache misses on instruction reads ("I1mr"/"I2mr")</li>
|
<ul><li>Cache misses on instruction reads ("I1mr"/"I2mr").</li>
|
||||||
<li>Data read accesses ("Dr") and related cache misses ("D1mr"/"D2mr")</li>
|
<li>Data read accesses ("Dr") and related cache misses ("D1mr"/"D2mr").</li>
|
||||||
<li>Data write accesses ("Dw") and related cache misses ("D1mw"/"D2mw")</li></ul>
|
<li>Data write accesses ("Dw") and related cache misses ("D1mw"/"D2mw").</li></ul>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
</body></html></string>
|
</body></html></string>
|
||||||
@@ -168,12 +168,12 @@ With cache simulation, further event counters are enabled:
|
|||||||
<widget class="QCheckBox" name="enableBranchSim">
|
<widget class="QCheckBox" name="enableBranchSim">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string><html><head/><body>
|
<string><html><head/><body>
|
||||||
<p>Do branch prediction simulation.</p>
|
<p>Does branch prediction simulation.</p>
|
||||||
<p>Further event counters are enabled: </p>
|
<p>Further event counters are enabled: </p>
|
||||||
<ul><li>Number of executed conditional branches and related predictor misses (
|
<ul><li>Number of executed conditional branches and related predictor misses (
|
||||||
"Bc"/"Bcm")</li>
|
"Bc"/"Bcm").</li>
|
||||||
<li>Executed indirect jumps and related misses of the jump address predictor (
|
<li>Executed indirect jumps and related misses of the jump address predictor (
|
||||||
"Bi"/"Bim")</li></ul></body></html></string>
|
"Bi"/"Bim").</li></ul></body></html></string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Enable branch prediction simulation</string>
|
<string>Enable branch prediction simulation</string>
|
||||||
@@ -183,7 +183,7 @@ With cache simulation, further event counters are enabled:
|
|||||||
<item row="2" column="0">
|
<item row="2" column="0">
|
||||||
<widget class="QCheckBox" name="collectSystime">
|
<widget class="QCheckBox" name="collectSystime">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Collect information for system call times.</string>
|
<string>Collects information for system call times.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Collect system call time</string>
|
<string>Collect system call time</string>
|
||||||
@@ -205,9 +205,6 @@ With cache simulation, further event counters are enabled:
|
|||||||
</item>
|
</item>
|
||||||
<item row="1" column="0">
|
<item row="1" column="0">
|
||||||
<widget class="QLabel" name="visualisationMinimumInclusiveCostRatioLabel">
|
<widget class="QLabel" name="visualisationMinimumInclusiveCostRatioLabel">
|
||||||
<property name="toolTip">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Visualization: Minimum event cost:</string>
|
<string>Visualization: Minimum event cost:</string>
|
||||||
</property>
|
</property>
|
||||||
|
|||||||
@@ -223,7 +223,7 @@ void CleanDialog::addFile(const QString &workingDirectory, QString fileName, boo
|
|||||||
// Tooltip with size information
|
// Tooltip with size information
|
||||||
if (fi.isFile()) {
|
if (fi.isFile()) {
|
||||||
const QString lastModified = fi.lastModified().toString(Qt::DefaultLocaleShortDate);
|
const QString lastModified = fi.lastModified().toString(Qt::DefaultLocaleShortDate);
|
||||||
nameItem->setToolTip(tr("%n bytes, last modified %1", 0, fi.size()).arg(lastModified));
|
nameItem->setToolTip(tr("%n bytes, last modified %1.", 0, fi.size()).arg(lastModified));
|
||||||
}
|
}
|
||||||
d->m_filesModel->appendRow(nameItem);
|
d->m_filesModel->appendRow(nameItem);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ CommonSettingsWidget::CommonSettingsWidget(QWidget *parent) :
|
|||||||
m_ui->nickNameMailMapChooser->setHistoryCompleter(QLatin1String("Vcs.NickMap.History"));
|
m_ui->nickNameMailMapChooser->setHistoryCompleter(QLatin1String("Vcs.NickMap.History"));
|
||||||
m_ui->sshPromptChooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
m_ui->sshPromptChooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
||||||
m_ui->sshPromptChooser->setHistoryCompleter(QLatin1String("Vcs.SshPrompt.History"));
|
m_ui->sshPromptChooser->setHistoryCompleter(QLatin1String("Vcs.SshPrompt.History"));
|
||||||
const QString patchToolTip = tr("Command used for reverting diff chunks");
|
const QString patchToolTip = tr("Command used for reverting diff chunks.");
|
||||||
m_ui->patchCommandLabel->setToolTip(patchToolTip);
|
m_ui->patchCommandLabel->setToolTip(patchToolTip);
|
||||||
m_ui->patchChooser->setToolTip(patchToolTip);
|
m_ui->patchChooser->setToolTip(patchToolTip);
|
||||||
m_ui->patchChooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
m_ui->patchChooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
||||||
|
|||||||
@@ -73,7 +73,7 @@
|
|||||||
<widget class="QLabel" name="nickNameMailMapLabel">
|
<widget class="QLabel" name="nickNameMailMapLabel">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>A file listing user names and email addresses in a 4-column mailmap format:
|
<string>A file listing user names and email addresses in a 4-column mailmap format:
|
||||||
name <email> alias <email></string>
|
'name <email> alias <email>'.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>User/&alias configuration file:</string>
|
<string>User/&alias configuration file:</string>
|
||||||
|
|||||||
Reference in New Issue
Block a user