Forgot to attach the example file.

Michael

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?
#include <newt.h>
#include <stdlib.h>

int main(void) {
    newtComponent label,form;
    newtInit();
    newtCls();

    newtDrawRootText(0, 0, "Some root text");
    newtDrawRootText(-25, -2, "Root text in the other corner");


    newtPushHelpLine(NULL);
    
    newtRefresh();
    sleep(1);

    newtPushHelpLine("A help line");
    newtRefresh();
    sleep(1);

    newtPopHelpLine();
    newtRefresh();
    sleep(1);

	label = newtLabel(1, 18, ""),
	form = newtForm(NULL, NULL, 0);
	newtFormAddComponents(form, label, NULL);
	newtDrawForm(form);
	sleep(5);
    newtFinished();
}

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to