mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-04 05:09:27 +00:00
feat(app): all .qml files start with a uppercase
This commit is contained in:
parent
47f43a39da
commit
ba75ede62b
12 changed files with 52 additions and 29 deletions
|
|
@ -24,18 +24,23 @@ TRANSLATIONS = \
|
|||
lupdate_only{
|
||||
# Each component folder must be added explicitly.
|
||||
SOURCES = \
|
||||
ui/components/chat/*.qml \
|
||||
ui/components/collapse/*.qml \
|
||||
ui/components/contact/*.qml \
|
||||
ui/components/dialog/*.qml \
|
||||
ui/components/form/*.qml \
|
||||
ui/components/misc/*.qml \
|
||||
ui/components/scrollBar/*.qml \
|
||||
ui/components/select/*.qml \
|
||||
ui/components/timeline/*.qml \
|
||||
ui/views/*.qml \
|
||||
ui/views/mainWindow/*.qml
|
||||
ui/Linphone/Chat/*.qml \
|
||||
ui/Linphone/Collapse/*.qml \
|
||||
ui/Linphone/Contact/*.qml \
|
||||
ui/Linphone/Dialog/*.qml \
|
||||
ui/Linphone/Form/*.qml \
|
||||
ui/Linphone/Image/*.qml \
|
||||
ui/Linphone/InvertedMouseArea/*.qml \
|
||||
ui/Linphone/Misc/*.qml \
|
||||
ui/Linphone/Popup/*.qml \
|
||||
ui/Linphone/ScrollBar/*.qml \
|
||||
ui/Linphone/SearchBox/*.qml \
|
||||
ui/Linphone/Select/*.qml \
|
||||
ui/Linphone/Styles/*.qml \
|
||||
ui/Linphone/Timeline/*.qml \
|
||||
ui/Linphone/View/*.qml \
|
||||
ui/Views/*.qml \
|
||||
ui/Views/MainWindow/*.qml
|
||||
}
|
||||
|
||||
RESOURCES += \
|
||||
resources.qrc
|
||||
RESOURCES = resources.qrc
|
||||
|
|
|
|||
|
|
@ -2,14 +2,14 @@
|
|||
<qresource prefix="/">
|
||||
<file>languages/fr.qm</file>
|
||||
<file>languages/en.qm</file>
|
||||
<file>ui/Views/MainWindow/Contact.qml</file>
|
||||
<file>ui/Views/MainWindow/Contacts.qml</file>
|
||||
<file>ui/Views/MainWindow/Conversation.qml</file>
|
||||
<file>ui/Views/MainWindow/MainWindow.qml</file>
|
||||
<file>ui/Views/MainWindow/Home.qml</file>
|
||||
<file>ui/Views/ManageAccounts.qml</file>
|
||||
<file>ui/Views/NewCall.qml</file>
|
||||
<file>ui/scripts/utils.js</file>
|
||||
<file>ui/views/newCall.qml</file>
|
||||
<file>ui/views/manageAccounts.qml</file>
|
||||
<file>ui/views/mainWindow/mainWindow.qml</file>
|
||||
<file>ui/views/mainWindow/contacts.qml</file>
|
||||
<file>ui/views/mainWindow/home.qml</file>
|
||||
<file>ui/views/mainWindow/contact.qml</file>
|
||||
<file>ui/views/mainWindow/conversation.qml</file>
|
||||
<file>ui/Linphone/Popup/DropDownMenu.qml</file>
|
||||
<file>ui/Linphone/Popup/PopupShadow.qml</file>
|
||||
<file>ui/Linphone/qmldir</file>
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ int main (int argc, char *argv[]) {
|
|||
// Set modules paths.
|
||||
engine.addImportPath(":/ui/");
|
||||
|
||||
engine.load(QUrl("qrc:/ui/views/mainWindow/mainWindow.qml"));
|
||||
engine.load(QUrl("qrc:/ui/Views/MainWindow/MainWindow.qml"));
|
||||
if (engine.rootObjects().isEmpty())
|
||||
return EXIT_FAILURE;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,19 +1,26 @@
|
|||
module Linphone
|
||||
|
||||
# Constants.
|
||||
# Constants ----------------------------------------------------------
|
||||
|
||||
singleton Constants 1.0 Constants.qml
|
||||
|
||||
# Components.
|
||||
# Components ---------------------------------------------------------
|
||||
|
||||
# Chat
|
||||
Chat 1.0 Chat/Chat.qml
|
||||
|
||||
# Collapse
|
||||
Collapse 1.0 Collapse/Collapse.qml
|
||||
|
||||
# Contact
|
||||
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
|
||||
|
||||
# Form
|
||||
ActionBar 1.0 Form/ActionBar.qml
|
||||
ActionButton 1.0 Form/ActionButton.qml
|
||||
DarkButton 1.0 Form/DarkButton.qml
|
||||
|
|
@ -21,19 +28,30 @@ ExclusiveButtons 1.0 Form/ExclusiveButtons.qml
|
|||
LightButton 1.0 Form/LightButton.qml
|
||||
TransparentComboBox 1.0 Form/TransparentComboBox.qml
|
||||
|
||||
# Image
|
||||
Icon 1.0 Image/Icon.qml
|
||||
|
||||
# InvertedMouseArea
|
||||
InvertedMouseArea 1.0 InvertedMouseArea/InvertedMouseArea.qml
|
||||
|
||||
# Misc
|
||||
MenuEntry 1.0 Misc/MenuEntry.qml
|
||||
|
||||
# Popup
|
||||
DropDownMenu 1.0 Popup/DropDownMenu.qml
|
||||
PopupShadow 1.0 Popup/PopupShadow.qml
|
||||
|
||||
SearchBox 1.0 SearchBox/SearchBox.qml
|
||||
|
||||
# ScrollBar
|
||||
ForceScrollBar 1.0 ScrollBar/ForceScrollBar.qml
|
||||
|
||||
# SearchBox
|
||||
SearchBox 1.0 SearchBox/SearchBox.qml
|
||||
|
||||
# Select
|
||||
SelectContact 1.0 Select/SelectContact.qml
|
||||
|
||||
# Timeline
|
||||
Timeline 1.0 Timeline/Timeline.qml
|
||||
|
||||
# View
|
||||
ScrollableListView 1.0 View/ScrollableListView.qml
|
||||
|
|
|
|||
|
|
@ -48,12 +48,12 @@ ApplicationWindow {
|
|||
// User actions.
|
||||
ActionButton {
|
||||
Layout.preferredWidth: 16
|
||||
onClicked: Utils.openWindow('manageAccounts', mainWindow)
|
||||
onClicked: Utils.openWindow('ManageAccounts', mainWindow)
|
||||
}
|
||||
|
||||
ActionButton {
|
||||
Layout.preferredWidth: 16
|
||||
onClicked: Utils.openWindow('newCall', mainWindow)
|
||||
onClicked: Utils.openWindow('NewCall', mainWindow)
|
||||
}
|
||||
|
||||
// Search.
|
||||
|
|
@ -167,7 +167,7 @@ ApplicationWindow {
|
|||
Loader {
|
||||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
source: 'qrc:/ui/views/mainWindow/contacts.qml'
|
||||
source: 'qrc:/ui/Views/MainWindow/Contacts.qml'
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -16,7 +16,7 @@ function openWindow (window, parent, options) {
|
|||
object = Qt.createQmlObject(window, parent)
|
||||
} else {
|
||||
var component = Qt.createComponent(
|
||||
'qrc:/ui/views/' + window + '.qml'
|
||||
'qrc:/ui/Views/' + window + '.qml'
|
||||
)
|
||||
|
||||
if (component.status !== Component.Ready) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue