Improved some icons and removed unused or redundant ones
Reviewed-by: Daniel Molkentin
@@ -36,7 +36,7 @@ FilterLineEdit::FilterLineEdit(QWidget *parent) :
|
|||||||
m_lastFilterText(text())
|
m_lastFilterText(text())
|
||||||
{
|
{
|
||||||
setSide(Utils::FancyLineEdit::Right);
|
setSide(Utils::FancyLineEdit::Right);
|
||||||
setPixmap(QPixmap(QLatin1String(":/utils/images/reset.png")));
|
setPixmap(QPixmap(QLatin1String(":/core/images/reset.png")));
|
||||||
setPlaceholderText(tr("Type to filter"));
|
setPlaceholderText(tr("Type to filter"));
|
||||||
|
|
||||||
connect(this, SIGNAL(buttonClicked()), this, SLOT(clear()));
|
connect(this, SIGNAL(buttonClicked()), this, SLOT(clear()));
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 184 B |
@@ -1,6 +1,5 @@
|
|||||||
<RCC>
|
<RCC>
|
||||||
<qresource prefix="/utils" >
|
<qresource prefix="/utils">
|
||||||
<file>images/removesubmitfield.png</file>
|
<file>images/removesubmitfield.png</file>
|
||||||
<file>images/reset.png</file>
|
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
|||||||
@@ -50,8 +50,8 @@
|
|||||||
<file>images/category_project.png</file>
|
<file>images/category_project.png</file>
|
||||||
<file>images/category_design.png</file>
|
<file>images/category_design.png</file>
|
||||||
<file>images/category_qt.png</file>
|
<file>images/category_qt.png</file>
|
||||||
|
|
||||||
<file>editormanager/BinFiles.mimetypes.xml</file>
|
<file>editormanager/BinFiles.mimetypes.xml</file>
|
||||||
<file>images/progressbar.png</file>
|
<file>images/progressbar.png</file>
|
||||||
|
<file>images/help.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
|||||||
@@ -5,9 +5,6 @@
|
|||||||
<file>images/mode_Output.png</file>
|
<file>images/mode_Output.png</file>
|
||||||
<file>images/mode_Project.png</file>
|
<file>images/mode_Project.png</file>
|
||||||
<file>images/mode_Reference.png</file>
|
<file>images/mode_Reference.png</file>
|
||||||
<file>images/fancytoolbutton_bottom_outline.png</file>
|
|
||||||
<file>images/fancytoolbutton_normal_outline.png</file>
|
|
||||||
<file>images/fancytoolbutton_top_outline.png</file>
|
|
||||||
<file>images/mode_Design.png</file>
|
<file>images/mode_Design.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
|||||||
@@ -180,6 +180,10 @@
|
|||||||
<property name="text">
|
<property name="text">
|
||||||
<string>?</string>
|
<string>?</string>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="core.qrc">
|
||||||
|
<normaloff>:/core/images/help.png</normaloff>:/core/images/help.png</iconset>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="2" column="0">
|
<item row="2" column="0">
|
||||||
@@ -211,6 +215,10 @@
|
|||||||
<property name="text">
|
<property name="text">
|
||||||
<string>?</string>
|
<string>?</string>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="core.qrc">
|
||||||
|
<normaloff>:/core/images/help.png</normaloff>:/core/images/help.png</iconset>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="3" column="0" colspan="4">
|
<item row="3" column="0" colspan="4">
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 411 B |
|
Before Width: | Height: | Size: 298 B After Width: | Height: | Size: 301 B |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 411 B |
BIN
src/plugins/coreplugin/images/help.png
Normal file
|
After Width: | Height: | Size: 430 B |
|
Before Width: | Height: | Size: 184 B After Width: | Height: | Size: 849 B |
@@ -88,7 +88,6 @@ ExpressionQueryWidget::ExpressionQueryWidget(Mode mode, QDeclarativeEngineDebug
|
|||||||
m_lineEdit->setToolTip(tr("Write and evaluate QtScript expressions."));
|
m_lineEdit->setToolTip(tr("Write and evaluate QtScript expressions."));
|
||||||
|
|
||||||
m_clearButton = new QToolButton();
|
m_clearButton = new QToolButton();
|
||||||
m_clearButton->setIcon(QIcon(QLatin1String(":/utils/images/reset.png")));
|
|
||||||
m_clearButton->setToolTip(tr("Clear Output"));
|
m_clearButton->setToolTip(tr("Clear Output"));
|
||||||
m_clearButton->setIcon(QIcon(Core::Constants::ICON_CLEAN_PANE));
|
m_clearButton->setIcon(QIcon(Core::Constants::ICON_CLEAN_PANE));
|
||||||
connect(m_clearButton, SIGNAL(clicked()), this, SLOT(clearTextEditor()));
|
connect(m_clearButton, SIGNAL(clicked()), this, SLOT(clearTextEditor()));
|
||||||
|
|||||||