mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
230 lines
5.8 KiB
C
230 lines
5.8 KiB
C
#include "intl.h"
|
|
|
|
#define NUM_SHEETS 4
|
|
|
|
/* Insert the space */
|
|
LPTSTR
|
|
InsSpacePos(LPCTSTR szInsStr, const int nPos)
|
|
{
|
|
LPTSTR pszDestStr;
|
|
INT nDestStrCnt = 0;
|
|
INT nStrCnt;
|
|
INT nStrSize;
|
|
|
|
pszDestStr = (LPTSTR)malloc(MAX_SAMPLES_STR_SIZE * sizeof(TCHAR));
|
|
|
|
_tcscpy(pszDestStr, szInsStr);
|
|
|
|
nStrSize = _tcslen(szInsStr);
|
|
|
|
for (nStrCnt = 0; nStrCnt < nStrSize; nStrCnt++)
|
|
{
|
|
if (nStrCnt == nStrSize - nPos)
|
|
{
|
|
pszDestStr[nDestStrCnt] = _T(' ');
|
|
nDestStrCnt++;
|
|
}
|
|
|
|
pszDestStr[nDestStrCnt] = szInsStr[nStrCnt];
|
|
nDestStrCnt++;
|
|
}
|
|
|
|
pszDestStr[nDestStrCnt] = _T('\0');
|
|
|
|
return pszDestStr;
|
|
}
|
|
|
|
/* Insert the spaces by format string separated by ';' */
|
|
LPTSTR
|
|
InsSpacesFmt(LPCTSTR szSourceStr, LPCTSTR szFmtStr)
|
|
{
|
|
LPTSTR pszDestStr;
|
|
LPTSTR pszTempStr;
|
|
TCHAR szFmtVal[255];
|
|
UINT nFmtCount = 0;
|
|
INT nValCount = 0;
|
|
INT nLastVal = 0;
|
|
INT nSpaceOffset = 0;
|
|
BOOL wasNul=FALSE;
|
|
|
|
pszDestStr = (LPTSTR)malloc(255 * sizeof(TCHAR));
|
|
|
|
_tcscpy(pszDestStr, szSourceStr);
|
|
|
|
/* If format is clean return source string */
|
|
if (!*szFmtStr)
|
|
return pszDestStr;
|
|
|
|
/* Search for all format values */
|
|
for (nFmtCount = 0; nFmtCount <= _tcslen(szFmtStr); nFmtCount++)
|
|
{
|
|
if (szFmtStr[nFmtCount] == _T(';') || szFmtStr[nFmtCount] == _T('\0'))
|
|
{
|
|
if (_ttoi(szFmtVal) == 0 && !wasNul)
|
|
{
|
|
wasNul=TRUE;
|
|
break;
|
|
}
|
|
|
|
/* If was 0, repeat spaces */
|
|
if (wasNul)
|
|
{
|
|
nSpaceOffset += nLastVal;
|
|
}
|
|
else
|
|
{
|
|
nSpaceOffset += _ttoi(szFmtVal);
|
|
}
|
|
|
|
szFmtVal[nValCount] = _T('\0');
|
|
nValCount=0;
|
|
|
|
/* Insert space to finded position plus all pos before */
|
|
pszTempStr = InsSpacePos(pszDestStr, nSpaceOffset);
|
|
_tcscpy(pszDestStr,pszTempStr);
|
|
free(pszTempStr);
|
|
|
|
/* Num of spaces total increment */
|
|
if (!wasNul)
|
|
{
|
|
nSpaceOffset++;
|
|
nLastVal = _ttoi(szFmtVal);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
szFmtVal[nValCount++] = szFmtStr[nFmtCount];
|
|
}
|
|
}
|
|
|
|
/* Create spaces for rest part of string */
|
|
if (wasNul && nLastVal != 0)
|
|
{
|
|
for (nFmtCount = nSpaceOffset + nLastVal; nFmtCount < _tcslen(pszDestStr); nFmtCount += nLastVal + 1)
|
|
{
|
|
pszTempStr = InsSpacePos(pszDestStr, nFmtCount);
|
|
_tcscpy(pszDestStr, pszTempStr);
|
|
free(pszTempStr);
|
|
}
|
|
}
|
|
|
|
return pszDestStr;
|
|
}
|
|
|
|
/* Replace given template in source string with string to replace and return received string */
|
|
LPTSTR
|
|
ReplaceSubStr(LPCTSTR szSourceStr,
|
|
LPCTSTR szStrToReplace,
|
|
LPCTSTR szTempl)
|
|
{
|
|
LPTSTR szDestStr;
|
|
UINT nCharCnt;
|
|
UINT nSubStrCnt;
|
|
UINT nDestStrCnt;
|
|
UINT nFirstCharCnt;
|
|
|
|
szDestStr = (LPTSTR)malloc(MAX_SAMPLES_STR_SIZE * sizeof(TCHAR));
|
|
|
|
nDestStrCnt = 0;
|
|
nFirstCharCnt = 0;
|
|
|
|
_tcscpy(szDestStr, _T(""));
|
|
|
|
while (nFirstCharCnt < _tcslen(szSourceStr))
|
|
{
|
|
if (szSourceStr[nFirstCharCnt] == szTempl[0])
|
|
{
|
|
nSubStrCnt = 0;
|
|
for (nCharCnt = nFirstCharCnt; nCharCnt < nFirstCharCnt + _tcslen(szTempl); nCharCnt++)
|
|
{
|
|
if (szSourceStr[nCharCnt] == szTempl[nSubStrCnt])
|
|
{
|
|
nSubStrCnt++;
|
|
}
|
|
else
|
|
{
|
|
break;
|
|
}
|
|
|
|
if (_tcslen(szTempl) == nSubStrCnt)
|
|
{
|
|
_tcscat(szDestStr, szStrToReplace);
|
|
nDestStrCnt = _tcslen(szDestStr);
|
|
nFirstCharCnt += _tcslen(szTempl) - 1;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
szDestStr[nDestStrCnt++] = szSourceStr[nFirstCharCnt];
|
|
szDestStr[nDestStrCnt] = _T('\0');
|
|
}
|
|
|
|
nFirstCharCnt++;
|
|
}
|
|
|
|
return szDestStr;
|
|
}
|
|
|
|
|
|
static VOID
|
|
InitPropSheetPage(PROPSHEETPAGE *psp, WORD idDlg, DLGPROC DlgProc, PGLOBALDATA pGlobalData)
|
|
{
|
|
ZeroMemory(psp, sizeof(PROPSHEETPAGE));
|
|
psp->dwSize = sizeof(PROPSHEETPAGE);
|
|
psp->dwFlags = PSP_DEFAULT;
|
|
psp->hInstance = hApplet;
|
|
psp->pszTemplate = MAKEINTRESOURCE(idDlg);
|
|
psp->pfnDlgProc = DlgProc;
|
|
psp->lParam = (LPARAM)pGlobalData;
|
|
}
|
|
|
|
|
|
/* Create applets */
|
|
LONG
|
|
APIENTRY
|
|
SetupApplet(HWND hwndDlg, LCID lcid)
|
|
{
|
|
PROPSHEETPAGE PsPage[NUM_SHEETS + 1];
|
|
PROPSHEETHEADER psh;
|
|
PGLOBALDATA pGlobalData;
|
|
TCHAR Caption[MAX_STR_SIZE];
|
|
INT ret;
|
|
|
|
LoadString(hApplet, IDS_CUSTOMIZE_TITLE, Caption, sizeof(Caption) / sizeof(TCHAR));
|
|
|
|
pGlobalData = (PGLOBALDATA)malloc(sizeof(GLOBALDATA));
|
|
|
|
pGlobalData->lcid = lcid;
|
|
|
|
ZeroMemory(&psh, sizeof(PROPSHEETHEADER));
|
|
psh.dwSize = sizeof(PROPSHEETHEADER);
|
|
psh.dwFlags = PSH_PROPSHEETPAGE | PSH_USECALLBACK | PSH_PROPTITLE;
|
|
psh.hwndParent = hwndDlg;
|
|
psh.hInstance = hApplet;
|
|
psh.hIcon = LoadIcon(hApplet, MAKEINTRESOURCE(IDC_CPLICON));
|
|
psh.pszCaption = Caption;
|
|
psh.nPages = (sizeof(PsPage) / sizeof(PROPSHEETPAGE)) - 1;
|
|
psh.nStartPage = 0;
|
|
psh.ppsp = PsPage;
|
|
|
|
InitPropSheetPage(&PsPage[0], IDD_NUMBERSPAGE, NumbersPageProc, pGlobalData);
|
|
InitPropSheetPage(&PsPage[1], IDD_CURRENCYPAGE, CurrencyPageProc, pGlobalData);
|
|
InitPropSheetPage(&PsPage[2], IDD_TIMEPAGE, TimePageProc, pGlobalData);
|
|
InitPropSheetPage(&PsPage[3], IDD_DATEPAGE, DatePageProc, pGlobalData);
|
|
|
|
if (IsSortPageNeeded(lcid))
|
|
{
|
|
psh.nPages++;
|
|
InitPropSheetPage(&PsPage[4], IDD_SORTPAGE, SortPageProc, pGlobalData);
|
|
}
|
|
|
|
ret = PropertySheet(&psh);
|
|
|
|
free(pGlobalData);
|
|
|
|
return (LONG)(ret != -1);
|
|
}
|
|
|
|
/* EOF */
|