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
d35ca30b
Commit
d35ca30b
authored
Feb 15, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test
parent
b81f52dd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
129 additions
and
100 deletions
+129
-100
resources.qrc
linphone-desktop/resources.qrc
+1
-0
MainWindow.qml
linphone-desktop/ui/views/App/Main/MainWindow.qml
+117
-100
MainWindowMenuBar.qml
linphone-desktop/ui/views/App/Main/MainWindowMenuBar.qml
+11
-0
No files found.
linphone-desktop/resources.qrc
View file @
d35ca30b
...
...
@@ -303,6 +303,7 @@
<file>
ui/views/App/Main/Contacts.qml
</file>
<file>
ui/views/App/Main/Conversation.qml
</file>
<file>
ui/views/App/Main/Home.qml
</file>
<file>
ui/views/App/Main/MainWindowMenuBar.qml
</file>
<file>
ui/views/App/Main/MainWindow.qml
</file>
<file>
ui/views/App/ManageAccounts.qml
</file>
<file>
ui/views/App/qmldir
</file>
...
...
linphone-desktop/ui/views/App/Main/MainWindow.qml
View file @
d35ca30b
...
...
@@ -2,6 +2,8 @@ import QtQuick 2.7
import
QtQuick
.
Controls
2.0
import
QtQuick
.
Layouts
1.3
import
QtQuick
.
Controls
1.4
as
Controls1
import
Common
1.0
import
Linphone
1.0
import
Utils
1.0
...
...
@@ -10,7 +12,7 @@ import App.Styles 1.0
// =============================================================================
ApplicationWindow
{
Controls1.
ApplicationWindow
{
id
:
window
property
string
_currentView
:
''
...
...
@@ -62,7 +64,7 @@ ApplicationWindow {
}
function
_setView
(
view
,
props
)
{
window
.
s
how
(
)
window
.
s
etVisible
(
true
)
window
.
requestActivate
()
collapse
.
setCollapsed
(
true
)
...
...
@@ -84,145 +86,160 @@ ApplicationWindow {
onActiveFocusItemChanged
:
activeFocusItem
==
null
&&
smartSearchBar
.
hideMenu
()
// ---------------------------------------------------------------------------
//
Toolbar properties
.
//
Menu bar
.
// ---------------------------------------------------------------------------
header
:
ToolBar
{
background
:
MainWindowStyle
.
toolBar
.
background
height
:
MainWindowStyle
.
toolBar
.
height
menuBar
:
MainWindowMenuBar
{}
RowLayout
{
anchors
{
fill
:
parent
leftMargin
:
MainWindowStyle
.
toolBar
.
leftMargin
rightMargin
:
MainWindowStyle
.
toolBar
.
rightMargin
}
spacing
:
MainWindowStyle
.
toolBar
.
spacing
Collapse
{
id
:
collapse
ColumnLayout
{
anchors.fill
:
parent
spacing
:
0
Layout.fillHeight
:
parent
.
height
target
:
window
targetHeight
:
MainWindowStyle
.
minimumHeight
}
// -------------------------------------------------------------------------
// Toolbar properties.
// -------------------------------------------------------------------------
AccountStatus
{
id
:
accountStatus
ToolBar
{
background
:
MainWindowStyle
.
toolBar
.
background
Layout.preferredHeight
:
MainWindowStyle
.
toolBar
.
height
Layout.fillWidth
:
true
Layout.fillHeight
:
parent
.
height
Layout.preferredWidth
:
MainWindowStyle
.
accountStatus
.
width
RowLayout
{
anchors
{
fill
:
parent
leftMargin
:
MainWindowStyle
.
toolBar
.
leftMargin
rightMargin
:
MainWindowStyle
.
toolBar
.
rightMargin
}
spacing
:
MainWindowStyle
.
toolBar
.
spacing
account
:
AccountSettingsModel
Collapse
{
id
:
collapse
TooltipArea
{
text
:
AccountSettingsModel
.
sipAddress
Layout.fillHeight
:
parent
.
height
target
:
window
targetHeight
:
MainWindowStyle
.
minimumHeight
}
onClicked
:
Utils
.
openWindow
(
'
ManageAccounts
'
,
window
)
}
AccountStatus
{
id
:
accountStatus
Layout.fillHeight
:
parent
.
height
Layout.preferredWidth
:
MainWindowStyle
.
accountStatus
.
width
Column
{
width
:
MainWindowStyle
.
autoAnswerStatus
.
width
account
:
AccountSettingsModel
Icon
{
icon
:
SettingsModel
.
autoAnswerStatu
s
?
'
auto_answer
'
:
''
iconSize
:
MainWindowStyle
.
autoAnswerStatus
.
iconSize
TooltipArea
{
text
:
AccountSettingsModel
.
sipAddres
s
}
onClicked
:
Utils
.
openWindow
(
'
ManageAccounts
'
,
window
)
}
Text
{
clip
:
true
font
{
pointSize
:
MainWindowStyle
.
autoAnswerStatus
.
text
.
fontSize
Column
{
width
:
MainWindowStyle
.
autoAnswerStatus
.
width
Icon
{
icon
:
SettingsModel
.
autoAnswerStatus
?
'
auto_answer
'
:
''
iconSize
:
MainWindowStyle
.
autoAnswerStatus
.
iconSize
}
Text
{
clip
:
true
font
{
pointSize
:
MainWindowStyle
.
autoAnswerStatus
.
text
.
fontSize
}
text
:
qsTr
(
'
autoAnswerStatus
'
)
width
:
parent
.
width
color
:
MainWindowStyle
.
autoAnswerStatus
.
text
.
color
}
text
:
qsTr
(
'
autoAnswerStatus
'
)
width
:
parent
.
width
color
:
MainWindowStyle
.
autoAnswerStatus
.
text
.
color
}
}
SmartSearchBar
{
id
:
smartSearchBar
SmartSearchBar
{
id
:
smartSearchBar
Layout.fillWidth
:
true
entryHeight
:
MainWindowStyle
.
searchBox
.
entryHeight
maxMenuHeight
:
MainWindowStyle
.
searchBox
.
maxHeight
placeholderText
:
qsTr
(
'
mainSearchBarPlaceholder
'
)
Layout.fillWidth
:
true
entryHeight
:
MainWindowStyle
.
searchBox
.
entryHeight
maxMenuHeight
:
MainWindowStyle
.
searchBox
.
maxHeight
placeholderText
:
qsTr
(
'
mainSearchBarPlaceholder
'
)
model
:
SmartSearchBarModel
{}
model
:
SmartSearchBarModel
{}
onAddContact
:
window
.
setView
(
'
ContactEdit
'
,
{
sipAddress
:
sipAddress
})
onAddContact
:
window
.
setView
(
'
ContactEdit
'
,
{
sipAddress
:
sipAddress
})
onLaunchCall
:
CallsListModel
.
launchAudioCall
(
sipAddress
)
onLaunchChat
:
window
.
setView
(
'
Conversation
'
,
{
sipAddress
:
sipAddress
})
onLaunchCall
:
CallsListModel
.
launchAudioCall
(
sipAddress
)
onLaunchChat
:
window
.
setView
(
'
Conversation
'
,
{
sipAddress
:
sipAddress
})
onLaunchVideoCall
:
CallsListModel
.
launchVideoCall
(
sipAddress
)
onLaunchVideoCall
:
CallsListModel
.
launchVideoCall
(
sipAddress
)
onEntryClicked
:
window
.
setView
(
entry
.
contact
?
'
ContactEdit
'
:
'
Conversation
'
,
{
sipAddress
:
entry
.
sipAddress
})
onEntryClicked
:
window
.
setView
(
entry
.
contact
?
'
ContactEdit
'
:
'
Conversation
'
,
{
sipAddress
:
entry
.
sipAddress
})
}
}
}
}
// ---------------------------------------------------------------------------
// Content.
// ---------------------------------------------------------------------------
RowLayout
{
anchors.fill
:
parent
spacing
:
0
// -------------------------------------------------------------------------
// Content.
// -------------------------------------------------------------------------
// Main menu.
ColumnLayout
{
RowLayout
{
Layout.fillHeight
:
true
Layout.
maximumWidth
:
MainWindowStyle
.
menu
.
width
Layout.preferredWidth
:
MainWindowStyle
.
menu
.
width
Layout.
fillWidth
:
true
spacing
:
0
Menu
{
id
:
menu
// Main menu.
ColumnLayout
{
Layout.fillHeight
:
true
Layout.maximumWidth
:
MainWindowStyle
.
menu
.
width
Layout.preferredWidth
:
MainWindowStyle
.
menu
.
width
spacing
:
0
entryHeight
:
MainWindowStyle
.
menu
.
entryHeight
entryWidth
:
MainWindowStyle
.
menu
.
width
Menu
{
id
:
menu
entries
:
[{
entryName
:
qsTr
(
'
homeEntry
'
),
icon
:
'
home
'
},
{
entryName
:
qsTr
(
'
contactsEntry
'
),
icon
:
'
contact
'
}]
entryHeight
:
MainWindowStyle
.
menu
.
entryHeight
entryWidth
:
MainWindowStyle
.
menu
.
width
onEntrySelected
:
!
entry
?
setView
(
'
Home
'
)
:
setView
(
'
Contacts
'
)
}
entries
:
[{
entryName
:
qsTr
(
'
homeEntry
'
),
icon
:
'
home
'
},
{
entryName
:
qsTr
(
'
contactsEntry
'
),
icon
:
'
contact
'
}]
onEntrySelected
:
!
entry
?
setView
(
'
Home
'
)
:
setView
(
'
Contacts
'
)
}
// History.
Timeline
{
id
:
timeline
// History.
Timeline
{
id
:
timeline
Layout.fillHeight
:
true
Layout.fillWidth
:
true
model
:
TimelineModel
Layout.fillHeight
:
true
Layout.fillWidth
:
true
model
:
TimelineModel
onEntrySelected
:
setView
(
'
Conversation
'
,
{
sipAddress
:
entry
})
onEntrySelected
:
setView
(
'
Conversation
'
,
{
sipAddress
:
entry
})
}
}
}
// Main content.
Loader
{
id
:
contentLoader
// Main content.
Loader
{
id
:
contentLoader
Layout.fillHeight
:
true
Layout.fillWidth
:
true
Layout.fillHeight
:
true
Layout.fillWidth
:
true
Component.onCompleted
:
setView
(
'
Home
'
)
Component.onCompleted
:
setView
(
'
Home
'
)
}
}
}
}
linphone-desktop/ui/views/App/Main/MainWindowMenuBar.qml
0 → 100644
View file @
d35ca30b
import
QtQuick
.
Controls
1.4
MenuBar
{
Menu
{
title
:
"
File
"
MenuItem
{
text
:
"
Open...
"
}
MenuItem
{
text
:
"
Close
"
}
}
}
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