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/mentry_ex.c
2017-03-20 21:40:32 +10:00

70 lines
1.7 KiB
C

/* $Id: mentry_ex.c,v 1.11 2016/12/04 15:22:16 tom Exp $ */
#include <cdk_test.h>
#ifdef HAVE_XCURSES
char *XCursesProgramName = "mentry_ex";
#endif
int main (int argc, char **argv)
{
/* *INDENT-EQLS* */
CDKSCREEN *cdkscreen = 0;
CDKMENTRY *widget = 0;
char *info = 0;
const char *label = "</R>Message";
const char *title = "<C></5>Enter a message.<!5>";
CDK_PARAMS params;
CDKparseParams (argc, argv, &params, "w:h:l:" CDK_MIN_PARAMS);
cdkscreen = initCDKScreen (NULL);
/* Start CDK Colors. */
initCDKColor ();
/* Set up the multi-line entry field. */
widget = newCDKMentry (cdkscreen,
CDKparamValue (&params, 'X', CENTER),
CDKparamValue (&params, 'Y', CENTER),
title, label, A_BOLD, '.', vMIXED,
CDKparamValue (&params, 'w', 20),
CDKparamValue (&params, 'h', 5),
CDKparamValue (&params, 'l', 20),
0,
CDKparamValue (&params, 'N', TRUE),
CDKparamValue (&params, 'S', FALSE));
/* Is the object null? */
if (widget == 0)
{
/* Shut down CDK. */
destroyCDKScreen (cdkscreen);
endCDK ();
printf ("Cannot create CDK object. Is the window too small?\n");
ExitProgram (EXIT_FAILURE);
}
/* Draw the CDK screen. */
refreshCDKScreen (cdkscreen);
/* Set what ever was given from the command line. */
setCDKMentry (widget, argv[optind], 0, TRUE);
/* Activate this thing. */
activateCDKMentry (widget, 0);
info = strdup (widget->info);
/* Clean up. */
destroyCDKMentry (widget);
destroyCDKScreen (cdkscreen);
endCDK ();
printf ("\n\n\n");
printf ("Your message was : <%s>\n", info);
free (info);
ExitProgram (EXIT_SUCCESS);
}