249f4a8dc0c2d606a69d86693178cecb65197067 chinhli Wed Apr 25 12:28:26 2012 -0700 Finished Greg's Login UI. diff --git src/inc/htmshell.h src/inc/htmshell.h index 80fcbec..e8cc0a1 100644 --- src/inc/htmshell.h +++ src/inc/htmshell.h @@ -77,30 +77,37 @@ void htmlEnd(); /* Write the end of a cgi-generated html file */ void htmEnd(FILE *f); /* Write the end of a stand-alone html file */ extern char *htmlStyleUndecoratedLink; /* Style that gets rid of underline of links. */ void htmlSetStyle(char *style); /* Set document wide style. A favorite style to * use for many purposes is htmlStyleUndecoratedLink * which will remove underlines from links. * Needs to be called before htmlStart or htmShell. */ +void htmlSetStyleSheet(char *styleSheet); +/* Set document wide style sheet by adding css name to HEAD part. + * Needs to be called before htmlStart or htmShell. */ + +void htmlSetFormClass(char *formClass); +/* Set class in the BODY part. */ + void htmlSetBackground(char *imageFile); /* Set background image - needs to be called before htmlStart * or htmShell. */ void htmlSetBgColor(int color); /* Set background color - needs to be called before htmlStart * or htmShell. */ void htmlBadVar(char *varName); /* Complain about input variables. */ void htmlImage(char *fileName, int width, int height); /* Display centered image file. */ jmp_buf htmlRecover; /* Error recovery jump. Exposed for cart's use. */