📄 ini2.cpp
字号:
{
if(bGet)
b = GetBool(strEntry,bDefault/*=NULL*/,strSection/* = NULL*/);
else
WriteBool(strEntry,b, strSection/* = NULL*/);
}
void CIni::SerGetPoint( BOOL bGet,CPoint & pt, CString strEntry, LPCSTR strSection, CPoint ptDefault)
{
if(bGet)
pt = GetPoint(strEntry,ptDefault,strSection);
else
WritePoint(strEntry,pt, strSection);
}
void CIni::SerGetRect( BOOL bGet,CRect & rect, CString strEntry, LPCSTR strSection, CRect rectDefault)
{
if(bGet)
rect = GetRect(strEntry,rectDefault,strSection);
else
WriteRect(strEntry,rect, strSection);
}
void CIni::SerGetColRef( BOOL bGet,COLORREF & cr, CString strEntry, LPCSTR strSection, COLORREF crDefault)
{
if(bGet)
cr = GetColRef(strEntry,crDefault,strSection);
else
WriteColRef(strEntry,cr, strSection);
}
// 躡erladene Methoden //////////////////////////////////////////////////////////////////////////////////////////////////77
// Einfache Typen /////////////////////////////////////////////////////////////////////////////////////////////////////////
void CIni::SerGet( BOOL bGet,CString & str, CString strEntry, LPCSTR strSection/*= NULL*/, LPCSTR strDefault/*= NULL*/)
{
SerGetString(bGet,str,strEntry,strSection,strDefault);
}
void CIni::SerGet( BOOL bGet,double & f, CString strEntry, LPCSTR strSection/*= NULL*/, double fDefault/* = 0.0*/)
{
SerGetDouble(bGet,f,strEntry,strSection,fDefault);
}
void CIni::SerGet( BOOL bGet,float & f, CString strEntry, LPCSTR strSection/*= NULL*/, float fDefault/* = 0.0*/)
{
SerGetFloat(bGet,f,strEntry,strSection,fDefault);
}
void CIni::SerGet( BOOL bGet,int & n, CString strEntry, LPCSTR strSection/*= NULL*/, int nDefault/* = 0*/)
{
SerGetInt(bGet,n,strEntry,strSection,nDefault);
}
void CIni::SerGet( BOOL bGet,short & n, CString strEntry, LPCSTR strSection/*= NULL*/, int nDefault/* = 0*/)
{
int nTemp = n;
SerGetInt(bGet,nTemp,strEntry,strSection,nDefault);
n = nTemp;
}
void CIni::SerGet( BOOL bGet,DWORD & n, CString strEntry, LPCSTR strSection/*= NULL*/, DWORD nDefault/* = 0*/)
{
SerGetDWORD(bGet,n,strEntry,strSection,nDefault);
}
void CIni::SerGet( BOOL bGet,WORD & n, CString strEntry, LPCSTR strSection/*= NULL*/, DWORD nDefault/* = 0*/)
{
DWORD dwTemp = n;
SerGetDWORD(bGet,dwTemp,strEntry,strSection,nDefault);
n = dwTemp;
}
// void SerGet( BOOL bGet,BOOL & b, CString strEntry, LPCSTR strSection = NULL, BOOL bDefault = FALSE);
void CIni::SerGet( BOOL bGet,CPoint & pt, CString strEntry, LPCSTR strSection/*= NULL*/, CPoint ptDefault/* = CPoint(0,0)*/)
{
SerGetPoint(bGet,pt,strEntry,strSection,ptDefault);
}
void CIni::SerGet( BOOL bGet,CRect & rect, CString strEntry, LPCSTR strSection/*= NULL*/, CRect rectDefault/* = CRect(0,0,0,0)*/)
{
SerGetRect(bGet,rect,strEntry,strSection,rectDefault);
}
// void SerGet( BOOL bGet,COLORREF & cr, CString strEntry, LPCSTR strSection = NULL, COLORREF crDefault = RGB(128,128,128));
// 躡erladene Methoden ////////////////////////////////////////////////////////////////////////////////////////////
// ARRAYS /////////////////////////////////////////////////////////////////////////////////////////////////////////
// Entries werden durch Unterstrich + Index ergenzt////////////////////////////////////////////////////////////////
void CIni::SerGet(BOOL bGet, CString *ar, int nCount, CString strEntry, LPCSTR strSection/*=NULL*/, LPCSTR Default/*=NULL*/)
{
if(nCount > 0) {
CString strBuffer;
if(bGet) {
strBuffer = GetString(strEntry, "", strSection);
int nOffset = 0;
for(int i = 0; i < nCount; i++) {
nOffset = Parse(strBuffer, nOffset, ar[i]);
if(ar[i].GetLength() == 0)
ar[i] = Default;
}
} else {
strBuffer = ar[0];
for(int i = 1; i < nCount; i++) {
strBuffer.AppendChar(',');
strBuffer.Append(ar[i]);
}
WriteString(strEntry, strBuffer, strSection);
}
}
}
void CIni::SerGet(BOOL bGet, double *ar, int nCount, CString strEntry, LPCSTR strSection/*=NULL*/, double Default/* = 0.0*/)
{
if(nCount > 0) {
CString strBuffer;
if(bGet) {
strBuffer = GetString(strEntry, "", strSection);
CString strTemp;
int nOffset = 0;
for(int i = 0; i < nCount; i++) {
nOffset = Parse(strBuffer, nOffset, strTemp);
if(strTemp.GetLength() == 0)
ar[i] = Default;
else
ar[i] = atof(strTemp);
}
} else {
CString strTemp;
strBuffer.Format("%g", ar[0]);
for(int i = 1; i < nCount; i++) {
strTemp.Format("%g", ar[i]);
strBuffer.AppendChar(',');
strBuffer.Append(strTemp);
}
WriteString(strEntry, strBuffer, strSection);
}
}
}
void CIni::SerGet(BOOL bGet, float *ar, int nCount, CString strEntry, LPCSTR strSection/*=NULL*/, float Default/* = 0.0*/)
{
if(nCount > 0) {
CString strBuffer;
if(bGet) {
strBuffer = GetString(strEntry, "", strSection);
CString strTemp;
int nOffset = 0;
for(int i = 0; i < nCount; i++) {
nOffset = Parse(strBuffer, nOffset, strTemp);
if(strTemp.GetLength() == 0)
ar[i] = Default;
else
ar[i] = (float)atof(strTemp);
}
} else {
CString strTemp;
strBuffer.Format("%g", ar[0]);
for(int i = 1; i < nCount; i++) {
strTemp.Format("%g", ar[i]);
strBuffer.AppendChar(',');
strBuffer.Append(strTemp);
}
WriteString(strEntry, strBuffer, strSection);
}
}
}
void CIni::SerGet(BOOL bGet, int *ar, int nCount, CString strEntry, LPCSTR strSection/*=NULL*/, int Default/* = 0*/)
{
if(nCount > 0) {
CString strBuffer;
if(bGet) {
strBuffer = GetString(strEntry, "", strSection);
CString strTemp;
int nOffset = 0;
for(int i = 0; i < nCount; i++) {
nOffset = Parse(strBuffer, nOffset, strTemp);
if(strTemp.GetLength() == 0)
ar[i] = Default;
else
ar[i] = atoi(strTemp);
}
} else {
CString strTemp;
strBuffer.Format("%d", ar[0]);
for(int i = 1; i < nCount; i++) {
strTemp.Format("%d", ar[i]);
strBuffer.AppendChar(',');
strBuffer.Append(strTemp);
}
WriteString(strEntry, strBuffer, strSection);
}
}
}
void CIni::SerGet(BOOL bGet, unsigned char *ar, int nCount, CString strEntry, LPCSTR strSection/*=NULL*/, unsigned char Default/* = 0*/)
{
if(nCount > 0) {
CString strBuffer;
if(bGet) {
strBuffer = GetString(strEntry, "", strSection);
CString strTemp;
int nOffset = 0;
for(int i = 0; i < nCount; i++) {
nOffset = Parse(strBuffer, nOffset, strTemp);
if(strTemp.GetLength() == 0)
ar[i] = Default;
else
ar[i] = (unsigned char)atoi(strTemp);
}
} else {
CString strTemp;
strBuffer.Format("%d", ar[0]);
for(int i = 1; i < nCount; i++) {
strTemp.Format("%d", ar[i]);
strBuffer.AppendChar(',');
strBuffer.Append(strTemp);
}
WriteString(strEntry, strBuffer, strSection);
}
}
}
void CIni::SerGet(BOOL bGet, short *ar, int nCount, CString strEntry, LPCSTR strSection/*=NULL*/, int Default/* = 0*/)
{
if(nCount > 0) {
CString strBuffer;
if(bGet) {
strBuffer = GetString(strEntry, "", strSection);
CString strTemp;
int nOffset = 0;
for(int i = 0; i < nCount; i++) {
nOffset = Parse(strBuffer, nOffset, strTemp);
if(strTemp.GetLength() == 0)
ar[i] = Default;
else
ar[i] = (short)atoi(strTemp);
}
} else {
CString strTemp;
strBuffer.Format("%d", ar[0]);
for(int i = 1; i < nCount; i++) {
strTemp.Format("%d", ar[i]);
strBuffer.AppendChar(',');
strBuffer.Append(strTemp);
}
WriteString(strEntry, strBuffer, strSection);
}
}
}
void CIni::SerGet(BOOL bGet, DWORD *ar, int nCount, CString strEntry, LPCSTR strSection/*=NULL*/, DWORD Default/* = 0*/)
{
if(nCount > 0) {
CString strBuffer;
if(bGet) {
strBuffer = GetString(strEntry, "", strSection);
CString strTemp;
int nOffset = 0;
for(int i = 0; i < nCount; i++) {
nOffset = Parse(strBuffer, nOffset, strTemp);
if(strTemp.GetLength() == 0)
ar[i] = Default;
else
ar[i] = (DWORD)atoi(strTemp);
}
} else {
CString strTemp;
strBuffer.Format("%d", ar[0]);
for(int i = 1; i < nCount; i++) {
strTemp.Format("%d", ar[i]);
strBuffer.AppendChar(',');
strBuffer.Append(strTemp);
}
WriteString(strEntry, strBuffer, strSection);
}
}
}
void CIni::SerGet(BOOL bGet, WORD *ar, int nCount, CString strEntry, LPCSTR strSection/*=NULL*/, DWORD Default/* = 0*/)
{
if(nCount > 0) {
CString strBuffer;
if(bGet) {
strBuffer = GetString(strEntry, "", strSection);
CString strTemp;
int nOffset = 0;
for(int i = 0; i < nCount; i++) {
nOffset = Parse(strBuffer, nOffset, strTemp);
if(strTemp.GetLength() == 0)
ar[i] = Default;
else
ar[i] = (WORD)atoi(strTemp);
}
} else {
CString strTemp;
strBuffer.Format("%d", ar[0]);
for(int i = 1; i < nCount; i++) {
strTemp.Format("%d", ar[i]);
strBuffer.AppendChar(',');
strBuffer.Append(strTemp);
}
WriteString(strEntry, strBuffer, strSection);
}
}
}
void CIni::SerGet( BOOL bGet,CPoint * ar, int nCount, CString strEntry, LPCSTR strSection/*=NULL*/, CPoint Default/* = CPoint(0,0)*/)
{
CString strBuffer;
for( int i=0 ; i<nCount ; i++)
{
strBuffer.Format("_%i",i);
strBuffer = strEntry + strBuffer;
SerGet(bGet,ar[i],strBuffer,strSection,Default);
}
}
void CIni::SerGet( BOOL bGet,CRect * ar, int nCount, CString strEntry, LPCSTR strSection/*=NULL*/, CRect Default/* = CRect(0,0,0,0)*/)
{
CString strBuffer;
for( int i=0 ; i<nCount ; i++)
{
strBuffer.Format("_%i",i);
strBuffer = strEntry + strBuffer;
SerGet(bGet,ar[i],strBuffer,strSection,Default);
}
}
int CIni::Parse(CString &strIn, int nOffset, CString &strOut) {
strOut.Empty();
int nLength = strIn.GetLength();
if(nOffset < nLength) {
if(nOffset != 0 && strIn[nOffset] == ',')
nOffset++;
while(nOffset < nLength) {
if(!isspace(strIn[nOffset]))
break;
nOffset++;
}
while(nOffset < nLength) {
strOut += strIn[nOffset];
if(strIn[++nOffset] == ',')
break;
}
strOut.Trim();
}
return nOffset;
}
//////////////////////////////////////////////////////////////////////
// statische Methoden
//////////////////////////////////////////////////////////////////////
CString CIni::Read(CString const& strFileName, CString const& strSection, CString const& strEntry, CString const& strDefault)
{
CString strReturn;
GetPrivateProfileString(strSection,
strEntry,
strDefault,
strReturn.GetBufferSetLength(MAX_INI_BUFFER),
MAX_INI_BUFFER,
strFileName);
strReturn.ReleaseBuffer();
return strReturn;
}
void CIni::Write(CString const& strFileName, CString const& strSection, CString const& strEntry, CString const& strValue)
{
WritePrivateProfileString(strSection,
strEntry,
strValue,
strFileName);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -