//#import #import "PhWidget.h" typedef int (*Callback) (PtWidget_t *, void *, PtCallbackInfo_t *); @interface PhButton : PhWidget { int DIMx; int DIMy; int POSx; int POSy; char* tekst; } @property int DIMx, DIMy, POSx, POSy; @property char* tekst; /* Public methods */ - (void) createButton; - (void) AddCallback: (Callback) callback; - (void) setWidth: (int) w andHeight: (int) h; @end