import QtQuick 2.0 import QtQuick.Controls 1.0 import QtQuick.Controls.Styles 1.0 Rectangle { width: 200 height: 200 Button { anchors.centerIn: parent text: "Some text" style: ButtonStyle { background: Rectangle { color: "skyblue" } padding { top: 0 bottom: 0 left: 0 right: 0 } label: Text { text: control.text font.family: font.name font.pointSize: 10.5 elide: Text.ElideRight FontLoader { id: font source: "http://example.com/arial.ttf" } } } } }