mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-28 09:19:19 +00:00
22 lines
635 B
QML
22 lines
635 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.0
|
|
|
|
// ===================================================================
|
|
// An animated small button with an image.
|
|
// ===================================================================
|
|
|
|
Button {
|
|
property int iconSize
|
|
property string icon
|
|
|
|
// Ugly hack, use current size, ActionBar size,
|
|
// or other parent height.
|
|
height: iconSize || parent.iconSize || parent.height
|
|
width: iconSize || parent.iconSize || parent.height
|
|
|
|
Image {
|
|
anchors.fill: parent
|
|
fillMode: Image.PreserveAspectFit
|
|
source: 'qrc:/imgs/' + parent.icon + '.svg'
|
|
}
|
|
}
|