예제 #1
0
int dilate_cb(void)
{
    IupSetfAttribute(gc.msgbar, "TITLE", "Dilate call back");
    Image* tmp = gc.image;
    if (tmp != NULL) {
        gc.image = tmp->Dilatation();
        delete tmp;
    }
    repaint_cb(gc.canvas);   /* repaint canvas */
    return IUP_DEFAULT;
}