blob: f7f0b0ce20880bd3ea10175defd5c14526383c12 [file] [log] [blame]
Hisham Muhammadd6231ba2006-03-04 18:16:49 +00001/* 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
16typedef struct SignalsListBox_ {
17 ListBox super;
18
19 int state;
20 Signal** signals;
21} SignalsListBox;
22
23
24SignalsListBox* SignalsListBox_new(int x, int y, int w, int h);
25
26void SignalsListBox_delete(Object* object);
27
28void SignalsListBox_reset(SignalsListBox* this);
29
30HandlerResult SignalsListBox_EventHandler(ListBox* super, int ch);
31
32#endif