2006-06-06 20:28:42 +00:00
|
|
|
/* Do not edit this file. It was automatically generated. */
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
#ifndef HEADER_SignalsPanel
|
|
|
|
#define HEADER_SignalsPanel
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
#include "Panel.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "SignalItem.h"
|
|
|
|
#include "RichString.h"
|
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
typedef struct SignalsPanel_ {
|
|
|
|
Panel super;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
int state;
|
|
|
|
Signal** signals;
|
2006-05-30 13:47:28 +00:00
|
|
|
} SignalsPanel;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
SignalsPanel* SignalsPanel_new(int x, int y, int w, int h);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
void SignalsPanel_delete(Object* object);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
void SignalsPanel_reset(SignalsPanel* this);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
HandlerResult SignalsPanel_EventHandler(Panel* super, int ch);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
#endif
|