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
d48d06e0
Commit
d48d06e0
authored
Mar 13, 2017
by
Aleksi Suomalainen
Committed by
GitHub
Mar 13, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #36 from neochapay/master
Add listview decorator
parents
e7163219
d2b21596
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
27 deletions
+23
-27
README.md
README.md
+7
-27
ListView.qml
src/controls/ListView.qml
+16
-0
No files found.
README.md
View file @
d48d06e0
qtquickcontrols-nemo
====================
Glacier/Breeze components for Nemomobile, based on QtQuickControls
Hello people :)
I took inspiration from the current qtquickcontrols-tizen repo and
built the repo for the new Nemo components for Glacier UI!
So, first of all, a big thank you to Tomasz Olszak (nickname: tolszak)
and Jarosław_Staniek (nickname: staniek) for their awesome work on
Qt for Tizen!
I changed quite a lot of stuff from qtquickcontrols-tizen repo
in the attempt to improve the overall quality and make things
easier for the people who will contribute to building Glacier
components. I hope I succeeded at that task :)
For those who don't know what Glacier is:
It is the new UI for Nemomobile, you can find some mockup here:
http://play.qwazix.com/grog/?p=344
Yes, it will be as awesome as it looks from the mockups! :D
QML components for Nemomobile, based on QtQuickControls
# Mockups
All mockups of qtquickcontrols-nemo aviable here : https://github.com/qwazix/glacier-controls-spec
# Current status
Current status you can see on mer wiki https://wiki.merproject.org/wiki/Nemo/Glacier
# Development
If you want to be part of the development please do not hesitate
to come talk to me (faenil) at #nemomobile IRC channel (FreeNode server)
and...let's make it happen!
Cheers,
faenil
(Andrea Bernabei)
to come talk at #nemomobile IRC channel (FreeNode server)
src/controls/ListView.qml
View file @
d48d06e0
...
...
@@ -8,6 +8,8 @@ ListView {
signal
hideAllActions
(
int
hideIndex
)
property
bool
showDecorator
:
false
section.criteria
:
ViewSection
.
FullString
section.delegate
:
Component
{
id
:
sectionHeading
...
...
@@ -63,5 +65,19 @@ ListView {
}
}
Rectangle
{
id
:
scrollerDecorator
visible
:
(
listView
.
showDecorator
&&
listView
.
contentHeight
>
listView
.
height
)
color
:
"
#0091e5
"
width
:
5
height
:
listView
.
height
*
listView
.
height
/
listView
.
contentHeight
y
:
(
listView
.
height
)
/
listView
.
contentHeight
*
listView
.
contentY
anchors
{
right
:
listView
.
right
rightMargin
:
4
}
}
}
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