12345678910111213141516171819202122232425262728293031323334 |
- #ifndef MC__WIDGET_RADIO_H
- #define MC__WIDGET_RADIO_H
- #define RADIO(x) ((WRadio *)(x))
- typedef struct WRadio
- {
- Widget widget;
- unsigned int state;
- int pos, sel;
- int count;
- hotkey_t *texts;
- } WRadio;
- WRadio *radio_new (int y, int x, int count, const char **text);
- #endif
|