282 lines
8.2 KiB
C
282 lines
8.2 KiB
C
/* $Id: cdkscale.c,v 1.14 2016/12/04 15:22:16 tom Exp $ */
|
|
|
|
#include <cdk_test.h>
|
|
|
|
#ifdef XCURSES
|
|
char *XCursesProgramName = "cdkscale";
|
|
#endif
|
|
|
|
/*
|
|
* Declare file local prototypes.
|
|
*/
|
|
static int widgetCB (EObjectType cdktype, void *object, void *clientData, chtype key);
|
|
|
|
/*
|
|
* Define file local variables.
|
|
*/
|
|
static const char *FPUsage = "-f Field Width -l Low Value -h High Value [-s Initial Value]] [-i Increment Value] [-a Accelerated Increment Value] [-T Title] [-L Label] [-B Buttons] [-O Output File] [-X X Position] [-Y Y Position] [-N] [-S]";
|
|
|
|
/*
|
|
*
|
|
*/
|
|
int main (int argc, char **argv)
|
|
{
|
|
/* *INDENT-EQLS* */
|
|
CDKSCREEN *cdkScreen = 0;
|
|
CDKSCALE *widget = 0;
|
|
CDKBUTTONBOX *buttonWidget = 0;
|
|
char *CDK_WIDGET_COLOR = 0;
|
|
char *temp = 0;
|
|
chtype *holder = 0;
|
|
int answer = 0;
|
|
int buttonCount = 0;
|
|
int selection = 0;
|
|
int shadowHeight = 0;
|
|
FILE *fp = stderr;
|
|
char **buttonList = 0;
|
|
int tmp, j1, j2;
|
|
|
|
CDK_PARAMS params;
|
|
boolean boxWidget;
|
|
boolean shadowWidget;
|
|
char *buttons;
|
|
char *label;
|
|
char *outputFile;
|
|
char *title;
|
|
int fieldWidth;
|
|
int incrementStep;
|
|
int acceleratedStep;
|
|
int initValue;
|
|
int lowValue;
|
|
int highValue;
|
|
int xpos;
|
|
int ypos;
|
|
|
|
CDKparseParams (argc, argv, ¶ms, "a:f:h:i:l:s:B:L:O:T:" CDK_MIN_PARAMS);
|
|
|
|
/* *INDENT-EQLS* */
|
|
xpos = CDKparamValue (¶ms, 'X', CENTER);
|
|
ypos = CDKparamValue (¶ms, 'Y', CENTER);
|
|
boxWidget = CDKparamValue (¶ms, 'N', TRUE);
|
|
shadowWidget = CDKparamValue (¶ms, 'S', FALSE);
|
|
acceleratedStep = CDKparamValue (¶ms, 'a', -1);
|
|
fieldWidth = CDKparamValue (¶ms, 'f', 0);
|
|
highValue = CDKparamValue (¶ms, 'h', INT_MIN);
|
|
incrementStep = CDKparamValue (¶ms, 'i', 1);
|
|
lowValue = CDKparamValue (¶ms, 'l', INT_MAX);
|
|
initValue = CDKparamValue (¶ms, 's', INT_MIN);
|
|
buttons = CDKparamString (¶ms, 'B');
|
|
label = CDKparamString (¶ms, 'L');
|
|
outputFile = CDKparamString (¶ms, 'O');
|
|
title = CDKparamString (¶ms, 'T');
|
|
|
|
incrementStep = abs (incrementStep);
|
|
|
|
/* Make sure all the command line parameters were provided. */
|
|
if (fieldWidth <= 0)
|
|
{
|
|
fprintf (stderr, "Usage: %s %s\n", argv[0], FPUsage);
|
|
ExitProgram (CLI_ERROR);
|
|
}
|
|
|
|
/* Make sure the user supplied the low/high values. */
|
|
if ((lowValue == INT_MAX) || (highValue == INT_MIN))
|
|
{
|
|
fprintf (stderr, "Usage: %s %s\n", argv[0], FPUsage);
|
|
ExitProgram (CLI_ERROR);
|
|
}
|
|
|
|
/* If the user asked for an output file, try to open it. */
|
|
if (outputFile != 0)
|
|
{
|
|
if ((fp = fopen (outputFile, "w")) == 0)
|
|
{
|
|
fprintf (stderr, "%s: Can not open output file %s\n", argv[0], outputFile);
|
|
ExitProgram (CLI_ERROR);
|
|
}
|
|
}
|
|
|
|
/* Make sure the low is lower than the high (and vice versa). */
|
|
if (lowValue > highValue)
|
|
{
|
|
/* *INDENT-EQLS* */
|
|
tmp = lowValue;
|
|
lowValue = highValue;
|
|
highValue = tmp;
|
|
}
|
|
|
|
/* Make sure the starting value is in range. */
|
|
if (initValue < lowValue)
|
|
{
|
|
initValue = lowValue;
|
|
}
|
|
else if (initValue > highValue)
|
|
{
|
|
initValue = highValue;
|
|
}
|
|
|
|
/* Check if the accelerated incremnt value was set. */
|
|
if (acceleratedStep <= 0)
|
|
{
|
|
acceleratedStep = (int)((highValue - lowValue) / 10);
|
|
acceleratedStep = MAXIMUM (1, acceleratedStep);
|
|
}
|
|
|
|
cdkScreen = initCDKScreen (NULL);
|
|
|
|
/* Start color. */
|
|
initCDKColor ();
|
|
|
|
/* Check if the user wants to set the background of the main screen. */
|
|
if ((temp = getenv ("CDK_SCREEN_COLOR")) != 0)
|
|
{
|
|
holder = char2Chtype (temp, &j1, &j2);
|
|
wbkgd (cdkScreen->window, holder[0]);
|
|
wrefresh (cdkScreen->window);
|
|
freeChtype (holder);
|
|
}
|
|
|
|
/* Get the widget color background color. */
|
|
if ((CDK_WIDGET_COLOR = getenv ("CDK_WIDGET_COLOR")) == 0)
|
|
{
|
|
CDK_WIDGET_COLOR = 0;
|
|
}
|
|
|
|
/* Create the entry widget. */
|
|
widget = newCDKScale (cdkScreen, xpos, ypos,
|
|
title, label,
|
|
A_NORMAL, fieldWidth,
|
|
initValue, lowValue, highValue,
|
|
incrementStep, acceleratedStep,
|
|
boxWidget, shadowWidget);
|
|
|
|
/* Check to make sure we created the dialog box. */
|
|
if (widget == 0)
|
|
{
|
|
/* Shut down curses and CDK. */
|
|
destroyCDKScreen (cdkScreen);
|
|
endCDK ();
|
|
|
|
fprintf (stderr,
|
|
"Error: Could not create the numeric scale field. "
|
|
"Is the window too small?\n");
|
|
|
|
ExitProgram (CLI_ERROR);
|
|
}
|
|
|
|
/* Split the buttons if they supplied some. */
|
|
if (buttons != 0)
|
|
{
|
|
/* Split the button list up. */
|
|
buttonList = CDKsplitString (buttons, '\n');
|
|
buttonCount = (int)CDKcountStrings ((CDK_CSTRING2) buttonList);
|
|
|
|
/* We need to create a buttonbox widget. */
|
|
buttonWidget = newCDKButtonbox (cdkScreen,
|
|
getbegx (widget->win),
|
|
(getbegy (widget->win)
|
|
+ widget->boxHeight - 1),
|
|
1, widget->boxWidth - 1,
|
|
0, 1, buttonCount,
|
|
(CDK_CSTRING2) buttonList, buttonCount,
|
|
A_REVERSE, boxWidget, FALSE);
|
|
CDKfreeStrings (buttonList);
|
|
|
|
setCDKButtonboxULChar (buttonWidget, ACS_LTEE);
|
|
setCDKButtonboxURChar (buttonWidget, ACS_RTEE);
|
|
|
|
/*
|
|
* We need to set the lower left and right
|
|
* characters of the widget.
|
|
*/
|
|
setCDKScaleLLChar (widget, ACS_LTEE);
|
|
setCDKScaleLRChar (widget, ACS_RTEE);
|
|
|
|
/*
|
|
* Bind the Tab key in the widget to send a
|
|
* Tab key to the button box widget.
|
|
*/
|
|
bindCDKObject (vSCALE, widget, KEY_TAB, widgetCB, buttonWidget);
|
|
bindCDKObject (vSCALE, widget, CDK_NEXT, widgetCB, buttonWidget);
|
|
bindCDKObject (vSCALE, widget, CDK_PREV, widgetCB, buttonWidget);
|
|
|
|
/* Check if the user wants to set the background of the widget. */
|
|
setCDKButtonboxBackgroundColor (buttonWidget, CDK_WIDGET_COLOR);
|
|
|
|
/* Draw the button widget. */
|
|
drawCDKButtonbox (buttonWidget, boxWidget);
|
|
}
|
|
|
|
/*
|
|
* If the user asked for a shadow, we need to create one. Do this instead
|
|
* of using the shadow parameter because the button widget is not part of
|
|
* the main widget and if the user asks for both buttons and a shadow, we
|
|
* need to create a shadow big enough for both widgets. Create the shadow
|
|
* window using the widgets shadowWin element, so screen refreshes will draw
|
|
* them as well.
|
|
*/
|
|
if (shadowWidget == TRUE)
|
|
{
|
|
/* Determine the height of the shadow window. */
|
|
shadowHeight = (buttonWidget == 0 ?
|
|
widget->boxHeight :
|
|
widget->boxHeight + buttonWidget->boxHeight - 1);
|
|
|
|
/* Create the shadow window. */
|
|
widget->shadowWin = newwin (shadowHeight,
|
|
widget->boxWidth,
|
|
getbegy (widget->win) + 1,
|
|
getbegx (widget->win) + 1);
|
|
|
|
/* Make sure we could have created the shadow window. */
|
|
if (widget->shadowWin != 0)
|
|
{
|
|
widget->shadow = TRUE;
|
|
|
|
/*
|
|
* We force the widget and buttonWidget to be drawn so the
|
|
* buttonbox widget will be drawn when the widget is activated.
|
|
* Otherwise the shadow window will draw over the button widget.
|
|
*/
|
|
drawCDKScale (widget, ObjOf (widget)->box);
|
|
eraseCDKButtonbox (buttonWidget);
|
|
drawCDKButtonbox (buttonWidget, ObjOf (buttonWidget)->box);
|
|
}
|
|
}
|
|
|
|
/* Check if the user wants to set the background of the widget. */
|
|
setCDKScaleBackgroundColor (widget, CDK_WIDGET_COLOR);
|
|
|
|
/* Activate the widget. */
|
|
answer = activateCDKScale (widget, 0);
|
|
|
|
/* If there were buttons, get the button selected. */
|
|
if (buttonWidget != 0)
|
|
{
|
|
selection = buttonWidget->currentButton;
|
|
destroyCDKButtonbox (buttonWidget);
|
|
}
|
|
|
|
/* End CDK. */
|
|
destroyCDKScale (widget);
|
|
destroyCDKScreen (cdkScreen);
|
|
endCDK ();
|
|
|
|
/* Print the value from the widget. */
|
|
fprintf (fp, "%d\n", answer);
|
|
fclose (fp);
|
|
|
|
/* Exit with the answer. */
|
|
ExitProgram (selection);
|
|
}
|
|
|
|
static int widgetCB (EObjectType cdktype GCC_UNUSED,
|
|
void *object GCC_UNUSED,
|
|
void *clientData,
|
|
chtype key)
|
|
{
|
|
CDKBUTTONBOX *buttonbox = (CDKBUTTONBOX *)clientData;
|
|
(void) injectCDKButtonbox (buttonbox, key);
|
|
return (TRUE);
|
|
}
|