Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
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
Administrator
linphone-desktop
Commits
681b3512
Commit
681b3512
authored
Oct 19, 2016
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(app): add new animation `Animations/CaterpillarAnimation.qml`
parent
f477f01f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
55 additions
and
7 deletions
+55
-7
resources.qrc
tests/resources.qrc
+2
-0
CaterpillarAnimation.qml
tests/ui/modules/Common/Animations/CaterpillarAnimation.qml
+48
-0
qmldir
tests/ui/modules/Common/qmldir
+3
-0
StartingCall.qml
tests/ui/views/Calls/StartingCall.qml
+2
-7
No files found.
tests/resources.qrc
View file @
681b3512
...
...
@@ -26,6 +26,7 @@
<file>
imgs/right_arrow.svg
</file>
<file>
imgs/speaker.svg
</file>
<file>
imgs/valid.svg
</file>
<file>
ui/modules/Common/Animations/CaterpillarAnimation.qml
</file>
<file>
ui/modules/Common/Borders.qml
</file>
<file>
ui/modules/Common/Collapse.qml
</file>
<file>
ui/modules/Common/Colors.qml
</file>
...
...
@@ -92,6 +93,7 @@
<file>
ui/modules/Linphone/Timeline.qml
</file>
<file>
ui/scripts/Utils/qmldir
</file>
<file>
ui/scripts/Utils/utils.js
</file>
<file>
ui/scripts/Utils/utils.spec.qml
</file>
<file>
ui/views/Calls/Calls.qml
</file>
<file>
ui/views/Calls/StartingCall.qml
</file>
<file>
ui/views/Calls/StartingIncomingCall.qml
</file>
...
...
tests/ui/modules/Common/Animations/CaterpillarAnimation.qml
0 → 100644
View file @
681b3512
import
QtQuick
2.7
Row
{
id
:
container
property
int
sphereSize
:
10
property
int
nSpheres
:
3
spacing
:
6
Repeater
{
model
:
nSpheres
Rectangle
{
id
:
ymovingBox
color
:
'
#8F8F8F
'
height
:
container
.
sphereSize
radius
:
container
.
sphereSize
/
2
width
:
container
.
sphereSize
onYChanged
:
console
.
log
(
'
y changed
'
,
y
)
YAnimator
on
y
{
id
:
animator
duration
:
500
from
:
10
running
:
true
to
:
0
onRunningChanged
:
{
if
(
!
running
)
{
if
(
to
===
0
)
{
to
=
10
from
=
0
}
else
{
to
=
0
from
=
10
}
animator
.
running
=
true
}
}
}
}
}
}
tests/ui/modules/Common/qmldir
View file @
681b3512
...
...
@@ -11,6 +11,9 @@ singleton Constants 1.0 Constants.qml
# Components ---------------------------------------------------------
# Animations
CaterpillarAnimation 1.0 Animations/CaterpillarAnimation.qml
# Chat
Borders 1.0 Borders.qml
...
...
tests/ui/views/Calls/StartingCall.qml
View file @
681b3512
...
...
@@ -35,13 +35,8 @@ Rectangle {
width
:
parent
.
width
}
Text
{
color
:
'
#8E8E8E
'
font.bold
:
true
font.pointSize
:
17
horizontalAlignment
:
Text
.
AlignHCenter
text
:
'
...
'
width
:
parent
.
width
CaterpillarAnimation
{
anchors.horizontalCenter
:
parent
.
horizontalCenter
}
}
...
...
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