Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-qt-ui-qml
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
libdap-qt-ui-qml
Commits
326bec3b
Commit
326bec3b
authored
5 years ago
by
tatiana.novikova
Committed by
andrey.daragan
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Features 2989
parent
43c5b227
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libdap-qt-ui-qml.qrc
+2
-0
2 additions, 0 deletions
libdap-qt-ui-qml.qrc
widgets/DapBusyIndicator.qml
+130
-0
130 additions, 0 deletions
widgets/DapBusyIndicator.qml
widgets/DapBusyIndicatorForm.ui.qml
+37
-0
37 additions, 0 deletions
widgets/DapBusyIndicatorForm.ui.qml
with
169 additions
and
0 deletions
libdap-qt-ui-qml.qrc
+
2
−
0
View file @
326bec3b
...
...
@@ -28,5 +28,7 @@
<file>widgets/DapMessageBox.qml</file>
<file>widgets/DapMessageBoxForm.ui.qml</file>
<file>DapFont.qml</file>
<file>widgets/DapBusyIndicator.qml</file>
<file>widgets/DapBusyIndicatorForm.ui.qml</file>
</qresource>
</RCC>
This diff is collapsed.
Click to expand it.
widgets/DapBusyIndicator.qml
0 → 100644
+
130
−
0
View file @
326bec3b
import
QtQuick
2.2
import
QtQuick
.
Controls
2.0
DapBusyIndicatorForm
{
contentItem
:
Item
{
id
:
busyItem
width
:
busyIndicatorWidth
height
:
busyIndicatorHeight
//To set number of indicator point
Repeater
{
id
:
busyRepeater
model
:
busyPointNum
Rectangle
{
x
:
busyItem
.
width
/
2
-
width
/
2
y
:
busyItem
.
height
/
2
-
height
/
2
width
:
busyPointWidth
height
:
busyPointHeight
radius
:
busyPointRounding
opacity
:
1
//Add possibility of color animation
Behavior
on
color
{
ColorAnimation
{
from
:
busyIndicatorDarkColor
duration
:
busyIndicatorDelay
*
busyPointNum
}
}
//Add possibility of scale animation
Behavior
on
scale
{
ScaleAnimator
{
from
:
busyPointMaxScale
duration
:
busyIndicatorDelay
*
busyPointNum
}
}
//Set next indicator point as transformation of previous
transform
:
Rotation
{
origin.x
:
busyItem
.
width
/
2
-
width
origin.y
:
busyItem
.
height
/
2
-
height
angle
:
index
*
(
360
/
busyPointNum
)
}
//Timer of every point transformation
Timer
{
id
:
reset
interval
:
busyIndicatorDelay
*
(
index
)
onTriggered
:
{
console
.
log
(
"
reset triggered, index:
"
,
index
)
parent
.
opacity
=
1
parent
.
color
=
busyIndicatorDarkColor
parent
.
scale
=
busyPointMaxScale
reset2
.
start
()
}
onRunningChanged
:
{
if
(
running
)
console
.
log
(
"
reset start, index:
"
,
index
)
else
console
.
log
(
"
reset stop, index:
"
,
index
)
}
}
//Timer of point transformation at one position
Timer
{
id
:
reset2
interval
:
busyIndicatorDelay
onTriggered
:
{
console
.
log
(
"
reset2 triggered, index:
"
,
index
)
parent
.
opacity
=
1
parent
.
color
=
busyIndicatorLightColor
parent
.
scale
=
busyPointMinScale
}
onRunningChanged
:
{
if
(
running
)
console
.
log
(
"
reset2 start, index:
"
,
index
)
else
console
.
log
(
"
reset2 stop, index:
"
,
index
)
}
}
//Timer of all busy indicator transformation
Timer
{
id
:
globalTimer
interval
:
busyIndicatorDelay
*
busyPointNum
onTriggered
:
{
console
.
log
(
"
globalTimer triggered, index:
"
,
index
)
reset
.
start
()
}
triggeredOnStart
:
true
repeat
:
true
}
Component.onCompleted
:
{
globalTimer
.
start
()
}
onVisibleChanged
:
{
if
(
!
visible
)
{
globalTimer
.
stop
();
reset
.
stop
();
reset2
.
stop
();
}
}
}
}
}
onRunningChanged
:
{
if
(
running
)
{
console
.
log
(
"
running all
"
)
}
else
console
.
log
(
"
stop all
"
)
}
}
This diff is collapsed.
Click to expand it.
widgets/DapBusyIndicatorForm.ui.qml
0 → 100644
+
37
−
0
View file @
326bec3b
import
QtQuick
2.2
import
QtQuick
.
Controls
2.0
BusyIndicator
{
///@detalis dapBusy Identificator of dap busy indicator
property
alias
dapBusy
:
control
///@detalis busyPointNum Number of rectangle points at busy indicator
property
int
busyPointNum
///@detalis busyPointRounding Rounding of rectangle points at busy indicator
property
int
busyPointRounding
///@detalis busyPointWidth Width of rectangle points at busy indicator
property
int
busyPointWidth
///@detalis busyPointHeight Height of rectangle points at busy indicator
property
int
busyPointHeight
///@detalis busyPointMinScale Minimum scale of point
property
real
busyPointMinScale
///@detalis busyPointMaxScale Maximum scale of point
property
real
busyPointMaxScale
///@detalis busyIndicatorWidth Width of rectangle busy indicator
property
int
busyIndicatorWidth
///@detalis busyIndicatorHeight Height of rectangle busy indicator
property
int
busyIndicatorHeight
///@detalis busyIndicatorDelay Delay between busy indicator states
property
int
busyIndicatorDelay
///@detalis busyIndicatorDarkColor Color of lightest point of busy indicator
property
string
busyIndicatorDarkColor
///@detalis busyIndicatorLightColor Color of darkest point of busy indicator
property
string
busyIndicatorLightColor
id
:
control
visible
:
running
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment