349 lines
12 KiB
C
349 lines
12 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
#include <ctype.h>
|
|
#include <extend.h>
|
|
#include <set.h>
|
|
|
|
HB_set_struct hb_set;
|
|
BOOL hb_set_century;
|
|
|
|
static BOOL set_logical (PITEM pItem)
|
|
{
|
|
BOOL logical;
|
|
if (IS_LOGICAL (pItem)) logical = pItem->value.iLogical;
|
|
else logical = FALSE;
|
|
return (logical);
|
|
}
|
|
|
|
static int set_number (PITEM pItem, int old_value)
|
|
{
|
|
int number;
|
|
if (IS_INTEGER (pItem)) number = pItem->value.iNumber;
|
|
else if (IS_LONG (pItem)) number = (int)pItem->value.lNumber;
|
|
else if (IS_DOUBLE (pItem)) number = (int)pItem->value.dNumber;
|
|
else number = old_value;
|
|
return (number);
|
|
}
|
|
|
|
static char * set_string (PITEM pItem, char * old_str)
|
|
{
|
|
char * string;
|
|
if (IS_STRING (pItem))
|
|
{
|
|
int size = pItem->wLength;
|
|
if (old_str) string = (char*)_xrealloc (old_str, size + 1);
|
|
else string = (char*)_xgrab (size + 1);
|
|
memcpy (string, pItem->value.szText, size);
|
|
string [size] = 0;
|
|
}
|
|
else string = old_str;
|
|
return (string);
|
|
}
|
|
|
|
HARBOUR HB_SETCENTURY (void)
|
|
{
|
|
int digit, count, size, y_size, y_start, y_stop;
|
|
int old_century_setting = hb_set_century;
|
|
PITEM pItem = _param (1, IT_ANY);
|
|
char *szDateFormat, *szNewFormat;
|
|
|
|
/* Start by returning the current setting */
|
|
_retl (hb_set_century);
|
|
/*
|
|
* Then change the setting if the parameter is a logical value, or is
|
|
* either "ON" or "OFF" (regardless of case)
|
|
*/
|
|
if ( pItem && IS_LOGICAL (pItem)) hb_set_century = pItem->value.iLogical;
|
|
else if ( pItem && IS_STRING (pItem))
|
|
{
|
|
if (pItem->wLength == 2 && toupper (pItem->value.szText [0]) == 'O'
|
|
&& toupper (pItem->value.szText [1]) == 'N')
|
|
hb_set_century = TRUE;
|
|
else if (pItem->wLength == 3 && toupper (pItem->value.szText [0]) == 'O'
|
|
&& toupper (pItem->value.szText [1]) == 'F' && toupper (pItem->value.szText [2]) == 'F')
|
|
hb_set_century = FALSE;
|
|
}
|
|
/*
|
|
* Finally, if the setting changed, adjust the current date format to use
|
|
* the correct number of year digits.
|
|
*/
|
|
if (old_century_setting != hb_set_century)
|
|
{
|
|
/* Convert to upper case and determine where year is */
|
|
y_start = y_stop = -1;
|
|
szDateFormat = hb_set.HB_SET_DATEFORMAT;
|
|
size = strlen (szDateFormat);
|
|
for (count = 0; count < size; count++)
|
|
{
|
|
digit = toupper (szDateFormat [count]);
|
|
if (digit == 'Y')
|
|
{
|
|
if (y_start == -1) y_start = count;
|
|
}
|
|
else if (y_start > -1 && y_stop == -1) y_stop = count;
|
|
szDateFormat [count] = digit;
|
|
}
|
|
/* Determine size of year in current format */
|
|
if (y_start < 0)
|
|
{
|
|
y_start = 0; /* There is no year in the current format */
|
|
y_stop = 0;
|
|
}
|
|
else if (y_stop < 0) y_stop = size + 1; /* All digits are year digits */
|
|
y_size = y_stop - y_start;
|
|
/* Calculate size of new format */
|
|
size -= y_size;
|
|
if (hb_set_century) size += 4;
|
|
else size += 2;
|
|
/* Create the new date format */
|
|
szNewFormat = (char*)_xgrab (size + 1);
|
|
if (y_start > 0) memcpy (szNewFormat, szDateFormat, y_start);
|
|
szNewFormat [y_start] = 0;
|
|
strcat (szNewFormat, "YY");
|
|
if (hb_set_century) strcat (szNewFormat, "YY");
|
|
strcat (szNewFormat, szDateFormat + y_stop);
|
|
_xfree (szDateFormat);
|
|
hb_set.HB_SET_DATEFORMAT = szNewFormat;
|
|
}
|
|
}
|
|
|
|
HARBOUR SET (void)
|
|
{
|
|
int args = _pcount();
|
|
PITEM pArg2;
|
|
|
|
HB_set_enum set_specifier = (HB_set_enum)_parni(1);
|
|
if (args > 1) pArg2 = _param (2, IT_ANY);
|
|
|
|
switch (set_specifier)
|
|
{
|
|
case HB_SET_ALTERNATE :
|
|
_retl (hb_set.HB_SET_ALTERNATE);
|
|
if (args > 1) hb_set.HB_SET_ALTERNATE = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_ALTFILE :
|
|
if (hb_set.HB_SET_ALTFILE) _retc (hb_set.HB_SET_ALTFILE);
|
|
else _retc ("");
|
|
if (args > 1) hb_set.HB_SET_ALTFILE = set_string (pArg2, hb_set.HB_SET_ALTFILE);
|
|
break;
|
|
case HB_SET_BELL :
|
|
_retl (hb_set.HB_SET_BELL);
|
|
if (args > 1) hb_set.HB_SET_BELL = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_CANCEL :
|
|
_retl (hb_set.HB_SET_CANCEL);
|
|
if (args > 1) hb_set.HB_SET_CANCEL = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_COLOR :
|
|
if (hb_set.HB_SET_COLOR) _retc (hb_set.HB_SET_COLOR);
|
|
else _retc ("");
|
|
if (args > 1) hb_set.HB_SET_COLOR = set_string (pArg2, hb_set.HB_SET_COLOR);
|
|
break;
|
|
case HB_SET_CONFIRM :
|
|
_retl (hb_set.HB_SET_CONFIRM);
|
|
if (args > 1) hb_set.HB_SET_CONFIRM = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_CONSOLE :
|
|
_retl (hb_set.HB_SET_CONSOLE);
|
|
if (args > 1) hb_set.HB_SET_CONSOLE = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_CURSOR :
|
|
_retni (hb_set.HB_SET_CURSOR);
|
|
if (args > 1) hb_set.HB_SET_CURSOR = (HB_cursor_enum)set_number (pArg2, hb_set.HB_SET_CURSOR);
|
|
break;
|
|
case HB_SET_DATEFORMAT :
|
|
if (hb_set.HB_SET_DATEFORMAT) _retc (hb_set.HB_SET_DATEFORMAT);
|
|
else _retc ("");
|
|
if (args > 1) hb_set.HB_SET_DATEFORMAT = set_string (pArg2, hb_set.HB_SET_DATEFORMAT);
|
|
break;
|
|
case HB_SET_DEBUG :
|
|
_retl (hb_set.HB_SET_DEBUG);
|
|
if (args > 1) hb_set.HB_SET_DEBUG = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_DECIMALS :
|
|
_retni (hb_set.HB_SET_DECIMALS);
|
|
if (args > 1) hb_set.HB_SET_DECIMALS = set_number (pArg2, hb_set.HB_SET_DECIMALS);
|
|
break;
|
|
case HB_SET_DEFAULT :
|
|
if (hb_set.HB_SET_DEFAULT) _retc (hb_set.HB_SET_DEFAULT);
|
|
else _retc ("");
|
|
if (args > 1) hb_set.HB_SET_DEFAULT = set_string (pArg2, hb_set.HB_SET_DEFAULT);
|
|
break;
|
|
case HB_SET_DELETED :
|
|
_retl (hb_set.HB_SET_DELETED);
|
|
if (args > 1) hb_set.HB_SET_DELETED = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_DELIMCHARS :
|
|
if (hb_set.HB_SET_DELIMCHARS) _retc (hb_set.HB_SET_DELIMCHARS);
|
|
else _retc ("");
|
|
if (args > 1) hb_set.HB_SET_DELIMCHARS = set_string (pArg2, hb_set.HB_SET_DELIMCHARS);
|
|
break;
|
|
case HB_SET_DELIMITERS :
|
|
_retl (hb_set.HB_SET_DELIMITERS);
|
|
if (args > 1) hb_set.HB_SET_DELIMITERS = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_DEVICE :
|
|
if (hb_set.HB_SET_DEVICE) _retc (hb_set.HB_SET_DEVICE);
|
|
else _retc ("");
|
|
if (args > 1) hb_set.HB_SET_DEVICE = set_string (pArg2, hb_set.HB_SET_DEVICE);
|
|
break;
|
|
case HB_SET_EPOCH :
|
|
_retni (hb_set.HB_SET_EPOCH);
|
|
if (args > 1) hb_set.HB_SET_EPOCH = set_number (pArg2, hb_set.HB_SET_EPOCH);
|
|
break;
|
|
case HB_SET_ESCAPE :
|
|
_retl (hb_set.HB_SET_ESCAPE);
|
|
if (args > 1) hb_set.HB_SET_ESCAPE = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_EVENTMASK :
|
|
_retni (hb_set.HB_SET_EVENTMASK);
|
|
if (args > 1) hb_set.HB_SET_EVENTMASK = (HB_inkey_enum)set_number (pArg2, hb_set.HB_SET_EVENTMASK);
|
|
break;
|
|
case HB_SET_EXACT :
|
|
_retl (hb_set.HB_SET_EXACT);
|
|
if (args > 1) hb_set.HB_SET_EXACT = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_EXCLUSIVE :
|
|
_retl (hb_set.HB_SET_EXCLUSIVE);
|
|
if (args > 1) hb_set.HB_SET_EXCLUSIVE = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_EXIT :
|
|
_retl (hb_set.HB_SET_EXIT);
|
|
if (args > 1) hb_set.HB_SET_EXIT = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_EXTRA :
|
|
_retl (hb_set.HB_SET_EXTRA);
|
|
if (args > 1) hb_set.HB_SET_EXTRA = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_EXTRAFILE :
|
|
if (hb_set.HB_SET_EXTRAFILE) _retc (hb_set.HB_SET_EXTRAFILE);
|
|
else _retc ("");
|
|
if (args > 1) hb_set.HB_SET_EXTRAFILE = set_string (pArg2, hb_set.HB_SET_EXTRAFILE);
|
|
break;
|
|
case HB_SET_FIXED :
|
|
_retl (hb_set.HB_SET_FIXED);
|
|
if (args > 1) hb_set.HB_SET_FIXED = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_INSERT :
|
|
_retl (hb_set.HB_SET_INSERT);
|
|
if (args > 1) hb_set.HB_SET_INSERT = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_INTENSITY :
|
|
_retl (hb_set.HB_SET_INTENSITY);
|
|
if (args > 1) hb_set.HB_SET_INTENSITY = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_MARGIN :
|
|
_retni (hb_set.HB_SET_MARGIN);
|
|
if (args > 1) hb_set.HB_SET_MARGIN = set_number (pArg2, hb_set.HB_SET_MARGIN);
|
|
break;
|
|
case HB_SET_MCENTER :
|
|
_retl (hb_set.HB_SET_MCENTER);
|
|
if (args > 1) hb_set.HB_SET_MCENTER = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_MESSAGE :
|
|
_retni (hb_set.HB_SET_MESSAGE);
|
|
if (args > 1) hb_set.HB_SET_MESSAGE = set_number (pArg2, hb_set.HB_SET_MESSAGE);
|
|
break;
|
|
case HB_SET_PATH :
|
|
if (hb_set.HB_SET_PATH) _retc (hb_set.HB_SET_PATH);
|
|
if (args > 1) hb_set.HB_SET_PATH = set_string (pArg2, hb_set.HB_SET_PATH);
|
|
else _retc ("");
|
|
break;
|
|
case HB_SET_PRINTER :
|
|
_retl (hb_set.HB_SET_PRINTER);
|
|
if (args > 1) hb_set.HB_SET_PRINTER = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_PRINTFILE :
|
|
if (hb_set.HB_SET_PRINTFILE) _retc (hb_set.HB_SET_PRINTFILE);
|
|
else _retc ("");
|
|
if (args > 1) hb_set.HB_SET_PRINTFILE = set_string (pArg2, hb_set.HB_SET_PRINTFILE);
|
|
break;
|
|
case HB_SET_SCOREBOARD :
|
|
_retl (hb_set.HB_SET_SCOREBOARD);
|
|
if (args > 1) hb_set.HB_SET_SCOREBOARD = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_SCROLLBREAK:
|
|
_retl (hb_set.HB_SET_SCROLLBREAK);
|
|
if (args > 1) hb_set.HB_SET_SCROLLBREAK = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_SOFTSEEK :
|
|
_retl (hb_set.HB_SET_SOFTSEEK);
|
|
if (args > 1) hb_set.HB_SET_SOFTSEEK = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_TYPEAHEAD :
|
|
_retni (hb_set.HB_SET_TYPEAHEAD);
|
|
if (args > 1) hb_set.HB_SET_TYPEAHEAD = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_UNIQUE :
|
|
_retl (hb_set.HB_SET_UNIQUE);
|
|
if (args > 1) hb_set.HB_SET_UNIQUE = set_logical (pArg2);
|
|
break;
|
|
case HB_SET_WRAP :
|
|
_retl (hb_set.HB_SET_WRAP);
|
|
if (args > 1) hb_set.HB_SET_WRAP = set_logical (pArg2);
|
|
break;
|
|
}
|
|
}
|
|
|
|
void InitializeSets (void)
|
|
{
|
|
hb_set_century = FALSE;
|
|
hb_set.HB_SET_ALTERNATE = FALSE;
|
|
hb_set.HB_SET_ALTFILE = 0; /* NULL pointer */
|
|
hb_set.HB_SET_BELL = FALSE;
|
|
hb_set.HB_SET_CANCEL = TRUE;
|
|
hb_set.HB_SET_COLOR = (char*)_xgrab (20);
|
|
memcpy (hb_set.HB_SET_COLOR, "W/N,N/W,N/N,N/N,N/W", 20);
|
|
hb_set.HB_SET_CONFIRM = FALSE;
|
|
hb_set.HB_SET_CONSOLE = TRUE;
|
|
hb_set.HB_SET_CURSOR = SC_NORMAL;
|
|
hb_set.HB_SET_DATEFORMAT = (char*)_xgrab (9);
|
|
memcpy (hb_set.HB_SET_DATEFORMAT, "mm/dd/yy", 9);
|
|
hb_set.HB_SET_DEBUG = FALSE;
|
|
hb_set.HB_SET_DECIMALS = 2;
|
|
hb_set.HB_SET_DEFAULT = (char*)_xgrab (1);
|
|
*hb_set.HB_SET_DEFAULT = 0;
|
|
hb_set.HB_SET_DELETED = FALSE;
|
|
hb_set.HB_SET_DELIMCHARS = (char*)_xgrab (3);
|
|
memcpy (hb_set.HB_SET_DELIMCHARS, "::", 3);
|
|
hb_set.HB_SET_DELIMITERS = FALSE;
|
|
hb_set.HB_SET_DEVICE = (char*)_xgrab (7);
|
|
memcpy (hb_set.HB_SET_DEVICE, "SCREEN", 7);
|
|
hb_set.HB_SET_EPOCH = 1900;
|
|
hb_set.HB_SET_ESCAPE = 1;
|
|
hb_set.HB_SET_EVENTMASK = INKEY_KEYBOARD;
|
|
hb_set.HB_SET_EXACT = FALSE;
|
|
hb_set.HB_SET_EXCLUSIVE = TRUE;
|
|
hb_set.HB_SET_EXIT = FALSE;
|
|
hb_set.HB_SET_EXTRA = FALSE; /* TODO: What is this for? */
|
|
hb_set.HB_SET_EXTRAFILE = 0; /* TODO: What is this for? */
|
|
hb_set.HB_SET_FIXED = FALSE;
|
|
hb_set.HB_SET_INSERT = FALSE;
|
|
hb_set.HB_SET_INTENSITY = TRUE;
|
|
hb_set.HB_SET_MARGIN = 0;
|
|
hb_set.HB_SET_MCENTER = FALSE;
|
|
hb_set.HB_SET_MESSAGE = 0;
|
|
hb_set.HB_SET_PATH = (char*)_xgrab (1);
|
|
*hb_set.HB_SET_PATH = 0;
|
|
hb_set.HB_SET_PRINTER = FALSE;
|
|
hb_set.HB_SET_PRINTFILE = 0; /* NULL pointer */
|
|
hb_set.HB_SET_SCOREBOARD = TRUE;
|
|
hb_set.HB_SET_SCROLLBREAK = TRUE;
|
|
hb_set.HB_SET_SOFTSEEK = FALSE;
|
|
hb_set.HB_SET_TYPEAHEAD = 50;
|
|
hb_set.HB_SET_UNIQUE = FALSE;
|
|
hb_set.HB_SET_WRAP = FALSE;
|
|
}
|
|
|
|
void ReleaseSets (void)
|
|
{
|
|
_xfree (hb_set.HB_SET_COLOR);
|
|
_xfree (hb_set.HB_SET_DATEFORMAT);
|
|
_xfree (hb_set.HB_SET_DEFAULT);
|
|
_xfree (hb_set.HB_SET_DELIMCHARS);
|
|
_xfree (hb_set.HB_SET_DEVICE);
|
|
_xfree (hb_set.HB_SET_PATH);
|
|
}
|