linphone-desktop/Linphone/view/Style/AppIcons.qml
Gaelle Braud 82b5d6a008 contact list
fixes:
generic VariantList
FriendModel resetAddresses
check null default account
address list update on save
generic item for white background lists
ui
fix set photo friend
protect friendmodel setters
remove main splitview to stick to the mock-up (keeping it commented cause it may be useful to be able to resize the panels)
default image avatar
fix crash when address not set
2024-02-01 15:19:29 +01:00

76 lines
4.5 KiB
QML

pragma Singleton
import QtQuick 2.15
QtObject {
property string welcomeLinphoneLogo: "image://internal/linphone.svg"
property string welcomeLock: "image://internal/secured.svg"
property string welcomeOpenSource: "image://internal/open_source.svg"
property string eyeHide: "image://internal/eye.svg"
property string eyeShow: "image://internal/eye-slash.svg"
property string downArrow: "image://internal/caret-down.svg"
property string returnArrow: "image://internal/caret-left.svg"
property string rightArrow: "image://internal/caret-right.svg"
property string upArrow: "image://internal/caret-up.svg"
property string info: "image://internal/info.svg"
property string loginImage: "image://internal/login_image.svg"
property string belledonne: "image://internal/belledonne.svg"
property string profile: "image://internal/user-circle.svg"
property string manageProfile: "image://internal/user-circle-gear.svg"
property string verif_page_image: "image://internal/verif_page_image.svg"
property string check: "image://internal/check.svg"
property string dialer: "image://internal/dialer.svg"
property string dialerSelected: "image://internal/dialer-selected.svg"
property string chiffrement: "image://internal/chiffrement.svg"
property string interoperable: "image://internal/interoperable.svg"
property string phone: "image://internal/phone.svg"
property string phoneSelected: "image://internal/phone-selected.svg"
property string newCall: "image://internal/phone-plus.svg"
property string endCall: "image://internal/phone-disconnect.svg"
property string callList: "image://internal/phone-list.svg"
property string transferCall: "image://internal/phone-transfer.svg"
property string adressBook: "image://internal/address-book.svg"
property string adressBookSelected: "image://internal/address-book-selected.svg"
property string chatTeardropText: "image://internal/chat-teardrop-text.svg"
property string chatTeardropTextSelected: "image://internal/chat-teardrop-text-selected.svg"
property string usersThree: "image://internal/users-three.svg"
property string usersThreeSelected: "image://internal/users-three-selected.svg"
property string noItemImage: "image://internal/noItemImage.svg"
property string verticalDots: "image://internal/dots-three-vertical.svg"
property string more: "image://internal/more.svg"
property string plusCircle: "image://internal/plus-circle.svg"
property string micro: "image://internal/microphone-stage.svg"
property string groupCall: "image://internal/group-call.svg"
property string magnifier: "image://internal/magnifying-glass.svg"
property string backspaceFill: "image://internal/backspace-fill.svg"
property string closeX: "image://internal/x.svg"
property string incomingCall: "image://internal/incoming_call.svg"
property string incomingCallMissed: "image://internal/incoming_call_missed.svg"
property string incomingCallRejected: "image://internal/incoming_call_rejected.svg"
property string outgoingCall: "image://internal/outgoing_call.svg"
property string outgoingCallMissed: "image://internal/outgoing_call_missed.svg"
property string outgoingCallRejected: "image://internal/outgoing_call_rejected.svg"
property string microphone: "image://internal/microphone.svg"
property string microphoneSlash: "image://internal/microphone-slash.svg"
property string camera: "image://internal/camera.svg"
property string videoCamera: "image://internal/video-camera.svg"
property string videoCameraSlash: "image://internal/video-camera-slash.svg"
property string speaker: "image://internal/speaker-high.svg"
property string speakerSlash: "image://internal/speaker-slash.svg"
property string trusted: "image://internal/trusted.svg"
property string avatar: "image://internal/randomAvatar.png"
property string pause: "image://internal/pause.svg"
property string play: "image://internal/play.svg"
property string smiley: "image://internal/smiley.svg"
property string trashCan: "image://internal/trash-simple.svg"
property string copy: "image://internal/copy.svg"
property string empty: "image://internal/empty.svg"
property string heart: "image://internal/heart.svg"
property string heartFill: "image://internal/heart-fill.svg"
property string recordFill: "image://internal/record-fill.svg"
property string mediaEncryptionZrtpPq: "image://internal/media_encryption_zrtp_pq.svg"
property string pencil: "image://internal/pencil-simple.svg"
property string shareNetwork: "image://internal/share-network.svg"
property string bell: "image://internal/bell-simple.svg"
property string bellSlash: "image://internal/bell-simple-slash.svg"
}