| 1080 | } |
| 1081 | |
| 1082 | ScriptCreatedComponentWrappers::ComboBoxWrapper::ComboBoxWrapper(ScriptContentComponent *content, ScriptingApi::Content::ScriptComboBox *scriptComboBox, int index) : |
| 1083 | ScriptCreatedComponentWrapper(content, index) |
| 1084 | { |
| 1085 | HiComboBox *cb = new HiComboBox(scriptComboBox->name.toString()); |
| 1086 | |
| 1087 | cb->setup(getProcessor(), getIndex(), scriptComboBox->name.toString()); |
| 1088 | cb->addListener(this); |
| 1089 | //cb->setLookAndFeel(&plaf); |
| 1090 | |
| 1091 | component = cb; |
| 1092 | |
| 1093 | initAllProperties(); |
| 1094 | |
| 1095 | cb->updateValue(dontSendNotification); |
| 1096 | |
| 1097 | MouseCursor cursor; |
| 1098 | if (setMouseCursorFromParentPanel(scriptComboBox, cursor)) |
| 1099 | cb->setMouseCursor(cursor); |
| 1100 | } |
| 1101 | |
| 1102 | void ScriptCreatedComponentWrappers::ComboBoxWrapper::updateComponent() |
| 1103 | { |
nothing calls this directly
no test coverage detected