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
7b6eeec2
Commit
7b6eeec2
authored
May 03, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(app): use a `PasswordField` component
parent
3a785172
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
5 deletions
+16
-5
resources.qrc
linphone-desktop/resources.qrc
+1
-0
PasswordField.qml
...e-desktop/ui/modules/Common/Form/Fields/PasswordField.qml
+9
-0
qmldir
linphone-desktop/ui/modules/Common/qmldir
+1
-0
CreateLinphoneSipAccountWithEmail.qml
.../App/Main/Assistant/CreateLinphoneSipAccountWithEmail.qml
+2
-2
UseLinphoneSipAccountWithUsername.qml
.../App/Main/Assistant/UseLinphoneSipAccountWithUsername.qml
+1
-1
UseOtherSipAccount.qml
...esktop/ui/views/App/Main/Assistant/UseOtherSipAccount.qml
+1
-1
AuthenticationRequest.qml
linphone-desktop/ui/views/App/Main/AuthenticationRequest.qml
+1
-1
No files found.
linphone-desktop/resources.qrc
View file @
7b6eeec2
...
...
@@ -190,6 +190,7 @@
<file>
ui/modules/Common/Form/DroppableTextArea.qml
</file>
<file>
ui/modules/Common/Form/Fields/HexField.qml
</file>
<file>
ui/modules/Common/Form/Fields/NumericField.qml
</file>
<file>
ui/modules/Common/Form/Fields/PasswordField.qml
</file>
<file>
ui/modules/Common/Form/Fields/PortField.qml
</file>
<file>
ui/modules/Common/Form/Fields/TextAreaField.qml
</file>
<file>
ui/modules/Common/Form/Fields/TextField.qml
</file>
...
...
linphone-desktop/ui/modules/Common/Form/Fields/PasswordField.qml
0 → 100644
View file @
7b6eeec2
import
QtQuick
2.7
import
Common
1.0
// =============================================================================
TextField
{
echoMode
:
TextInput
.
Password
}
linphone-desktop/ui/modules/Common/qmldir
View file @
7b6eeec2
...
...
@@ -35,6 +35,7 @@ TextButtonB 1.0 Form/Buttons/TextButtonB.qml
HexField 1.0 Form/Fields/HexField.qml
NumericField 1.0 Form/Fields/NumericField.qml
PasswordField 1.0 Form/Fields/PasswordField.qml
PortField 1.0 Form/Fields/PortField.qml
TextAreaField 1.0 Form/Fields/TextAreaField.qml
TextField 1.0 Form/Fields/TextField.qml
...
...
linphone-desktop/ui/views/App/Main/Assistant/CreateLinphoneSipAccountWithEmail.qml
View file @
7b6eeec2
...
...
@@ -71,7 +71,7 @@ AssistantAbstractView {
FormGroup
{
label
:
qsTr
(
'
passwordLabel
'
)
Text
Field
{
Password
Field
{
id
:
password
onTextChanged
:
assistantModel
.
password
=
text
...
...
@@ -83,7 +83,7 @@ AssistantAbstractView {
FormGroup
{
label
:
qsTr
(
'
passwordConfirmationLabel
'
)
Text
Field
{
Password
Field
{
id
:
passwordConfirmation
onTextChanged
:
error
=
password
.
text
!==
text
...
...
linphone-desktop/ui/views/App/Main/Assistant/UseLinphoneSipAccountWithUsername.qml
View file @
7b6eeec2
...
...
@@ -30,7 +30,7 @@ Form {
FormGroup
{
label
:
qsTr
(
'
passwordLabel
'
)
Text
Field
{
Password
Field
{
id
:
password
onTextChanged
:
assistantModel
.
password
=
text
...
...
linphone-desktop/ui/views/App/Main/Assistant/UseOtherSipAccount.qml
View file @
7b6eeec2
...
...
@@ -53,7 +53,7 @@ AssistantAbstractView {
FormGroup
{
label
:
qsTr
(
'
passwordLabel
'
)
Text
Field
{
Password
Field
{
id
:
password
}
}
...
...
linphone-desktop/ui/views/App/Main/AuthenticationRequest.qml
View file @
7b6eeec2
...
...
@@ -90,7 +90,7 @@ DialogPlus {
FormGroup
{
label
:
qsTr
(
'
passwordLabel
'
)
Text
Field
{
Password
Field
{
id
:
password
}
}
...
...
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