mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-26 23:35:32 +02:00
26 lines
425 B
QML
26 lines
425 B
QML
import QtQuick 1.1
|
|
import tomahawk 1.0
|
|
import "../tomahawkimports"
|
|
|
|
Item {
|
|
id: root
|
|
|
|
property int margins: defaultFontHeight * 2
|
|
property alias content: contentLoader.source
|
|
|
|
signal next(string text)
|
|
|
|
Loader {
|
|
id: contentLoader
|
|
anchors.fill: parent
|
|
anchors.margins: root.margins
|
|
}
|
|
|
|
Connections {
|
|
target: contentLoader.item
|
|
|
|
onDone: root.next(text)
|
|
}
|
|
|
|
}
|