/* $Id$ */ #include static int create(MwWidget handle) { MwSetDefault(handle); return 0; } static void draw(MwWidget handle) { MwLLColor c = MwParseColor(handle, MwGetText(handle, MwNbackground)); MwRect r; r.x = 0; r.y = 0; r.width = MwGetInteger(handle, MwNwidth); r.height = MwGetInteger(handle, MwNheight); MwDrawRect(handle, &r, c); MwLLFreeColor(c); } MwClassRec MwWindowClassRec = { create, /* create */ NULL, /* destroy */ draw, /* draw */ NULL, /* click */ NULL /* parent_resize */ }; MwClass MwWindowClass = &MwWindowClassRec; void MwWindowSetIcon(MwWidget handle, MwLLPixmap pixmap) { MwLLSetIcon(handle->lowlevel, pixmap); }