mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-28 01:09:19 +00:00
feat(app): remove uncessary folders
This commit is contained in:
parent
88f5fb1f1c
commit
b79724a9f5
11 changed files with 53 additions and 58 deletions
|
|
@ -29,19 +29,14 @@ lupdate_only{
|
|||
SOURCES = \
|
||||
ui/modules/Linphone/*.qml \
|
||||
ui/modules/Linphone/Chat/*.qml \
|
||||
ui/modules/Linphone/Collapse/*.qml \
|
||||
ui/modules/Linphone/Contact/*.qml \
|
||||
ui/modules/Linphone/Dialog/*.qml \
|
||||
ui/modules/Linphone/Form/*.qml \
|
||||
ui/modules/Linphone/Image/*.qml \
|
||||
ui/modules/Linphone/InvertedMouseArea/*.qml \
|
||||
ui/modules/Linphone/Misc/*.qml \
|
||||
ui/modules/Linphone/Popup/*.qml \
|
||||
ui/modules/Linphone/ScrollBar/*.qml \
|
||||
ui/modules/Linphone/SearchBox/*.qml \
|
||||
ui/modules/Linphone/Select/*.qml \
|
||||
ui/modules/Linphone/Styles/*.qml \
|
||||
ui/modules/Linphone/Timeline/*.qml \
|
||||
ui/modules/Linphone/View/*.qml \
|
||||
ui/views/*.qml \
|
||||
ui/views/MainWindow/*.qml \
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
<file>ui/modules/Linphone/Chat/IncomingMessage.qml</file>
|
||||
<file>ui/modules/Linphone/Chat/Message.qml</file>
|
||||
<file>ui/modules/Linphone/Chat/OutgoingMessage.qml</file>
|
||||
<file>ui/modules/Linphone/Collapse/Collapse.qml</file>
|
||||
<file>ui/modules/Linphone/Collapse.qml</file>
|
||||
<file>ui/modules/Linphone/Constants.qml</file>
|
||||
<file>ui/modules/Linphone/Contact/Avatar.qml</file>
|
||||
<file>ui/modules/Linphone/Contact/ContactDescription.qml</file>
|
||||
|
|
@ -34,6 +34,7 @@
|
|||
<file>ui/modules/Linphone/Dialog/ConfirmDialog.qml</file>
|
||||
<file>ui/modules/Linphone/Dialog/DialogDescription.qml</file>
|
||||
<file>ui/modules/Linphone/Dialog/DialogPlus.qml</file>
|
||||
<file>ui/modules/Linphone/ForceScrollBar.qml</file>
|
||||
<file>ui/modules/Linphone/Form/ActionBar.qml</file>
|
||||
<file>ui/modules/Linphone/Form/ActionButton.qml</file>
|
||||
<file>ui/modules/Linphone/Form/CheckBoxText.qml</file>
|
||||
|
|
@ -45,22 +46,21 @@
|
|||
<file>ui/modules/Linphone/Form/SmallButton.qml</file>
|
||||
<file>ui/modules/Linphone/Form/TransparentComboBox.qml</file>
|
||||
<file>ui/modules/Linphone/Image/Icon.qml</file>
|
||||
<file>ui/modules/Linphone/InvertedMouseArea/InvertedMouseArea.qml</file>
|
||||
<file>ui/modules/Linphone/InvertedMouseArea.qml</file>
|
||||
<file>ui/modules/Linphone/Misc/MenuEntry.qml</file>
|
||||
<file>ui/modules/Linphone/Popup/DropDownMenu.qml</file>
|
||||
<file>ui/modules/Linphone/Popup/PopupShadow.qml</file>
|
||||
<file>ui/modules/Linphone/qmldir</file>
|
||||
<file>ui/modules/Linphone/ScrollBar/ForceScrollBar.qml</file>
|
||||
<file>ui/modules/Linphone/SearchBox/SearchBox.qml</file>
|
||||
<file>ui/modules/Linphone/SearchBox.qml</file>
|
||||
<file>ui/modules/Linphone/Select/SelectContact.qml</file>
|
||||
<file>ui/modules/Linphone/Styles/CollapseStyle.qml</file>
|
||||
<file>ui/modules/Linphone/Styles/DialogStyle.qml</file>
|
||||
<file>ui/modules/Linphone/Styles/ForceScrollBarStyle.qml</file>
|
||||
<file>ui/modules/Linphone/Styles/PopupStyle.qml</file>
|
||||
<file>ui/modules/Linphone/Styles/qmldir</file>
|
||||
<file>ui/modules/Linphone/Styles/ScrollBarStyle.qml</file>
|
||||
<file>ui/modules/Linphone/Styles/SearchBoxStyle.qml</file>
|
||||
<file>ui/modules/Linphone/Styles/TimelineStyle.qml</file>
|
||||
<file>ui/modules/Linphone/Timeline/Timeline.qml</file>
|
||||
<file>ui/modules/Linphone/Timeline.qml</file>
|
||||
<file>ui/modules/Linphone/View/ScrollableListView.qml</file>
|
||||
<file>ui/scripts/utils.js</file>
|
||||
<file>ui/views/MainWindow/Contact.qml</file>
|
||||
|
|
|
|||
18
tests/ui/modules/Linphone/ForceScrollBar.qml
Normal file
18
tests/ui/modules/Linphone/ForceScrollBar.qml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import QtQuick 2.7
|
||||
import QtQuick.Controls 2.0
|
||||
|
||||
import Linphone.Styles 1.0
|
||||
|
||||
// ===================================================================
|
||||
|
||||
ScrollBar {
|
||||
background: ForceScrollBarStyle.background
|
||||
contentItem: Rectangle {
|
||||
color: pressed
|
||||
? ForceScrollBarStyle.pressedColor
|
||||
: ForceScrollBarStyle.color
|
||||
implicitHeight: ForceScrollBarStyle.contentItem.implicitHeight
|
||||
implicitWidth: ForceScrollBarStyle.contentItem.implicitWidth
|
||||
radius: ForceScrollBarStyle.contentItem.radius
|
||||
}
|
||||
}
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
import QtQuick 2.7
|
||||
import QtQuick.Controls 2.0
|
||||
|
||||
import Linphone.Styles 1.0
|
||||
|
||||
// ===================================================================
|
||||
|
||||
ScrollBar {
|
||||
background: ScrollBarStyle.background
|
||||
contentItem: Rectangle {
|
||||
color: pressed
|
||||
? ScrollBarStyle.pressedColor
|
||||
: ScrollBarStyle.color
|
||||
implicitHeight: ScrollBarStyle.contentItem.implicitHeight
|
||||
implicitWidth: ScrollBarStyle.contentItem.implicitWidth
|
||||
radius: ScrollBarStyle.contentItem.radius
|
||||
}
|
||||
}
|
||||
|
|
@ -5,7 +5,7 @@ module Linphone.Style
|
|||
# Components styles.
|
||||
singleton CollapseStyle 1.0 CollapseStyle.qml
|
||||
singleton DialogStyle 1.0 DialogStyle.qml
|
||||
singleton ForceScrollBarStyle 1.0 ForceScrollBarStyle.qml
|
||||
singleton PopupStyle 1.0 PopupStyle.qml
|
||||
singleton ScrollBarStyle 1.0 ScrollBarStyle.qml
|
||||
singleton SearchBoxStyle 1.0 SearchBoxStyle.qml
|
||||
singleton TimelineStyle 1.0 TimelineStyle.qml
|
||||
|
|
|
|||
|
|
@ -2,59 +2,59 @@ module Linphone
|
|||
|
||||
# Constants ----------------------------------------------------------
|
||||
|
||||
singleton Constants 1.0 Constants.qml
|
||||
singleton Constants 1.0 Constants.qml
|
||||
|
||||
# Components ---------------------------------------------------------
|
||||
|
||||
# Chat
|
||||
Chat 1.0 Chat/Chat.qml
|
||||
Chat 1.0 Chat/Chat.qml
|
||||
|
||||
# Collapse
|
||||
Collapse 1.0 Collapse/Collapse.qml
|
||||
Collapse 1.0 Collapse.qml
|
||||
|
||||
# Contact
|
||||
Avatar 1.0 Contact/Avatar.qml
|
||||
Contact 1.0 Contact/Contact.qml
|
||||
ContactDescription 1.0 Contact/ContactDescription.qml
|
||||
Avatar 1.0 Contact/Avatar.qml
|
||||
Contact 1.0 Contact/Contact.qml
|
||||
ContactDescription 1.0 Contact/ContactDescription.qml
|
||||
|
||||
# Dialog
|
||||
DialogPlus 1.0 Dialog/DialogPlus.qml
|
||||
DialogPlus 1.0 Dialog/DialogPlus.qml
|
||||
|
||||
# ForceScrollBar
|
||||
ForceScrollBar 1.0 ForceScrollBar.qml
|
||||
|
||||
# Form
|
||||
ActionBar 1.0 Form/ActionBar.qml
|
||||
ActionButton 1.0 Form/ActionButton.qml
|
||||
CheckBoxText 1.0 Form/CheckBoxText.qml
|
||||
DarkButton 1.0 Form/DarkButton.qml
|
||||
DropZone 1.0 Form/DropZone.qml
|
||||
ExclusiveButtons 1.0 Form/ExclusiveButtons.qml
|
||||
LightButton 1.0 Form/LightButton.qml
|
||||
ListForm 1.0 Form/ListForm.qml
|
||||
TransparentComboBox 1.0 Form/TransparentComboBox.qml
|
||||
ActionBar 1.0 Form/ActionBar.qml
|
||||
ActionButton 1.0 Form/ActionButton.qml
|
||||
CheckBoxText 1.0 Form/CheckBoxText.qml
|
||||
DarkButton 1.0 Form/DarkButton.qml
|
||||
DropZone 1.0 Form/DropZone.qml
|
||||
ExclusiveButtons 1.0 Form/ExclusiveButtons.qml
|
||||
LightButton 1.0 Form/LightButton.qml
|
||||
ListForm 1.0 Form/ListForm.qml
|
||||
TransparentComboBox 1.0 Form/TransparentComboBox.qml
|
||||
|
||||
# Image
|
||||
Icon 1.0 Image/Icon.qml
|
||||
Icon 1.0 Image/Icon.qml
|
||||
|
||||
# InvertedMouseArea
|
||||
InvertedMouseArea 1.0 InvertedMouseArea/InvertedMouseArea.qml
|
||||
InvertedMouseArea 1.0 InvertedMouseArea.qml
|
||||
|
||||
# Misc
|
||||
MenuEntry 1.0 Misc/MenuEntry.qml
|
||||
MenuEntry 1.0 Misc/MenuEntry.qml
|
||||
|
||||
# Popup
|
||||
DropDownMenu 1.0 Popup/DropDownMenu.qml
|
||||
PopupShadow 1.0 Popup/PopupShadow.qml
|
||||
|
||||
# ScrollBar
|
||||
ForceScrollBar 1.0 ScrollBar/ForceScrollBar.qml
|
||||
DropDownMenu 1.0 Popup/DropDownMenu.qml
|
||||
PopupShadow 1.0 Popup/PopupShadow.qml
|
||||
|
||||
# SearchBox
|
||||
SearchBox 1.0 SearchBox/SearchBox.qml
|
||||
SearchBox 1.0 SearchBox.qml
|
||||
|
||||
# Select
|
||||
SelectContact 1.0 Select/SelectContact.qml
|
||||
SelectContact 1.0 Select/SelectContact.qml
|
||||
|
||||
# Timeline
|
||||
Timeline 1.0 Timeline/Timeline.qml
|
||||
Timeline 1.0 Timeline.qml
|
||||
|
||||
# View
|
||||
ScrollableListView 1.0 View/ScrollableListView.qml
|
||||
ScrollableListView 1.0 View/ScrollableListView.qml
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue