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
33059cc2
Commit
33059cc2
authored
Oct 25, 2016
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(Popup/DropDownMenu): add `isOpen` function
parent
2dd1a681
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
DropDownMenu.qml
tests/ui/modules/Common/Popup/DropDownMenu.qml
+4
-0
PopupStyle.qml
tests/ui/modules/Common/Styles/PopupStyle.qml
+1
-1
CallControls.qml
tests/ui/modules/Linphone/Call/CallControls.qml
+2
-2
No files found.
tests/ui/modules/Common/Popup/DropDownMenu.qml
View file @
33059cc2
...
...
@@ -28,6 +28,10 @@ Rectangle {
signal
menuClosed
signal
menuOpened
function
isOpen
()
{
return
visible
}
function
showMenu
()
{
if
(
visible
)
{
return
...
...
tests/ui/modules/Common/Styles/PopupStyle.qml
View file @
33059cc2
...
...
@@ -11,7 +11,7 @@ QtObject {
property
QtObject
shadow
:
QtObject
{
property
color
color
:
Colors
.
f
property
int
horizontalOffset
:
0
property
int
horizontalOffset
:
2
property
int
radius
:
8
property
int
samples
:
15
property
int
verticalOffset
:
2
...
...
tests/ui/modules/Linphone/Call/CallControls.qml
View file @
33059cc2
...
...
@@ -31,7 +31,7 @@ RowLayout {
Layout.preferredHeight
:
contact
.
height
Layout.preferredWidth
:
42
color
:
'
#434343
'
color
:
menu
.
isOpen
()
?
'
#FE5E00
'
:
'
#434343
'
Text
{
anchors.centerIn
:
parent
...
...
@@ -56,7 +56,7 @@ RowLayout {
height
:
100
launcher
:
button
relativeTo
:
button
relativeX
:
button
.
width
relativeX
:
button
.
width
+
1
width
:
120
Rectangle
{
...
...
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