You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
570 B
32 lines
570 B
/* Do not edit this file. It was automatically generated. */ |
|
|
|
#ifndef HEADER_SignalsPanel |
|
#define HEADER_SignalsPanel |
|
|
|
#include "Panel.h" |
|
#include "SignalItem.h" |
|
#include "RichString.h" |
|
|
|
#include "debug.h" |
|
#include <assert.h> |
|
|
|
#include <ctype.h> |
|
|
|
|
|
typedef struct SignalsPanel_ { |
|
Panel super; |
|
|
|
int state; |
|
Signal** signals; |
|
} SignalsPanel; |
|
|
|
|
|
SignalsPanel* SignalsPanel_new(int x, int y, int w, int h); |
|
|
|
void SignalsPanel_delete(Object* object); |
|
|
|
void SignalsPanel_reset(SignalsPanel* this); |
|
|
|
HandlerResult SignalsPanel_eventHandler(Panel* super, int ch); |
|
|
|
#endif
|
|
|