Files
qt-creator/share/qtcreator/qmldesigner/propertyeditor/Qt/SpinBox.qml

104 lines
2.6 KiB
QML
Raw Normal View History

import Qt 4.6
import Bauhaus 1.0
QWidget { //This is a special spinBox that does color coding for states
id: spinBox;
property var backendValue;
property var baseStateFlag;
property alias singleStep: box.singleStep;
property alias minimum: box.minimum
property alias maximum: box.maximum
property alias enabled: box.enabled
minimumHeight: 22;
onBaseStateFlagChanged: {
evaluate();
}
onBackendValueChanged: {
evaluate();
}
property var isEnabled: spinBox.enabled
onIsEnabledChanged: {
evaluate();
}
function evaluate() {
if (backendValue === undefined)
return;
if (!enabled) {
box.setStyleSheet("color: "+scheme.disabledColor);
} else {
if (!(baseStateFlag === undefined) && baseStateFlag) {
if (backendValue.isInModel)
box.setStyleSheet("color: "+scheme.changedBaseColor);
else
box.setStyleSheet("color: "+scheme.defaultColor);
} else {
if (backendValue.isInSubState)
box.setStyleSheet("color: "+scheme.changedStateColor);
else
box.setStyleSheet("color: "+scheme.defaultColor);
}
}
}
property bool isInModel: backendValue.isInModel;
onIsInModelChanged: {
evaluate();
}
property bool isInSubState: backendValue.isInSubState;
onIsInSubStateChanged: {
evaluate();
}
ColorScheme { id:scheme; }
layout: HorizontalLayout {
QSpinBox {
property alias backendValue: spinBox.backendValue
keyboardTracking: false;
id: box;
enabled: backendValue.isBound
property bool readingFromBackend: false;
property int valueFromBackend: spinBox.backendValue.value;
onValueFromBackendChanged: {
readingFromBackend = true;
value = valueFromBackend;
readingFromBackend = false;
evaluate();
}
onValueChanged: {
backendValue.value = value;
}
onFocusChanged: {
if (focus)
transaction.start();
else
transaction.end();
}
onEditingFinished: {
focus = false;
}
}
}
ExtendedFunctionButton {
backendValue: spinBox.backendValue;
y: box.y + 4
x: box.x + 2
visible: spinBox.enabled
}
}