pplugins/pui/label.h

17 lines
235 B
C

#ifndef LABEL_H
#define LABEL_H
struct Label : Widget {
Colour colour;
char text[64];
bool dirty;
float cx;
float cy;
/* virtual */ void OnPaint(const PUi *pui) const;
void SetLabel(const char *str);
};
#endif /* LABEL_H */