| 208 | bool isSelected() {return selected;} |
| 209 | bool select() {return (selected = true);} |
| 210 | const char *getValue() {return value ? value : content;} |
| 211 | void setContent(const char *str, int len) {content = dStrndup(str, len);} |
| 212 | void addSelf (SelectionResource *res) |
| 213 | {res->addItem(label ? label : content, enabled, selected);} |