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
2a53b6d6
Commit
2a53b6d6
authored
Aug 07, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(Call): add 2 sliders to set speaker/micro volume in media parameters popup
parent
fbc4a086
Changes
40
Hide whitespace changes
Inline
Side-by-side
Showing
40 changed files
with
211 additions
and
44 deletions
+211
-44
resources.qrc
resources.qrc
+2
-0
CallModel.cpp
src/components/call/CallModel.cpp
+22
-0
CallModel.hpp
src/components/call/CallModel.hpp
+11
-0
BusyIndicator.qml
ui/modules/Common/Animations/BusyIndicator.qml
+1
-1
ActionButton.qml
ui/modules/Common/Form/ActionButton.qml
+1
-1
AbstractTextButton.qml
ui/modules/Common/Form/Buttons/AbstractTextButton.qml
+1
-1
SmallButton.qml
ui/modules/Common/Form/Buttons/SmallButton.qml
+1
-1
CheckBoxText.qml
ui/modules/Common/Form/CheckBoxText.qml
+1
-1
ComboBox.qml
ui/modules/Common/Form/ComboBox.qml
+1
-1
DroppableTextArea.qml
ui/modules/Common/Form/DroppableTextArea.qml
+1
-1
NumericField.qml
ui/modules/Common/Form/Fields/NumericField.qml
+1
-1
TextAreaField.qml
ui/modules/Common/Form/Fields/TextAreaField.qml
+1
-1
TextField.qml
ui/modules/Common/Form/Fields/TextField.qml
+1
-1
Slider.qml
ui/modules/Common/Form/Slider.qml
+52
-0
Switch.qml
ui/modules/Common/Form/Switch.qml
+1
-1
TabBar.qml
ui/modules/Common/Form/Tab/TabBar.qml
+1
-1
TabButton.qml
ui/modules/Common/Form/Tab/TabButton.qml
+1
-1
TabContainer.qml
ui/modules/Common/Form/Tab/TabContainer.qml
+1
-1
VuMeter.qml
ui/modules/Common/Indicators/VuMeter.qml
+1
-1
Menu.qml
ui/modules/Common/Menus/Menu.qml
+1
-1
MenuItem.qml
ui/modules/Common/Menus/MenuItem.qml
+1
-1
ForceScrollBar.qml
ui/modules/Common/Misc/ForceScrollBar.qml
+1
-1
Popup.qml
ui/modules/Common/Popup/Popup.qml
+1
-1
SliderStyle.qml
ui/modules/Common/Styles/Form/SliderStyle.qml
+38
-0
qmldir
ui/modules/Common/Styles/qmldir
+1
-0
Tooltip.qml
ui/modules/Common/Tooltip/Tooltip.qml
+1
-1
ScrollableListView.qml
ui/modules/Common/View/ScrollableListView.qml
+1
-1
ApplicationWindow.qml
ui/modules/Common/Window/ApplicationWindow.qml
+1
-1
qmldir
ui/modules/Common/qmldir
+1
-0
Chat.qml
ui/modules/Linphone/Chat/Chat.qml
+1
-1
FileMessage.qml
ui/modules/Linphone/Chat/FileMessage.qml
+1
-1
OutgoingMessage.qml
ui/modules/Linphone/Chat/OutgoingMessage.qml
+1
-1
MultimediaParameters.qml
ui/views/App/Calls/Dialogs/MultimediaParameters.qml
+49
-12
Incall.js
ui/views/App/Calls/Incall.js
+3
-1
Incall.qml
ui/views/App/Calls/Incall.qml
+1
-1
Assistant.qml
ui/views/App/Main/Assistant.qml
+1
-1
ContactEdit.qml
ui/views/App/Main/ContactEdit.qml
+1
-1
MainWindow.qml
ui/views/App/Main/MainWindow.qml
+1
-1
SettingsWindow.qml
ui/views/App/Settings/SettingsWindow.qml
+1
-1
MultimediaParametersStyle.qml
...ws/App/Styles/Calls/Dialogs/MultimediaParametersStyle.qml
+2
-1
No files found.
resources.qrc
View file @
2a53b6d6
...
...
@@ -236,6 +236,7 @@
<file>
ui/modules/Common/Form/Placements/FormTable.qml
</file>
<file>
ui/modules/Common/Form/Placements/FormVGroup.qml
</file>
<file>
ui/modules/Common/Form/SearchBox.qml
</file>
<file>
ui/modules/Common/Form/Slider.qml
</file>
<file>
ui/modules/Common/Form/StaticListForm.qml
</file>
<file>
ui/modules/Common/Form/Switch.qml
</file>
<file>
ui/modules/Common/Form/Tab/TabBar.qml
</file>
...
...
@@ -283,6 +284,7 @@
<file>
ui/modules/Common/Styles/Form/Placements/FormTableStyle.qml
</file>
<file>
ui/modules/Common/Styles/Form/Placements/FormVGroupStyle.qml
</file>
<file>
ui/modules/Common/Styles/Form/SearchBoxStyle.qml
</file>
<file>
ui/modules/Common/Styles/Form/SliderStyle.qml
</file>
<file>
ui/modules/Common/Styles/Form/SwitchStyle.qml
</file>
<file>
ui/modules/Common/Styles/Form/Tab/TabButtonStyle.qml
</file>
<file>
ui/modules/Common/Styles/Form/Tab/TabContainerStyle.qml
</file>
...
...
src/components/call/CallModel.cpp
View file @
2a53b6d6
...
...
@@ -105,6 +105,28 @@ void CallModel::updateStats (const shared_ptr<const linphone::CallStats> &callSt
// -----------------------------------------------------------------------------
float
CallModel
::
getSpeakerVolumeGain
()
const
{
return
mCall
->
getSpeakerVolumeGain
();
}
void
CallModel
::
setSpeakerVolumeGain
(
float
volume
)
{
Q_ASSERT
(
volume
>=
0.0
f
&&
volume
<=
1.0
f
);
mCall
->
setSpeakerVolumeGain
(
volume
);
emit
speakerVolumeGainChanged
(
mCall
->
getSpeakerVolumeGain
());
}
float
CallModel
::
getMicroVolumeGain
()
const
{
return
mCall
->
getMicrophoneVolumeGain
();
}
void
CallModel
::
setMicroVolumeGain
(
float
volume
)
{
Q_ASSERT
(
volume
>=
0.0
f
&&
volume
<=
1.0
f
);
mCall
->
setMicrophoneVolumeGain
(
volume
);
emit
microVolumeGainChanged
(
mCall
->
getMicrophoneVolumeGain
());
}
// -----------------------------------------------------------------------------
void
CallModel
::
notifyCameraFirstFrameReceived
(
unsigned
int
width
,
unsigned
int
height
)
{
if
(
mNotifyCameraFirstFrameReceived
)
{
mNotifyCameraFirstFrameReceived
=
false
;
...
...
src/components/call/CallModel.hpp
View file @
2a53b6d6
...
...
@@ -61,6 +61,9 @@ class CallModel : public QObject {
Q_PROPERTY
(
QString
remoteSas
READ
getRemoteSas
NOTIFY
securityUpdated
);
Q_PROPERTY
(
QString
securedString
READ
getSecuredString
NOTIFY
securityUpdated
);
Q_PROPERTY
(
float
speakerVolumeGain
READ
getSpeakerVolumeGain
WRITE
setSpeakerVolumeGain
NOTIFY
speakerVolumeGainChanged
);
Q_PROPERTY
(
float
microVolumeGain
READ
getMicroVolumeGain
WRITE
setMicroVolumeGain
NOTIFY
microVolumeGainChanged
);
public:
enum
CallStatus
{
CallStatusConnected
,
...
...
@@ -128,6 +131,8 @@ signals:
void
statusChanged
(
CallStatus
status
);
void
videoRequested
();
void
securityUpdated
();
void
speakerVolumeGainChanged
(
float
volume
);
void
microVolumeGainChanged
(
float
volume
);
void
cameraFirstFrameReceived
(
unsigned
int
width
,
unsigned
int
height
);
...
...
@@ -181,6 +186,12 @@ private:
QString
iceStateToString
(
linphone
::
IceState
state
)
const
;
float
getSpeakerVolumeGain
()
const
;
void
setSpeakerVolumeGain
(
float
volume
);
float
getMicroVolumeGain
()
const
;
void
setMicroVolumeGain
(
float
volume
);
bool
mIsInConference
=
false
;
bool
mPausedByRemote
=
false
;
...
...
ui/modules/Common/Animations/BusyIndicator.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
Common
.
Styles
1.0
...
...
ui/modules/Common/Form/ActionButton.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
Common
1.0
...
...
ui/modules/Common/Form/Buttons/AbstractTextButton.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
Common
.
Styles
1.0
...
...
ui/modules/Common/Form/Buttons/SmallButton.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
Common
.
Styles
1.0
...
...
ui/modules/Common/Form/CheckBoxText.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
Common
.
Styles
1.0
...
...
ui/modules/Common/Form/ComboBox.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
QtQuick
.
Layouts
1.3
import
Common
1.0
...
...
ui/modules/Common/Form/DroppableTextArea.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
QtQuick
.
Dialogs
1.2
import
Common
1.0
...
...
ui/modules/Common/Form/Fields/NumericField.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
Common
1.0
import
Common
.
Styles
1.0
...
...
ui/modules/Common/Form/Fields/TextAreaField.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
Common
1.0
import
Common
.
Styles
1.0
...
...
ui/modules/Common/Form/Fields/TextField.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
as
Controls
import
QtQuick
.
Controls
2.
2
as
Controls
import
Common
1.0
import
Common
.
Styles
1.0
...
...
ui/modules/Common/Form/Slider.qml
0 → 100644
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.2
as
Controls
import
Common
.
Styles
1.0
// =============================================================================
Controls.Slider
{
id
:
slider
background
:
Rectangle
{
color
:
SliderStyle
.
background
.
color
x
:
slider
.
leftPadding
y
:
slider
.
topPadding
+
slider
.
availableHeight
/
2
-
height
/
2
implicitHeight
:
SliderStyle
.
background
.
height
implicitWidth
:
SliderStyle
.
background
.
width
height
:
implicitHeight
width
:
slider
.
availableWidth
radius
:
SliderStyle
.
background
.
radius
Rectangle
{
color
:
SliderStyle
.
background
.
content
.
color
height
:
parent
.
height
width
:
slider
.
visualPosition
*
parent
.
width
radius
:
SliderStyle
.
background
.
content
.
radius
}
}
handle
:
Rectangle
{
border.color
:
slider
.
pressed
?
SliderStyle
.
handle
.
border
.
color
.
pressed
:
SliderStyle
.
handle
.
border
.
color
.
normal
color
:
slider
.
pressed
?
SliderStyle
.
handle
.
color
.
pressed
:
SliderStyle
.
handle
.
color
.
normal
x
:
slider
.
leftPadding
+
slider
.
visualPosition
*
(
slider
.
availableWidth
-
width
)
y
:
slider
.
topPadding
+
slider
.
availableHeight
/
2
-
height
/
2
implicitWidth
:
SliderStyle
.
handle
.
width
implicitHeight
:
SliderStyle
.
handle
.
height
radius
:
SliderStyle
.
handle
.
radius
}
}
ui/modules/Common/Form/Switch.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
Common
.
Styles
1.0
...
...
ui/modules/Common/Form/Tab/TabBar.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
// =============================================================================
...
...
ui/modules/Common/Form/Tab/TabButton.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
as
Controls
import
QtQuick
.
Controls
2.
2
as
Controls
import
QtQuick
.
Layouts
1.3
import
Common
1.0
...
...
ui/modules/Common/Form/Tab/TabContainer.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
QtQuick
.
Layouts
1.3
import
Common
1.0
...
...
ui/modules/Common/Indicators/VuMeter.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
Common
.
Styles
1.0
...
...
ui/modules/Common/Menus/Menu.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
as
Controls
import
QtQuick
.
Controls
2.
2
as
Controls
import
Common
1.0
import
Common
.
Styles
1.0
...
...
ui/modules/Common/Menus/MenuItem.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
Common
.
Styles
1.0
...
...
ui/modules/Common/Misc/ForceScrollBar.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
Common
.
Styles
1.0
...
...
ui/modules/Common/Popup/Popup.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
as
Controls
import
QtQuick
.
Controls
2.
2
as
Controls
import
Common
.
Styles
1.0
import
Utils
1.0
...
...
ui/modules/Common/Styles/Form/SliderStyle.qml
0 → 100644
View file @
2a53b6d6
pragma
Singleton
import
QtQml
2.2
import
Colors
1.0
// =============================================================================
QtObject
{
property
QtObject
background
:
QtObject
{
property
color
color
:
Colors
.
n
property
int
height
:
4
property
int
radius
:
2
property
int
width
:
200
property
QtObject
content
:
QtObject
{
property
color
color
:
Colors
.
t
property
int
radius
:
2
}
}
property
QtObject
handle
:
QtObject
{
property
int
height
:
16
property
int
radius
:
13
property
int
width
:
16
property
QtObject
border
:
QtObject
{
property
QtObject
color
:
QtObject
{
property
color
normal
:
Colors
.
n
property
color
pressed
:
Colors
.
n
}
}
property
QtObject
color
:
QtObject
{
property
color
normal
:
Colors
.
e
property
color
pressed
:
Colors
.
q
}
}
}
ui/modules/Common/Styles/qmldir
View file @
2a53b6d6
...
...
@@ -14,6 +14,7 @@ singleton ComboBoxStyle 1.0 Form/ComboBoxStyle.qml
singleton DroppableTextAreaStyle 1.0 Form/DroppableTextAreaStyle.qml
singleton ListFormStyle 1.0 Form/ListFormStyle.qml
singleton SearchBoxStyle 1.0 Form/SearchBoxStyle.qml
singleton SliderStyle 1.0 Form/SliderStyle.qml
singleton SwitchStyle 1.0 Form/SwitchStyle.qml
singleton TransparentTextInputStyle 1.0 Form/TransparentTextInputStyle.qml
...
...
ui/modules/Common/Tooltip/Tooltip.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
Common
1.0
import
Common
.
Styles
1.0
...
...
ui/modules/Common/View/ScrollableListView.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
Common
1.0
...
...
ui/modules/Common/Window/ApplicationWindow.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
'
Window.js
'
as
Logic
...
...
ui/modules/Common/qmldir
View file @
2a53b6d6
...
...
@@ -23,6 +23,7 @@ ComboBox 1.0 Form/ComboBox.qml
DroppableTextArea 1.0 Form/DroppableTextArea.qml
ListForm 1.0 Form/ListForm.qml
SearchBox 1.0 Form/SearchBox.qml
Slider 1.0 Form/Slider.qml
StaticListForm 1.0 Form/StaticListForm.qml
Switch 1.0 Form/Switch.qml
TransparentTextInput 1.0 Form/TransparentTextInput.qml
...
...
ui/modules/Linphone/Chat/Chat.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
QtQuick
.
Layouts
1.3
import
Common
1.0
...
...
ui/modules/Linphone/Chat/FileMessage.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
QtQuick
.
Layouts
1.3
import
Common
1.0
...
...
ui/modules/Linphone/Chat/OutgoingMessage.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
QtQuick
.
Layouts
1.3
import
Common
1.0
...
...
ui/views/App/Calls/Dialogs/MultimediaParameters.qml
View file @
2a53b6d6
...
...
@@ -2,6 +2,7 @@ import QtQuick 2.7
import
QtQuick
.
Layouts
1.3
import
Common
1.0
import
Common
.
Styles
1.0
import
Linphone
1.0
import
Utils
1.0
...
...
@@ -10,6 +11,10 @@ import App.Styles 1.0
// =============================================================================
DialogPlus
{
property
var
call
// ---------------------------------------------------------------------------
buttons
:
[
TextButtonB
{
text
:
qsTr
(
'
ok
'
)
...
...
@@ -23,6 +28,8 @@ DialogPlus {
height
:
MultimediaParametersStyle
.
height
width
:
MultimediaParametersStyle
.
width
onCallChanged
:
!
call
&&
exit
(
0
)
// ---------------------------------------------------------------------------
Column
{
...
...
@@ -34,19 +41,34 @@ DialogPlus {
width
:
parent
.
width
Icon
{
Layout.alignment
:
Qt
.
AlignTop
Layout.preferredHeight
:
ComboBoxStyle
.
background
.
height
icon
:
'
speaker
'
iconSize
:
MultimediaParametersStyle
.
column
.
entry
.
iconSize
}
Co
mboBox
{
Co
lumn
{
Layout.fillWidth
:
true
currentIndex
:
Utils
.
findIndex
(
model
,
function
(
device
)
{
return
device
===
SettingsModel
.
playbackDevice
})
model
:
SettingsModel
.
playbackDevices
spacing
:
MultimediaParametersStyle
.
column
.
entry
.
spacing2
ComboBox
{
currentIndex
:
Utils
.
findIndex
(
model
,
function
(
device
)
{
return
device
===
SettingsModel
.
playbackDevice
})
model
:
SettingsModel
.
playbackDevices
width
:
parent
.
width
onActivated
:
SettingsModel
.
playbackDevice
=
model
[
index
]
onActivated
:
SettingsModel
.
playbackDevice
=
model
[
index
]
}
Slider
{
width
:
parent
.
width
Component.onCompleted
:
value
=
call
.
speakerVolumeGain
onPositionChanged
:
call
.
speakerVolumeGain
=
position
}
}
}
...
...
@@ -55,19 +77,34 @@ DialogPlus {
width
:
parent
.
width
Icon
{
Layout.alignment
:
Qt
.
AlignTop
Layout.preferredHeight
:
ComboBoxStyle
.
background
.
height
icon
:
'
micro
'
iconSize
:
MultimediaParametersStyle
.
column
.
entry
.
iconSize
}
Co
mboBox
{
Co
lumn
{
Layout.fillWidth
:
true
currentIndex
:
Utils
.
findIndex
(
model
,
function
(
device
)
{
return
device
===
SettingsModel
.
captureDevice
})
model
:
SettingsModel
.
captureDevices
spacing
:
MultimediaParametersStyle
.
column
.
entry
.
spacing2
ComboBox
{
currentIndex
:
Utils
.
findIndex
(
model
,
function
(
device
)
{
return
device
===
SettingsModel
.
captureDevice
})
model
:
SettingsModel
.
captureDevices
width
:
parent
.
width
onActivated
:
SettingsModel
.
captureDevice
=
model
[
index
]
}
Slider
{
width
:
parent
.
width
onActivated
:
SettingsModel
.
captureDevice
=
model
[
index
]
Component.onCompleted
:
value
=
call
.
microVolumeGain
onPositionChanged
:
call
.
microVolumeGain
=
position
}
}
}
...
...
ui/views/App/Calls/Incall.js
View file @
2a53b6d6
...
...
@@ -106,7 +106,9 @@ function openCallStatistics () {
}
function
openMediaParameters
()
{
window
.
attachVirtualWindow
(
Qt
.
resolvedUrl
(
'
Dialogs/MultimediaParameters.qml
'
))
window
.
attachVirtualWindow
(
Qt
.
resolvedUrl
(
'
Dialogs/MultimediaParameters.qml
'
),
{
call
:
incall
.
call
})
}
function
showFullscreen
()
{
...
...
ui/views/App/Calls/Incall.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
QtQuick
.
Layouts
1.3
import
Common
1.0
...
...
ui/views/App/Main/Assistant.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
QtQuick
.
Window
2.2
import
Utils
1.0
...
...
ui/views/App/Main/ContactEdit.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
QtQuick
.
Dialogs
1.2
import
QtQuick
.
Layouts
1.3
...
...
ui/views/App/Main/MainWindow.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
QtQuick
.
Layouts
1.3
import
Common
1.0
...
...
ui/views/App/Settings/SettingsWindow.qml
View file @
2a53b6d6
import
QtQuick
2.7
import
QtQuick
.
Controls
2.
1
import
QtQuick
.
Controls
2.
2
import
QtQuick
.
Layouts
1.3
import
Common
1.0
...
...
ui/views/App/Styles/Calls/Dialogs/MultimediaParametersStyle.qml
View file @
2a53b6d6
...
...
@@ -4,7 +4,7 @@ import QtQml 2.2
// =============================================================================
QtObject
{
property
int
height
:
26
2
property
int
height
:
31
2
property
int
width
:
450
property
QtObject
column
:
QtObject
{
...
...
@@ -13,6 +13,7 @@ QtObject {
property
QtObject
entry
:
QtObject
{
property
int
iconSize
:
24
property
int
spacing
:
10
property
int
spacing2
:
5
}
}
}
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