This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
magicka/deps/cdk-5.0-20161210/examples/entry_ex.c
2017-03-20 21:40:32 +10:00

109 lines
2.6 KiB
C

/* $Id: entry_ex.c,v 1.17 2016/12/04 15:22:16 tom Exp $ */
#include <cdk_test.h>
#ifdef HAVE_XCURSES
char *XCursesProgramName = "entry_ex";
#endif
static BINDFN_PROTO (XXXCB);
/*
* This demonstrates the Cdk entry field widget.
*/
int main (int argc, char **argv)
{
/* *INDENT-EQLS* */
CDKSCREEN *cdkscreen = 0;
CDKENTRY *directory = 0;
const char *title = "<C>Enter a\n<C>directory name.";
const char *label = "</U/5>Directory:<!U!5>";
char *info;
const char *mesg[10];
char temp[256];
CDK_PARAMS params;
CDKparseParams (argc, argv, &params, CDK_MIN_PARAMS);
cdkscreen = initCDKScreen (NULL);
/* Start CDK colors. */
initCDKColor ();
/* Create the entry field widget. */
directory = newCDKEntry (cdkscreen,
CDKparamValue (&params, 'X', CENTER),
CDKparamValue (&params, 'Y', CENTER),
title, label, A_NORMAL, '.', vMIXED,
40, 0, 256,
CDKparamValue (&params, 'N', TRUE),
CDKparamValue (&params, 'S', FALSE));
bindCDKObject (vENTRY, directory, '?', XXXCB, 0);
/* Is the widget null? */
if (directory == 0)
{
/* Clean up. */
destroyCDKScreen (cdkscreen);
endCDK ();
printf ("Cannot create the entry box. Is the window too small?\n");
ExitProgram (EXIT_FAILURE);
}
/* Draw the screen. */
refreshCDKScreen (cdkscreen);
/*
* Pass in whatever was given off of the command line. Notice we
* don't check if argv[1] is null or not. The function setCDKEntry
* already performs any needed checks.
*/
setCDKEntry (directory, argv[optind], 0, 256, TRUE);
/* Activate the entry field. */
info = activateCDKEntry (directory, 0);
/* Tell them what they typed. */
if (directory->exitType == vESCAPE_HIT)
{
mesg[0] = "<C>You hit escape. No information passed back.";
mesg[1] = "",
mesg[2] = "<C>Press any key to continue.";
destroyCDKEntry (directory);
popupLabel (cdkscreen, (CDK_CSTRING2) mesg, 3);
}
else if (directory->exitType == vNORMAL)
{
mesg[0] = "<C>You typed in the following";
sprintf (temp, "<C>(%.*s)", (int)(sizeof (temp) - 10), info);
mesg[1] = temp;
mesg[2] = "";
mesg[3] = "<C>Press any key to continue.";
destroyCDKEntry (directory);
popupLabel (cdkscreen, (CDK_CSTRING2) mesg, 4);
}
else
{
destroyCDKEntry (directory);
}
/* Clean up and exit. */
destroyCDKScreen (cdkscreen);
endCDK ();
ExitProgram (EXIT_SUCCESS);
}
static int XXXCB (EObjectType cdktype GCC_UNUSED,
void *object GCC_UNUSED,
void *clientData GCC_UNUSED,
chtype key GCC_UNUSED)
{
return (TRUE);
}