mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 06:52:36 +02:00
17 lines
386 B
QML
17 lines
386 B
QML
import QtQuick.Controls 1.3 as Original
|
|
import QtQuick.Controls.Styles 1.3
|
|
import "../styles"
|
|
import "."
|
|
Original.CheckBox {
|
|
text: "Check Box"
|
|
style: CheckBoxStyle {
|
|
indicator: FontAwesome {
|
|
text: control.checked ? "\uf046" : "\uf096"
|
|
}
|
|
label: Text {
|
|
text: control.text
|
|
renderType: Text.QtRendering
|
|
}
|
|
}
|
|
|
|
}
|