shithub: libnate

ref: 7d7806db6cd48b8ebd565f636eebc59939e72c53
dir: /n_box.h/

View raw version
extern char* NBox_Type;

typedef struct NBox NBox;
struct NBox {
	Nelem;
	DECL_ACCESSOR_OneParam(NBox, Slot, Nelem*);
	DECL_ACCESSOR_TwoParams(NBox, Border, int, Image*);
	DECL_ACCESSOR_OneParam(NBox, SizeToContent, int);
	DECL_ACCESSOR_OneParam(NBox, Size, Point);
	DECL_ACCESSOR_TwoParams(NBox, OnClick, OnclickHandler, void*);
	DECL_ACCESSOR_OneParam(NBox, Padding, Nmargin);
	
	// private members
	Point size;
	int sizetocontent;
	int borderwidth;
	Nmargin padding;
	Image* bordercolor;
	int (*hitfunc)(Mouse, Nelem*, void*);
	void* hitaux;
	int ishit;
};

NBox* New_Box(char*);