Android: extract progressBarStyle(Small|Large)

The indeterminate drawable is used for QtQuick Controls BusyIndicator

Task-number: QTBUG-35081
Change-Id: Iecdc6e80444b5134ec1fa61916c7ac1612cd275f
Reviewed-by: BogDan Vatra <bogdan@kde.org>
This commit is contained in:
J-P Nurmi 2014-05-26 11:08:51 +02:00 committed by The Qt Project
parent 3c04a2fbff
commit c7f99f3e86

View File

@ -1363,6 +1363,9 @@ public class ExtractStyle {
json.put("buttonStyle", extractTextAppearanceInformations("buttonStyle", "QPushButton", null, -1));
json.put("spinnerStyle", extractTextAppearanceInformations("spinnerStyle", "QComboBox", null, -1));
extractProgressBar(json, "progressBarStyleHorizontal", "QProgressBar");
extractProgressBar(json, "progressBarStyleLarge", null);
extractProgressBar(json, "progressBarStyleSmall", null);
extractProgressBar(json, "progressBarStyle", null);
extractAbsSeekBar(json, "seekBarStyle", "QSlider");
extractCompoundButton(json, "checkboxStyle", "QCheckBox");
json.put("editTextStyle", extractTextAppearanceInformations("editTextStyle", "QLineEdit", null, -1));