mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01: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
|
|
}
|
|
}
|
|
|
|
}
|