Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Q
qtquickcontrols-nemo
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
NemoMobile
qtquickcontrols-nemo
Commits
dfe1f0c9
Commit
dfe1f0c9
authored
Jun 09, 2017
by
Sergey Chupligin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[examples] Fix icon path
parent
d744fc4f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
11 deletions
+11
-11
AndroidDelegate.qml
examples/touch/content/AndroidDelegate.qml
+1
-1
TabBarPage.qml
examples/touch/content/TabBarPage.qml
+1
-1
TextInputPage.qml
examples/touch/content/TextInputPage.qml
+1
-1
main.qml
examples/touch/main.qml
+6
-6
HeaderToolsLayout.qml
src/controls/HeaderToolsLayout.qml
+2
-2
No files found.
examples/touch/content/AndroidDelegate.qml
View file @
dfe1f0c9
...
...
@@ -83,7 +83,7 @@ Item {
anchors.right
:
parent
.
right
anchors.rightMargin
:
20
anchors.verticalCenter
:
parent
.
verticalCenter
source
:
"
..
/images/navigation_next_item.png
"
source
:
"
/usr/share/glacier-components
/images/navigation_next_item.png
"
}
MouseArea
{
...
...
examples/touch/content/TabBarPage.qml
View file @
dfe1f0c9
...
...
@@ -79,7 +79,7 @@ Page {
anchors.fill
:
parent
border.bottom
:
size
.
dp
(
8
)
border.top
:
size
.
dp
(
8
)
source
:
styleData
.
selected
?
"
../images/tab_selected.png
"
:
"
..
/images/tabs_standard.png
"
source
:
styleData
.
selected
?
"
/usr/share/glacier-components/images/tab_selected.png
"
:
"
/usr/share/glacier-components
/images/tabs_standard.png
"
Text
{
anchors.centerIn
:
parent
color
:
"
white
"
...
...
examples/touch/content/TextInputPage.qml
View file @
dfe1f0c9
...
...
@@ -110,7 +110,7 @@ Page {
implicitHeight
:
size
.
dp
(
50
)
implicitWidth
:
size
.
dp
(
320
)
BorderImage
{
source
:
"
..
/images/textinput.png
"
source
:
"
/usr/share/glacier-components
/images/textinput.png
"
border.left
:
size
.
dp
(
8
)
border.right
:
size
.
dp
(
8
)
anchors.bottom
:
parent
.
bottom
...
...
examples/touch/main.qml
View file @
dfe1f0c9
...
...
@@ -126,9 +126,9 @@ ApplicationWindow {
id
:
tools
title
:
"
Nemo Touch Gallery
"
tools
:
[
ToolButton
{
iconSource
:
"
..
/images/icon_cog.png
"
},
ToolButton
{
iconSource
:
"
..
/images/icon_edit.png
"
},
ToolButton
{
iconSource
:
"
..
/images/icon_refresh.png
"
}
]
tools
:
[
ToolButton
{
iconSource
:
"
/usr/share/glacier-components
/images/icon_cog.png
"
},
ToolButton
{
iconSource
:
"
/usr/share/glacier-components
/images/icon_edit.png
"
},
ToolButton
{
iconSource
:
"
/usr/share/glacier-components
/images/icon_refresh.png
"
}
]
//The parent of these items is null when this ToolsLayout is not used
//(i.e. you're on a different page) so we need to check the parent,
...
...
@@ -176,19 +176,19 @@ ApplicationWindow {
id
:
tool1
anchors.right
:
parent
.
right
anchors.verticalCenter
:
parent
.
verticalCenter
iconSource
:
"
..
/images/icon_cog.png
"
iconSource
:
"
/usr/share/glacier-components
/images/icon_cog.png
"
}
ToolButton
{
id
:
tool2
anchors.right
:
tool1
.
left
anchors.verticalCenter
:
parent
.
verticalCenter
iconSource
:
"
..
/images/icon_edit.png
"
iconSource
:
"
/usr/share/glacier-components
/images/icon_edit.png
"
}
ToolButton
{
id
:
tool3
anchors.right
:
tool2
.
left
anchors.verticalCenter
:
parent
.
verticalCenter
iconSource
:
"
..
/images/icon_refresh.png
"
iconSource
:
"
/usr/share/glacier-components
/images/icon_refresh.png
"
}
},
ButtonRow
{
...
...
src/controls/HeaderToolsLayout.qml
View file @
dfe1f0c9
...
...
@@ -40,7 +40,7 @@ Item {
Image
{
anchors.centerIn
:
parent
source
:
"
..
/Styles/Nemo/images/icon-triangle-left.png
"
source
:
"
/usr/lib/qt5/qml/QtQuick/Controls
/Styles/Nemo/images/icon-triangle-left.png
"
}
MouseArea
{
...
...
@@ -114,7 +114,7 @@ Item {
verticalCenter
:
parent
.
verticalCenter
}
visible
:
drawerLevels
&&
drawerLevels
.
length
>
1
source
:
"
..
/Styles/Nemo/images/dots-vertical.png
"
source
:
"
/usr/lib/qt5/qml/QtQuick/Controls
/Styles/Nemo/images/dots-vertical.png
"
rotation
:
isUiPortrait
?
0
:
90
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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