You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
3.4 KiB
C
96 lines
3.4 KiB
C
2 years ago
|
// XTPSyntaxEditSectionManager.h: interface for the CXTPSyntaxEditSectionManager class.
|
||
|
//
|
||
|
// This file is a part of the XTREME TOOLKIT PRO MFC class library.
|
||
|
// (c)1998-2012 Codejock Software, All Rights Reserved.
|
||
|
//
|
||
|
// THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
|
||
|
// RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
|
||
|
// CONSENT OF CODEJOCK SOFTWARE.
|
||
|
//
|
||
|
// THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
|
||
|
// IN THE XTREME SYNTAX EDIT LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
|
||
|
// YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
|
||
|
// SINGLE COMPUTER.
|
||
|
//
|
||
|
// CONTACT INFORMATION:
|
||
|
// support@codejock.com
|
||
|
// http://www.codejock.com
|
||
|
//
|
||
|
//////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
//{{AFX_CODEJOCK_PRIVATE
|
||
|
#if !defined(__XTPSYNTAXEDITSECTIONMANAGER_H__)
|
||
|
#define __XTPSYNTAXEDITSECTIONMANAGER_H__
|
||
|
//}}AFX_CODEJOCK_PRIVATE
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER > 1000
|
||
|
|
||
|
//{{AFX_CODEJOCK_PRIVATE
|
||
|
//=======================================================================
|
||
|
// struct: XTP_EDIT_SCHEMAFILEINFO
|
||
|
//=======================================================================
|
||
|
struct _XTP_EXT_CLASS XTP_EDIT_SCHEMAFILEINFO
|
||
|
{
|
||
|
XTP_EDIT_SCHEMAFILEINFO();
|
||
|
|
||
|
XTP_EDIT_SCHEMAFILEINFO(const XTP_EDIT_SCHEMAFILEINFO& info);
|
||
|
|
||
|
XTP_EDIT_SCHEMAFILEINFO(const CString& srcName, const CString& srcValue);
|
||
|
|
||
|
const XTP_EDIT_SCHEMAFILEINFO& operator=(const XTP_EDIT_SCHEMAFILEINFO& info);
|
||
|
|
||
|
BOOL operator==(const XTP_EDIT_SCHEMAFILEINFO& info) const;
|
||
|
|
||
|
public:
|
||
|
CString csName;
|
||
|
CString csValue;
|
||
|
CString csDesc;
|
||
|
UINT uValue;
|
||
|
};
|
||
|
|
||
|
//=======================================================================
|
||
|
// class: CXTPSyntaxEditSchemaFileInfoList
|
||
|
//=======================================================================
|
||
|
class _XTP_EXT_CLASS CXTPSyntaxEditSchemaFileInfoList : public CList<XTP_EDIT_SCHEMAFILEINFO,XTP_EDIT_SCHEMAFILEINFO&>
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
POSITION LookupName (const CString& csName, XTP_EDIT_SCHEMAFILEINFO& info) const;
|
||
|
|
||
|
POSITION LookupValue(const CString& csValue, XTP_EDIT_SCHEMAFILEINFO& info) const;
|
||
|
|
||
|
POSITION LookupValue(const UINT& uValue, XTP_EDIT_SCHEMAFILEINFO& info) const;
|
||
|
|
||
|
POSITION LookupDesc (const CString& csDesc, XTP_EDIT_SCHEMAFILEINFO& info) const;
|
||
|
};
|
||
|
|
||
|
//=======================================================================
|
||
|
// class: CXTPSyntaxEditSectionManager
|
||
|
//=======================================================================
|
||
|
class _XTP_EXT_CLASS CXTPSyntaxEditSectionManager
|
||
|
{
|
||
|
public:
|
||
|
CXTPSyntaxEditSectionManager();
|
||
|
|
||
|
virtual ~CXTPSyntaxEditSectionManager();
|
||
|
|
||
|
public:
|
||
|
//used for file based settings
|
||
|
int GetSectionNames(CStringArray& arSections, LPCTSTR lpszFilePath) const;
|
||
|
int GetSectionKeyList(CXTPSyntaxEditSchemaFileInfoList& infoList, LPCTSTR lpszFilePath, LPCTSTR lpszSectionName) const;
|
||
|
//used for non-file based settings
|
||
|
int GetSectionNames(CStringArray& arSections, CStringArray& arPassedString) const;
|
||
|
int GetSectionKeyList(CXTPSyntaxEditSchemaFileInfoList& infoList, CStringArray& arPassedString, CString sSectionName) const;
|
||
|
|
||
|
BOOL ParseSectionKey(XTP_EDIT_SCHEMAFILEINFO& info, const CString& csBuffer) const;
|
||
|
|
||
|
BOOL SplitString(CString& csLeft, CString& csRight, const CString& csBuffer, TCHAR chSep) const;
|
||
|
};
|
||
|
|
||
|
//}}AFX_CODEJOCK_PRIVATE
|
||
|
//////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#endif // !defined(__XTPSYNTAXEDITSECTIONMANAGER_H__)
|