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
20ba71a0
Commit
20ba71a0
authored
Apr 14, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(ui/modules/Linphone/TelKeypad): in progress
parent
a148be81
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
57 additions
and
0 deletions
+57
-0
resources.qrc
linphone-desktop/resources.qrc
+2
-0
TelKeypad.qml
linphone-desktop/ui/modules/Linphone/TelKeypad/TelKeypad.qml
+48
-0
TelKeypadButton.qml
...desktop/ui/modules/Linphone/TelKeypad/TelKeypadButton.qml
+5
-0
qmldir
linphone-desktop/ui/modules/Linphone/qmldir
+2
-0
No files found.
linphone-desktop/resources.qrc
View file @
20ba71a0
...
...
@@ -318,6 +318,8 @@
<file>
ui/modules/Linphone/Styles/qmldir
</file>
<file>
ui/modules/Linphone/Styles/SmartSearchBarStyle.qml
</file>
<file>
ui/modules/Linphone/Styles/TimelineStyle.qml
</file>
<file>
ui/modules/Linphone/TelKeypad/TelKeypadButton.qml
</file>
<file>
ui/modules/Linphone/TelKeypad/TelKeypad.qml
</file>
<file>
ui/modules/Linphone/Timeline.qml
</file>
<file>
ui/scripts/LinphoneUtils/linphone-utils.js
</file>
<file>
ui/scripts/LinphoneUtils/qmldir
</file>
...
...
linphone-desktop/ui/modules/Linphone/TelKeypad/TelKeypad.qml
0 → 100644
View file @
20ba71a0
import
QtQuick
2.7
// =============================================================================
Grid
{
property
var
call
// ---------------------------------------------------------------------------
columns
:
3
Repeater
{
model
:
[{
text
:
'
1
'
,
icon
:
'
answering_machine
'
},
{
text
:
'
2
'
},{
text
:
'
3
'
},
{
text
:
'
4
'
},
{
text
:
'
5
'
},
{
text
:
'
6
'
},
{
text
:
'
7
'
},
{
text
:
'
8
'
},
{
text
:
'
9
'
},
{
text
:
'
*
'
},
{
text
:
'
0
'
,
icon
:
'
plus
'
},
{
text
:
'
#
'
}]
TelKeypadButton
{
icon
:
modelData
.
icon
text
:
modelData
.
text
onClicked
:
console
.
log
(
'
TODO
'
)
}
}
}
linphone-desktop/ui/modules/Linphone/TelKeypad/TelKeypadButton.qml
0 → 100644
View file @
20ba71a0
import
QtQuick
2.7
// =============================================================================
Item
{}
linphone-desktop/ui/modules/Linphone/qmldir
View file @
20ba71a0
...
...
@@ -27,4 +27,6 @@ PresenceLevel 1.0 Presence/PresenceLevel.qml
SmartSearchBar 1.0 SmartSearchBar.qml
TelKeypad 1.0 TelKeypad.qml
Timeline 1.0 Timeline.qml
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