linphone-desktop/Linphone/view/Item/RectangleTest.qml
Julien Wadel 577aee8c98 Feature : Call list.
- Add CallProxy for GUI to manage call list;
- Add a function on Core to retrieve remote address (TODO: change the name)
- Connect first/last call events.
- Fix wrong parameter in call notification.
2023-12-07 16:39:37 +01:00

14 lines
336 B
QML

import QtQuick 2.7
Rectangle {
function genRandomColor(){
return '#'+ Math.floor(Math.random()*255).toString(16)
+Math.floor(Math.random()*255).toString(16)
+Math.floor(Math.random()*255).toString(16)
}
color: genRandomColor() //"blue"
opacity: 0.2
border.color: genRandomColor() //"red"
border.width: 2
}