Commit b79724a9 authored by Ronan Abhamon's avatar Ronan Abhamon

feat(app): remove uncessary folders

parent 88f5fb1f
......@@ -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>
......
......@@ -6,13 +6,13 @@ import Linphone.Styles 1.0
// ===================================================================
ScrollBar {
background: ScrollBarStyle.background
background: ForceScrollBarStyle.background
contentItem: Rectangle {
color: pressed
? ScrollBarStyle.pressedColor
: ScrollBarStyle.color
implicitHeight: ScrollBarStyle.contentItem.implicitHeight
implicitWidth: ScrollBarStyle.contentItem.implicitWidth
radius: ScrollBarStyle.contentItem.radius
? ForceScrollBarStyle.pressedColor
: ForceScrollBarStyle.color
implicitHeight: ForceScrollBarStyle.contentItem.implicitHeight
implicitWidth: ForceScrollBarStyle.contentItem.implicitWidth
radius: ForceScrollBarStyle.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
......@@ -10,7 +10,7 @@ singleton Constants 1.0 Constants.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
......@@ -20,6 +20,9 @@ ContactDescription 1.0 Contact/ContactDescription.qml
# Dialog
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
......@@ -35,7 +38,7 @@ TransparentComboBox 1.0 Form/TransparentComboBox.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
......@@ -44,17 +47,14 @@ MenuEntry 1.0 Misc/MenuEntry.qml
DropDownMenu 1.0 Popup/DropDownMenu.qml
PopupShadow 1.0 Popup/PopupShadow.qml
# ScrollBar
ForceScrollBar 1.0 ScrollBar/ForceScrollBar.qml
# SearchBox
SearchBox 1.0 SearchBox/SearchBox.qml
SearchBox 1.0 SearchBox.qml
# Select
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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment