/* $Id: position_ex.c,v 1.12 2004/08/28 01:02:30 tom Exp $ */ #include #ifdef HAVE_XCURSES char *XCursesProgramName = "position_ex"; #endif /* * This demonstrates the positioning of a Cdk entry field widget. */ int main(int argc, char **argv) { /* Declare local variables.*/ CDKSCREEN *cdkscreen = 0; CDKENTRY *directory = 0; WINDOW *cursesWin = 0; char *label = "Directory: "; char *info = 0; char *mesg[10]; char temp[256]; CDK_PARAMS params; CDKparseParams(argc, argv, ¶ms, "w:" CDK_MIN_PARAMS); /* Set up CDK. */ cursesWin = initscr(); cdkscreen = initCDKScreen (cursesWin); /* Start CDK colors. */ initCDKColor(); /* Create the entry field widget. */ directory = newCDKEntry (cdkscreen, CDKparamValue(¶ms, 'X', CENTER), CDKparamValue(¶ms, 'Y', CENTER), 0, label, A_NORMAL, '.', vMIXED, CDKparamValue(¶ms, 'w', 40), 0, 256, CDKparamValue(¶ms, 'N', TRUE), CDKparamValue(¶ms, 'S', FALSE)); /* Is the widget null? */ if (directory == 0) { /* Clean up. */ destroyCDKScreen (cdkscreen); endCDK(); /* Print out a little message. */ printf ("Oops. Can't seem to create the entry box. Is the window too small?\n"); exit (EXIT_FAILURE); } /* Let the user move the widget around the window. */ drawCDKEntry (directory, ObjOf(directory)->box); positionCDKEntry (directory); /* Activate the entry field. */ info = activateCDKEntry (directory, 0); /* Tell them what they typed. */ if (directory->exitType == vESCAPE_HIT) { mesg[0] = "You hit escape. No information passed back."; mesg[1] = "", mesg[2] = "Press any key to continue."; popupLabel (cdkscreen, mesg, 3); } else if (directory->exitType == vNORMAL) { mesg[0] = "You typed in the following"; sprintf (temp, "(%.*s)", (int)(sizeof(temp) - 20), info); mesg[1] = copyChar (temp); mesg[2] = ""; mesg[3] = "Press any key to continue."; popupLabel (cdkscreen, mesg, 4); freeChar (mesg[1]); } /* Clean up and exit. */ destroyCDKEntry (directory); destroyCDKScreen (cdkscreen); endCDK(); exit (EXIT_SUCCESS); }