123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239 |
- #define BUILDING_OPENDOORS
- #include <ctype.h>
- #include <stddef.h>
- #include <string.h>
- #include "OpenDoor.h"
- #include "ODCore.h"
- #include "ODGen.h"
- #include "ODPlat.h"
- #include "ODKrnl.h"
- #include "ODStat.h"
- static INT anCurrentFormatOffset[80];
- static BOOL abCurrentFormatLiteral[80];
- static char szCurrentOriginalString[81];
- static char *pszCurrentInput;
- static char *pszCurrentFormat;
- static unsigned char nCurrentStringLength;
- static char chCurrentBlank;
- static BOOL ODEditIsCharValidForPos(char chEntered, INT nPosition);
- static char ODEditAsCharForPos(char chEntered, INT nPosition);
- static void ODEditDisplayPermaliteral(WORD nFlags);
- ODAPIDEF WORD ODCALL od_edit_str(char *pszInput, char *pszFormat, INT nRow,
- INT nColumn, BYTE btNormalColour, BYTE btHighlightColour,
- char chBlank, WORD nFlags)
- {
- char chTemp;
- unsigned int nCount;
- unsigned char chCurrentValue;
- char *pchCurrent;
- unsigned int nCursorPos;
- INT nKeysPressed = 0;
- WORD wToReturn;
- BOOL bInsertMode = TRUE;
- char chAddAtEnd = '\0';
- BOOL bNormal = TRUE;
- tODInputEvent InputEvent;
-
- TRACE(TRACE_API, "od_edit_str()");
-
- if(!bODInitialized) od_init();
- OD_API_ENTRY();
-
- pszCurrentInput=(char *)pszInput;
- pszCurrentFormat=(char *)pszFormat;
-
- if(pszCurrentInput == NULL || pszCurrentFormat == NULL || nRow < 1
- || nColumn < 1)
- {
- od_control.od_error = ERR_PARAMETER;
- OD_API_EXIT();
- return(EDIT_RETURN_ERROR);
- }
-
- nCurrentStringLength = 0;
-
- chCurrentValue = 0;
-
- nCount = 0;
-
- for(pchCurrent = pszCurrentFormat; *pchCurrent;)
- {
-
- chTemp = *pchCurrent++;
-
- if(chCurrentValue == '\0')
- {
-
-
- if(chTemp == 39 || chTemp == 34)
- {
- chCurrentValue = chTemp;
- }
-
- else if(chTemp != 32)
- {
-
-
- if(nCurrentStringLength >= 80)
- {
- od_control.od_error = ERR_PARAMETER;
- OD_API_EXIT();
- return(EDIT_RETURN_ERROR);
- }
-
- anCurrentFormatOffset[nCurrentStringLength] = nCount;
-
- abCurrentFormatLiteral[nCurrentStringLength] = FALSE;
-
- ++nCurrentStringLength;
- }
- }
-
- else
- {
-
- if(chTemp == chCurrentValue)
- {
-
- chCurrentValue = '\0';
- }
- else
- {
-
-
- if(nCurrentStringLength >= 80)
- {
- od_control.od_error = ERR_PARAMETER;
- OD_API_EXIT();
- return(EDIT_RETURN_ERROR);
- }
-
- anCurrentFormatOffset[nCurrentStringLength] = nCount;
-
- abCurrentFormatLiteral[nCurrentStringLength] = TRUE;
-
- ++nCurrentStringLength;
- }
- }
-
- ++nCount;
- }
-
-
- if(nCurrentStringLength==0)
- {
- od_control.od_error = ERR_PARAMETER;
- OD_API_EXIT();
- return(EDIT_RETURN_ERROR);
- }
-
- if(nFlags & EDIT_FLAG_EDIT_STRING)
- {
-
- if(strlen(pszCurrentInput) > nCurrentStringLength)
- {
- pszCurrentInput[nCurrentStringLength] = '\0';
- }
-
- nCursorPos = strlen(pszCurrentInput);
- }
-
- else
- {
-
- pszCurrentInput[0] = '\0';
-
- nCursorPos = 0;
- }
-
- strcpy(szCurrentOriginalString,pszCurrentInput);
-
- od_set_attrib(btHighlightColour);
-
- chCurrentBlank = (nFlags & EDIT_FLAG_PASSWORD_MODE) ? ' ' : chBlank;
-
-
- if((nFlags & EDIT_FLAG_STRICT_INPUT) || (nFlags & EDIT_FLAG_PERMALITERAL))
- {
- bInsertMode = FALSE;
- }
-
- if(!(nFlags & EDIT_FLAG_NO_REDRAW))
- {
-
- od_set_cursor(nRow, nColumn);
- if(nFlags & EDIT_FLAG_PASSWORD_MODE)
- {
-
- od_repeat(chBlank, (BYTE)strlen(pszCurrentInput));
- }
- else
- {
-
- od_disp_str(pszCurrentInput);
- }
- if(nFlags & EDIT_FLAG_PERMALITERAL)
- {
-
-
- ODEditDisplayPermaliteral(nFlags);
- }
- else
- {
-
-
- BYTE btRemaining
- = (BYTE)(nCurrentStringLength - strlen(pszCurrentInput));
- if(!(nFlags & EDIT_FLAG_SHOW_SIZE)) ++btRemaining;
- od_repeat(chCurrentBlank, btRemaining);
- }
- }
-
- ODStatStartArrowUse();
-
- od_set_cursor(nRow, nColumn + nCursorPos);
-
- if(bNormal) goto keep_going;
- for(;;)
- {
-
- if(nFlags & EDIT_FLAG_AUTO_ENTER)
- {
-
- if(strlen(pszCurrentInput) == nCurrentStringLength)
- {
-
- wToReturn = EDIT_RETURN_ACCEPT;
-
- goto try_to_accept;
- }
- }
- keep_going:
-
-
-
- if((nFlags & EDIT_FLAG_PERMALITERAL)
- && (nCursorPos < nCurrentStringLength))
- {
- if(abCurrentFormatLiteral[nCursorPos])
- {
- if(nCursorPos < strlen(pszCurrentInput))
- {
- goto pressed_right_arrow;
- }
- chTemp = pszCurrentFormat[anCurrentFormatOffset[nCursorPos]];
- ++nKeysPressed;
- goto try_this_character;
- }
- }
- get_another_key:
-
- od_get_input(&InputEvent, OD_NO_TIMEOUT, GETIN_NORMAL);
-
-
- ++nKeysPressed;
- if(InputEvent.EventType == EVENT_EXTENDED_KEY)
- {
- switch(InputEvent.chKeyPress)
- {
- case OD_KEY_UP:
- case OD_KEY_SHIFTTAB:
- if(nFlags & EDIT_FLAG_FIELD_MODE)
- {
- wToReturn = EDIT_RETURN_PREVIOUS;
- goto try_to_accept;
- }
- break;
- case OD_KEY_DOWN:
- pressed_down_arrow:
- if(nFlags & EDIT_FLAG_FIELD_MODE)
- {
- wToReturn = EDIT_RETURN_NEXT;
- goto try_to_accept;
- }
- break;
- case OD_KEY_RIGHT:
- pressed_right_arrow:
-
- if(nCursorPos < strlen(pszCurrentInput))
- {
-
- nCursorPos++;
-
- od_set_cursor(nRow, nColumn + nCursorPos);
- }
- if(chAddAtEnd)
- {
- chAddAtEnd = 0;
- goto add_another_key;
- }
- break;
- case OD_KEY_LEFT:
- pressed_left_arrow:
-
- if(nCursorPos > 0)
- {
-
- nCursorPos--;
-
- od_set_cursor(nRow, nColumn + nCursorPos);
- }
-
-
- if((nFlags & EDIT_FLAG_PERMALITERAL)
- && abCurrentFormatLiteral[nCursorPos] && nCursorPos > 0)
- {
- goto pressed_left_arrow;
- }
- break;
- case OD_KEY_HOME:
-
- if(nCursorPos != 0)
- {
-
- nCursorPos = 0;
-
- od_set_cursor(nRow, nColumn);
- }
- break;
- case OD_KEY_END:
-
- if(nCursorPos != strlen(pszCurrentInput))
- {
-
- nCursorPos=strlen(pszCurrentInput);
-
- od_set_cursor(nRow,nColumn+nCursorPos);
- }
- break;
- case OD_KEY_DELETE:
- pressed_delete:
-
- if(!(nFlags & EDIT_FLAG_STRICT_INPUT)
- && nCursorPos < strlen(pszCurrentInput)
- && !(nFlags & EDIT_FLAG_PERMALITERAL))
- {
-
- chCurrentValue = strlen(pszCurrentInput) - 1;
- for(nCount = nCursorPos; nCount < chCurrentValue; ++nCount)
- {
- od_putch(
- pszCurrentInput[nCount] = pszCurrentInput[nCount + 1]);
- }
-
- pszCurrentInput[chCurrentValue] = '\0';
-
- od_putch(chCurrentBlank);
-
- od_set_cursor(nRow, nColumn + nCursorPos);
-
- goto check_cursor_char;
- }
- break;
- case OD_KEY_INSERT:
- if(!(nFlags & EDIT_FLAG_STRICT_INPUT)
- && !(nFlags & EDIT_FLAG_PERMALITERAL))
- {
-
- bInsertMode = !bInsertMode;
- }
- break;
- }
- }
- else if(InputEvent.EventType == EVENT_CHARACTER)
- {
- chTemp = InputEvent.chKeyPress;
- try_this_character:
- if(chTemp == 27)
- {
-
- if(nFlags & EDIT_FLAG_ALLOW_CANCEL)
- {
-
- strcpy(pszCurrentInput, szCurrentOriginalString);
-
- wToReturn = EDIT_RETURN_CANCEL;
-
-
- goto exit_and_redraw;
- }
- }
-
- else if(chTemp == 13 || chTemp == 26)
- {
-
- wToReturn = EDIT_RETURN_ACCEPT;
-
- goto try_to_accept;
- }
-
- else if(chTemp == 8)
- {
- backspace_again:
-
- if(nCursorPos > 0)
- {
- if(nFlags & EDIT_FLAG_PERMALITERAL)
- {
- for(nCount = 0;nCount < nCursorPos; ++nCount)
- {
- if(!abCurrentFormatLiteral[nCount]) goto continue_deletion;
- }
- goto get_another_key;
- }
- continue_deletion:
-
- if(nCursorPos == strlen(pszCurrentInput))
- {
-
- pszCurrentInput[--nCursorPos] = '\0';
- if((nFlags & EDIT_FLAG_PERMALITERAL)
- && abCurrentFormatLiteral[nCursorPos])
- {
- goto backspace_again;
- }
- else
- {
-
- od_set_cursor(nRow,nColumn+nCursorPos);
-
- od_putch(chCurrentBlank);
-
- od_set_cursor(nRow,nColumn+nCursorPos);
- }
- }
-
-
- else if(!(nFlags & EDIT_FLAG_STRICT_INPUT)
- && !(nFlags & EDIT_FLAG_PERMALITERAL))
- {
-
- --nCursorPos;
-
- od_set_cursor(nRow, nColumn + nCursorPos);
-
- goto pressed_delete;
- }
- }
- }
-
- else if(chTemp == 9)
- {
-
- goto pressed_down_arrow;
- }
-
- else if(chTemp == 25)
- {
-
- goto kill_whole_line;
- }
- else
- {
-
- if(nKeysPressed == 1 && (nFlags & EDIT_FLAG_AUTO_DELETE))
- {
- kill_whole_line:
-
- if(strlen(pszCurrentInput) != 0)
- {
-
- od_set_cursor(nRow,nColumn);
-
- od_repeat(chCurrentBlank, (BYTE)strlen(pszCurrentInput));
- }
-
- od_set_cursor(nRow,nColumn);
-
- nCursorPos = 0;
-
- pszCurrentInput[0] = '\0';
- }
- add_another_key:
- if(!ODEditIsCharValidForPos(chTemp,nCursorPos))
- {
-
- if(abCurrentFormatLiteral[nCursorPos])
- {
- if(nCursorPos < strlen(pszCurrentInput))
- {
- if(pszCurrentInput[nCursorPos] ==
- pszCurrentFormat[anCurrentFormatOffset[nCursorPos]])
- {
- chAddAtEnd = chTemp;
- goto pressed_right_arrow;
- }
- }
- chAddAtEnd = chTemp;
- chTemp = pszCurrentFormat[anCurrentFormatOffset[nCursorPos]];
- }
- else
- {
- continue;
- }
- }
-
- chTemp = ODEditAsCharForPos(chTemp, nCursorPos);
-
- if(nCursorPos >= strlen(pszCurrentInput))
- {
-
- nCursorPos = strlen(pszCurrentInput);
-
- if(nCursorPos < nCurrentStringLength)
- {
-
- if(nFlags & EDIT_FLAG_PASSWORD_MODE)
- {
-
- od_putch(chBlank);
- }
-
- else
- {
-
- od_putch(chTemp);
- }
-
- pszCurrentInput[nCursorPos] = chTemp;
-
- pszCurrentInput[++nCursorPos] = '\0';
- }
- }
-
- else if(bInsertMode)
- {
-
- if(strlen(pszCurrentInput) < nCurrentStringLength)
- {
-
- if(nFlags & EDIT_FLAG_PASSWORD_MODE)
- {
-
- od_set_cursor(nRow,nColumn+strlen(pszCurrentInput));
-
- od_putch(chBlank);
- }
-
- else
- {
-
- od_putch(chTemp);
-
- for(nCount = nCursorPos; nCount < strlen(pszCurrentInput);
- ++nCount)
- {
-
- od_putch(pszCurrentInput[nCount]);
- }
- }
- pszCurrentInput[(strlen(pszCurrentInput) + 1)] = '\0';
-
- for(nCount = strlen(pszCurrentInput); nCount > nCursorPos;
- --nCount)
- {
- pszCurrentInput[nCount] = pszCurrentInput[nCount-1];
- }
-
- pszCurrentInput[nCursorPos++] = chTemp;
-
- od_set_cursor(nRow, nColumn + nCursorPos);
- }
- else
- {
- goto get_another_key;
- }
- }
-
- else
- {
-
- if(nFlags & EDIT_FLAG_PASSWORD_MODE)
- {
-
- od_putch(chBlank);
- }
-
- else
- {
-
- od_putch(chTemp);
- }
-
- pszCurrentInput[nCursorPos++] = chTemp;
- }
-
- if(nCursorPos < nCurrentStringLength)
- {
-
- if(abCurrentFormatLiteral[nCursorPos])
- {
- chTemp = pszCurrentFormat[anCurrentFormatOffset[nCursorPos]];
- goto add_another_key;
- }
- }
- if(chAddAtEnd)
- {
- chTemp = chAddAtEnd;
- chAddAtEnd = 0;
- goto add_another_key;
- }
- check_cursor_char:
-
- if(nCursorPos < strlen(pszCurrentInput))
- {
-
- if(ODEditIsCharValidForPos(pszCurrentInput[nCursorPos],
- nCursorPos))
- {
-
- chTemp = ODEditAsCharForPos(pszCurrentInput[nCursorPos],
- nCursorPos);
-
- if(chTemp != pszCurrentInput[nCursorPos])
- {
-
- pszCurrentInput[nCursorPos] = chTemp;
-
- if(nFlags & EDIT_FLAG_PASSWORD_MODE)
- {
-
- od_putch(chBlank);
- }
-
- else
- {
-
- od_putch(chTemp);
- }
-
- od_set_cursor(nRow, nColumn + nCursorPos);
- }
- }
- }
- }
- }
- }
-
- try_to_accept:
-
- if(nFlags & EDIT_FLAG_FILL_STRING)
- {
-
- if(strlen(pszCurrentInput) != nCurrentStringLength) goto keep_going;
- }
-
- for(nCount = 0; nCount < strlen(pszCurrentInput); ++nCount)
- {
-
- if(!ODEditIsCharValidForPos(pszCurrentInput[nCount], nCount))
- goto keep_going;
- }
-
- chCurrentValue = FALSE;
-
- for(nCount = 0; nCount < strlen(pszCurrentInput); ++nCount)
- {
-
- chTemp = ODEditAsCharForPos(pszCurrentInput[nCount], nCount);
-
- if(chTemp != pszCurrentInput[nCount])
- {
-
- pszCurrentInput[nCount] = chTemp;
-
- chCurrentValue = TRUE;
- }
- }
-
- if(nFlags & EDIT_FLAG_LEAVE_BLANK)
- {
-
- nCount = 0;
- while(nCount<strlen(pszCurrentInput))
- {
- if(abCurrentFormatLiteral[nCount])
- {
- ++nCount;
- }
- else
- {
- break;
- }
- }
-
- if(strlen(pszCurrentInput) == nCount && nCount > 0)
- {
-
- pszCurrentInput[0] = '\0';
- goto exit_and_redraw;
- }
- }
-
- if(chCurrentValue) goto exit_and_redraw;
-
- if(!(nFlags & EDIT_FLAG_NO_REDRAW))
- {
- exit_and_redraw:
-
- od_set_attrib(btNormalColour);
-
- od_set_cursor(nRow,nColumn);
-
- if(nFlags & EDIT_FLAG_PASSWORD_MODE)
- {
-
- od_repeat(chBlank, (BYTE)strlen(pszCurrentInput));
- }
- else
- {
-
- od_disp_str(pszCurrentInput);
- }
-
- if(nFlags & EDIT_FLAG_KEEP_BLANK)
- {
-
- if(nFlags & EDIT_FLAG_PERMALITERAL)
- {
- ODEditDisplayPermaliteral(nFlags);
- }
- else
- {
- od_repeat(chCurrentBlank,
- (BYTE)(nCurrentStringLength - strlen(pszCurrentInput) + 1));
- }
- }
-
- else
- {
-
- od_repeat(' ',
- (BYTE)(nCurrentStringLength - strlen(pszCurrentInput) + 1));
- }
- }
-
- ODStatEndArrowUse();
-
- OD_API_EXIT();
- return(wToReturn);
- }
- static BOOL ODEditIsCharValidForPos(char chEntered, INT nPosition)
- {
-
- if(abCurrentFormatLiteral[nPosition])
- {
-
- if(chEntered != pszCurrentFormat[anCurrentFormatOffset[nPosition]])
- {
-
-
- return(FALSE);
- }
- return(TRUE);
- }
-
-
-
-
-
- switch(pszCurrentFormat[anCurrentFormatOffset[nPosition]])
- {
-
- case '#':
- if(chEntered < '0' || chEntered > '9') return(FALSE);
- break;
-
- case '%':
- if((chEntered < '0' || chEntered > '9') && chEntered != ' ')
- {
- return(FALSE);
- }
- break;
-
- case '9':
- if(chEntered >= '0' && chEntered <= '9') break;
- if(chEntered == '.' || chEntered == '+' || chEntered == '-') break;
- return(FALSE);
-
- case '*':
- if(chEntered < 32) return(FALSE);
- break;
-
- case 'C':
- case 'c':
- if(chEntered >= 'A' && chEntered <= 'Z') break;
- if(chEntered >= 'a' && chEntered <= 'z') break;
- if(chEntered == ' ' || chEntered == ',' || chEntered == '.') break;
- if(chEntered == '*' || chEntered == '?') break;
- return(FALSE);
-
- case 'A':
- case 'a':
- case 'L':
- case 'l':
- case 'M':
- case 'm':
- case 'U':
- case 'u':
- if(chEntered>='A' && chEntered<='Z') break;
- if(chEntered>='a' && chEntered<='z') break;
- if(chEntered==' ') break;
- return(FALSE);
-
- case 'D':
- case 'd':
- if(chEntered>='0' && chEntered<='9') break;
- if(chEntered=='-' || chEntered=='/') break;
- return(FALSE);
-
- case 'F':
- case 'f':
- if(chEntered >= 'A' && chEntered <= 'Z') break;
- if(chEntered >= '0' && chEntered <= '9') break;
- if(chEntered >= 'a' && chEntered <= 'z') break;
- switch(chEntered)
- {
-
- case ':':
- case '.':
- case DIRSEP:
-
- case '?':
- case '*':
-
- case '#':
- case '$':
- case '&':
- case '\'':
- case '(':
- case '>':
- case '-':
- case '@':
- case '_':
- case '!':
- case '{':
- case '}':
- case '~':
- return(TRUE);
- }
- return(FALSE);
-
- case 'H':
- case 'h':
- if(chEntered>='0' && chEntered<='9') break;
- if(chEntered>='A' && chEntered<='F') break;
- if(chEntered>='a' && chEntered<='f') break;
- return(FALSE);
-
- case 'T':
- case 't':
- if(chEntered >= '0' && chEntered <= '9') break;
- if(chEntered == '-' || chEntered == '(' || chEntered == ')'
- || chEntered == ' ' || chEntered == '+')
- {
- break;
- }
- return(FALSE);
-
- case 'W':
- case 'w':
- if(chEntered >= 'A' && chEntered <= 'Z') break;
- if(chEntered >= 'a' && chEntered <= 'z') break;
- if(chEntered == ':' || chEntered == '.' || chEntered == DIRSEP
- || chEntered == '*' || chEntered == '?')
- {
- break;
- }
- return(FALSE);
-
- case 'X':
- case 'x':
- if(chEntered >= 'A' && chEntered <= 'Z') break;
- if(chEntered >= 'a' && chEntered <= 'z') break;
- if(chEntered >= '0' && chEntered <= '9') break;
- if(chEntered == ' ') break;
- return(FALSE);
-
- case 'Y':
- case 'y':
- if(chEntered == 'y' || chEntered == 'n' || chEntered == 'Y'
- || chEntered == 'N')
- {
- break;
- }
- return(FALSE);
- }
-
- return(TRUE);
- }
- static char ODEditAsCharForPos(char chEntered, INT nPosition)
- {
-
- if(abCurrentFormatLiteral[nPosition])
- {
-
- return(pszCurrentFormat[anCurrentFormatOffset[nPosition]]);
- }
-
-
- switch(pszCurrentFormat[anCurrentFormatOffset[nPosition]])
- {
-
- case 'Y':
- case 'y':
- return(toupper(chEntered));
-
- case 'F':
- case 'f':
- return(toupper(chEntered));
-
- case 'L':
- case 'l':
- return(tolower(chEntered));
-
- case 'U':
- case 'u':
- return(toupper(chEntered));
-
- case 'M':
- case 'm':
- case 'C':
- case 'c':
-
- if(nPosition == 0) return(toupper(chEntered));
-
- if(abCurrentFormatLiteral[nPosition-1]) return(toupper(chEntered));
- if(toupper(pszCurrentFormat[anCurrentFormatOffset[nPosition]]) != 'M'
- && toupper(pszCurrentFormat[anCurrentFormatOffset[nPosition]])
- != 'C')
- {
- return(toupper(chEntered));
- }
-
-
- if(pszCurrentInput[nPosition-1] == ' '
- || pszCurrentInput[nPosition-1] == '.'
- || pszCurrentInput[nPosition-1] == ','
- || pszCurrentInput[nPosition-1] == '-')
- {
- return(toupper(chEntered));
- }
-
- return(tolower(chEntered));
- }
- return(chEntered);
- }
- static void ODEditDisplayPermaliteral(WORD nFlags)
- {
- INT nCount;
- BYTE btRepeat = 0;
- for(nCount = strlen(pszCurrentInput); nCount <= nCurrentStringLength;
- ++nCount)
- {
- if(nCount != nCurrentStringLength)
- {
- if(abCurrentFormatLiteral[nCount])
- {
- if(btRepeat > 0)
- {
- od_repeat(chCurrentBlank, btRepeat);
- btRepeat = 0;
- }
- od_putch(pszCurrentFormat[anCurrentFormatOffset[nCount]]);
- }
- else
- {
- ++btRepeat;
- }
- }
- else
- {
- if(!(nFlags & EDIT_FLAG_SHOW_SIZE))
- {
- ++btRepeat;
- }
- }
- }
- if(btRepeat > 0) od_repeat(chCurrentBlank, btRepeat);
- }
|