mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-23 06:38:07 +00:00
26 lines
577 B
QML
26 lines
577 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.0
|
|
|
|
import Common 1.0
|
|
|
|
// ===================================================================
|
|
// An animated small button with an image.
|
|
// ===================================================================
|
|
|
|
Button {
|
|
property alias icon: icon.icon
|
|
property int iconSize
|
|
|
|
flat: true
|
|
|
|
// Ugly hack, use current size, ActionBar size,
|
|
// or other parent height.
|
|
height: iconSize || parent.iconSize || parent.height
|
|
width: iconSize || parent.iconSize || parent.height
|
|
|
|
Icon {
|
|
id: icon
|
|
|
|
anchors.fill: parent
|
|
}
|
|
}
|