int max = OptionData.instance.getMaxValueFromKey(key);
int step = OptionData.instance.getStepValueFromKey(key);
for (int i = min; i <= max; i += step) {
combo.add(Integer.toString(i));
}
combo.select((OptionData.instance.getInt(key) - min) / step);
FormData fd = new FormData();
fd.top = new FormAttachment(0, 0);
fd.bottom = new FormAttachment(100, 0);
fd.right = new FormAttachment(100, 0);
fd.left = new FormAttachment(80, 0);