| Hisham Muhammad | d6231ba | 2006-03-04 18:16:49 +0000 | [diff] [blame^] | 1 | /* Do not edit this file. It was automatically genarated. */ |
| 2 | |
| 3 | #ifndef HEADER_SignalsListBox |
| 4 | #define HEADER_SignalsListBox |
| 5 | |
| 6 | #include "ListBox.h" |
| 7 | #include "SignalItem.h" |
| 8 | #include "RichString.h" |
| 9 | |
| 10 | #include "debug.h" |
| 11 | #include <assert.h> |
| 12 | |
| 13 | #include <ctype.h> |
| 14 | |
| 15 | |
| 16 | typedef struct SignalsListBox_ { |
| 17 | ListBox super; |
| 18 | |
| 19 | int state; |
| 20 | Signal** signals; |
| 21 | } SignalsListBox; |
| 22 | |
| 23 | |
| 24 | SignalsListBox* SignalsListBox_new(int x, int y, int w, int h); |
| 25 | |
| 26 | void SignalsListBox_delete(Object* object); |
| 27 | |
| 28 | void SignalsListBox_reset(SignalsListBox* this); |
| 29 | |
| 30 | HandlerResult SignalsListBox_EventHandler(ListBox* super, int ch); |
| 31 | |
| 32 | #endif |