Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
ec1fc77a
Commit
ec1fc77a
authored
Jul 09, 2010
by
Lasse Holmstedt
Committed by
Olivier Goffart
Jul 14, 2010
Browse files
added new icons for toolbar
parent
380555fc
Changes
5
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmljsinspector/images/color-picker-small.png
0 → 100644
View file @
ec1fc77a
3.1 KB
src/plugins/qmljsinspector/images/select-marquee-small.png
0 → 100644
View file @
ec1fc77a
2.8 KB
src/plugins/qmljsinspector/images/select-small.png
0 → 100644
View file @
ec1fc77a
3.23 KB
src/plugins/qmljsinspector/qmlinspectortoolbar.cpp
View file @
ec1fc77a
...
...
@@ -114,14 +114,14 @@ void QmlInspectorToolbar::createActions(const Core::Context &context)
m_reloadAction
=
new
QAction
(
QIcon
(
":/qml/images/reload.png"
),
"Reload"
,
this
);
m_reloadAction
->
setDisabled
(
true
);
m_playAction
=
new
QAction
(
QIcon
(
":/qml/images/play.png"
),
tr
(
"Play animations"
),
this
);
m_pauseAction
=
new
QAction
(
QIcon
(
":/qml/images/pause.png"
),
tr
(
"Pause animations"
),
this
);
m_selectAction
=
new
QAction
(
QIcon
(
":/qml/images/select.png"
),
tr
(
"Select"
),
this
);
m_selectMarqueeAction
=
new
QAction
(
QIcon
(
":/qml/images/select-marquee.png"
),
tr
(
"Select (Marquee)"
),
this
);
m_zoomAction
=
new
QAction
(
QIcon
(
":/qml/images/zoom.png"
),
tr
(
"Zoom"
),
this
);
m_colorPickerAction
=
new
QAction
(
QIcon
(
":/qml/images/color-picker.png"
),
tr
(
"Color Picker"
),
this
);
m_toQmlAction
=
new
QAction
(
QIcon
(
":/qml/images/to-qml.png"
),
tr
(
"Apply Changes to QML Viewer"
),
this
);
m_fromQmlAction
=
new
QAction
(
QIcon
(
":/qml/images/from-qml.png"
),
tr
(
"Apply Changes to Document"
),
this
);
m_playAction
=
new
QAction
(
QIcon
(
":/qml/images/play
-small
.png"
),
tr
(
"Play animations"
),
this
);
m_pauseAction
=
new
QAction
(
QIcon
(
":/qml/images/pause
-small
.png"
),
tr
(
"Pause animations"
),
this
);
m_selectAction
=
new
QAction
(
QIcon
(
":/qml/images/select
-small
.png"
),
tr
(
"Select"
),
this
);
m_selectMarqueeAction
=
new
QAction
(
QIcon
(
":/qml/images/select-marquee
-small
.png"
),
tr
(
"Select (Marquee)"
),
this
);
m_zoomAction
=
new
QAction
(
QIcon
(
":/qml/images/zoom
-small
.png"
),
tr
(
"Zoom"
),
this
);
m_colorPickerAction
=
new
QAction
(
QIcon
(
":/qml/images/color-picker
-small
.png"
),
tr
(
"Color Picker"
),
this
);
m_toQmlAction
=
new
QAction
(
QIcon
(
":/qml/images/to-qml
-small
.png"
),
tr
(
"Apply Changes to QML Viewer"
),
this
);
m_fromQmlAction
=
new
QAction
(
QIcon
(
":/qml/images/from-qml
-small
.png"
),
tr
(
"Apply Changes to Document"
),
this
);
m_playAction
->
setCheckable
(
true
);
m_playAction
->
setChecked
(
true
);
m_pauseAction
->
setCheckable
(
true
);
...
...
src/plugins/qmljsinspector/qmljsinspector.qrc
View file @
ec1fc77a
...
...
@@ -9,5 +9,13 @@
<file>images/to-qml.png</file>
<file>images/select-marquee.png</file>
<file>images/zoom.png</file>
<file>images/color-picker-small.png</file>
<file>images/select-small.png</file>
<file>images/play-small.png</file>
<file>images/to-qml-small.png</file>
<file>images/pause-small.png</file>
<file>images/from-qml-small.png</file>
<file>images/zoom-small.png</file>
<file>images/select-marquee-small.png</file>
</qresource>
</RCC>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment