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
a0431801
Commit
a0431801
authored
Feb 13, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(ui/views/App/Settings/SettingsNetwork): view in progress
parent
9af64709
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
102 additions
and
7 deletions
+102
-7
linphone.png
linphone-desktop/assets/images/linphone.png
+0
-0
en.ts
linphone-desktop/assets/languages/en.ts
+23
-0
fr.ts
linphone-desktop/assets/languages/fr.ts
+23
-0
NumericField.qml
...ne-desktop/ui/modules/Common/Form/Fields/NumericField.qml
+1
-1
Switch.qml
linphone-desktop/ui/modules/Common/Form/Switch.qml
+1
-1
TabBar.qml
linphone-desktop/ui/modules/Common/Form/Tab/TabBar.qml
+1
-1
TabButton.qml
linphone-desktop/ui/modules/Common/Form/Tab/TabButton.qml
+1
-1
FormGroupStyle.qml
...-desktop/ui/modules/Common/Styles/Form/FormGroupStyle.qml
+2
-2
SettingsNetwork.qml
linphone-desktop/ui/views/App/Settings/SettingsNetwork.qml
+49
-0
SettingsWindow.qml
linphone-desktop/ui/views/App/Settings/SettingsWindow.qml
+1
-1
No files found.
linphone-desktop/assets/images/linphone.png
deleted
100644 → 0
View file @
9af64709
2.67 KB
linphone-desktop/assets/languages/en.ts
View file @
a0431801
...
...
@@ -557,6 +557,29 @@ Server url not configured.</translation>
<
translation
>
Delay
(
in
ms
)
<
/translation
>
<
/message
>
<
/context
>
<
context
>
<
name
>
SettingsNetwork
<
/name
>
<
message
>
<
source
>
forceMtuLabel
<
/source
>
<
translation
>
Forcer
MTU
<
/translation
>
<
/message
>
<
message
>
<
source
>
mtuLabel
<
/source
>
<
translation
>
MTU
<
/translation
>
<
/message
>
<
message
>
<
source
>
sendDtmfsLabel
<
/source
>
<
translation
>
Send
DTMFs
as
SIP
info
<
/translation
>
<
/message
>
<
message
>
<
source
>
allowIpV6Label
<
/source
>
<
translation
>
Allow
IPv6
<
/translation
>
<
/message
>
<
message
>
<
source
>
transportTitle
<
/source
>
<
translation
>
Transport
<
/translation
>
<
/message
>
<
/context
>
<
context
>
<
name
>
SettingsWindow
<
/name
>
<
message
>
...
...
linphone-desktop/assets/languages/fr.ts
View file @
a0431801
...
...
@@ -567,6 +567,29 @@ Url du serveur non configurée.</translation>
<
translation
>
D
é
lai
(
en
ms
)
<
/translation
>
<
/message
>
<
/context
>
<
context
>
<
name
>
SettingsNetwork
<
/name
>
<
message
>
<
source
>
forceMtuLabel
<
/source
>
<
translation
>
Forcer
MTU
<
/translation
>
<
/message
>
<
message
>
<
source
>
mtuLabel
<
/source
>
<
translation
>
MTU
<
/translation
>
<
/message
>
<
message
>
<
source
>
sendDtmfsLabel
<
/source
>
<
translation
>
Envoyer
DTMFs
en
SIP
info
<
/translation
>
<
/message
>
<
message
>
<
source
>
allowIpV6Label
<
/source
>
<
translation
>
Autoriser
IPv6
<
/translation
>
<
/message
>
<
message
>
<
source
>
transportTitle
<
/source
>
<
translation
>
Transport
<
/translation
>
<
/message
>
<
/context
>
<
context
>
<
name
>
SettingsWindow
<
/name
>
<
message
>
...
...
linphone-desktop/ui/modules/Common/Form/Fields/NumericField.qml
View file @
a0431801
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
0
import
Common
1.0
import
Common
.
Styles
1.0
...
...
linphone-desktop/ui/modules/Common/Form/Switch.qml
View file @
a0431801
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
0
import
Common
.
Styles
1.0
...
...
linphone-desktop/ui/modules/Common/Form/Tab/TabBar.qml
View file @
a0431801
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
0
// =============================================================================
...
...
linphone-desktop/ui/modules/Common/Form/Tab/TabButton.qml
View file @
a0431801
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
as
Controls
import
QtQuick
.
Controls
2.
0
as
Controls
import
QtQuick
.
Layouts
1.3
import
Common
1.0
...
...
linphone-desktop/ui/modules/Common/Styles/Form/FormGroupStyle.qml
View file @
a0431801
...
...
@@ -10,13 +10,13 @@ QtObject {
property
QtObject
content
:
QtObject
{
property
int
height
:
300
property
int
width
:
3
00
property
int
width
:
2
00
}
property
QtObject
legend
:
QtObject
{
property
color
color
:
Colors
.
j
property
int
fontSize
:
10
property
int
height
:
36
property
int
width
:
15
0
property
int
width
:
20
0
}
}
linphone-desktop/ui/views/App/Settings/SettingsNetwork.qml
View file @
a0431801
...
...
@@ -2,8 +2,57 @@ import QtQuick 2.7
import
Common
1.0
import
App
.
Styles
1.0
// =============================================================================
TabContainer
{
Column
{
anchors.fill
:
parent
spacing
:
SettingsWindowStyle
.
forms
.
spacing
// -------------------------------------------------------------------------
// Transport.
// -------------------------------------------------------------------------
Form
{
title
:
qsTr
(
'
transportTitle
'
)
width
:
parent
.
width
FormLine
{
FormGroup
{
label
:
qsTr
(
'
forceMtuLabel
'
)
Switch
{
id
:
forceMtu
}
}
FormGroup
{
label
:
qsTr
(
'
mtuLabel
'
)
NumericField
{
readOnly
:
!
forceMtu
.
checked
}
}
}
FormGroup
{
label
:
qsTr
(
'
sendDtmfsLabel
'
)
Switch
{}
}
FormGroup
{
label
:
qsTr
(
'
allowIpV6Label
'
)
Switch
{}
}
}
// -------------------------------------------------------------------------
// Network protocol and ports.
// -------------------------------------------------------------------------
}
}
linphone-desktop/ui/views/App/Settings/SettingsWindow.qml
View file @
a0431801
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
0
import
QtQuick
.
Layouts
1.3
import
Common
1.0
...
...
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