123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- #ifndef __UTILS_H__
- #define __UTILS_H__
- #pragma once
- namespace DuiLib
- {
- /////////////////////////////////////////////////////////////////////////////////////
- //
- class STRINGorID
- {
- public:
- STRINGorID(LPCTSTR lpString) : m_lpstr(lpString)
- { }
- STRINGorID(UINT nID) : m_lpstr(MAKEINTRESOURCE(nID))
- { }
- LPCTSTR m_lpstr;
- };
- /////////////////////////////////////////////////////////////////////////////////////
- //
- class UILIB_API CDuiPoint : public tagPOINT
- {
- public:
- CDuiPoint();
- CDuiPoint(const POINT& src);
- CDuiPoint(int x, int y);
- CDuiPoint(LPARAM lParam);
- };
- /////////////////////////////////////////////////////////////////////////////////////
- //
- class UILIB_API CDuiSize : public tagSIZE
- {
- public:
- CDuiSize();
- CDuiSize(const SIZE& src);
- CDuiSize(const RECT rc);
- CDuiSize(int cx, int cy);
- };
- /////////////////////////////////////////////////////////////////////////////////////
- //
- class UILIB_API CDuiRect : public tagRECT
- {
- public:
- CDuiRect();
- CDuiRect(const RECT& src);
- CDuiRect(int iLeft, int iTop, int iRight, int iBottom);
- int GetWidth() const;
- int GetHeight() const;
- void Empty();
- bool IsNull() const;
- void Join(const RECT& rc);
- void ResetOffset();
- void Normalize();
- void Offset(int cx, int cy);
- void Inflate(int cx, int cy);
- void Deflate(int cx, int cy);
- void Union(CDuiRect& rc);
- };
- /////////////////////////////////////////////////////////////////////////////////////
- //
- class UILIB_API CStdPtrArray
- {
- public:
- CStdPtrArray(int iPreallocSize = 0);
- CStdPtrArray(const CStdPtrArray& src);
- ~CStdPtrArray();
- void Empty();
- void Resize(int iSize);
- bool IsEmpty() const;
- int Find(LPVOID iIndex) const;
- bool Add(LPVOID pData);
- bool SetAt(int iIndex, LPVOID pData);
- bool InsertAt(int iIndex, LPVOID pData);
- bool Remove(int iIndex);
- int GetSize() const;
- LPVOID* GetData();
- LPVOID GetAt(int iIndex) const;
- LPVOID operator[] (int nIndex) const;
- protected:
- LPVOID* m_ppVoid;
- int m_nCount;
- int m_nAllocated;
- };
- /////////////////////////////////////////////////////////////////////////////////////
- //
- class UILIB_API CStdValArray
- {
- public:
- CStdValArray(int iElementSize, int iPreallocSize = 0);
- ~CStdValArray();
- void Empty();
- bool IsEmpty() const;
- bool Add(LPCVOID pData);
- bool Remove(int iIndex);
- int GetSize() const;
- LPVOID GetData();
- LPVOID GetAt(int iIndex) const;
- LPVOID operator[] (int nIndex) const;
- protected:
- LPBYTE m_pVoid;
- int m_iElementSize;
- int m_nCount;
- int m_nAllocated;
- };
- /////////////////////////////////////////////////////////////////////////////////////
- //
- class UILIB_API CDuiString
- {
- public:
- enum { MAX_LOCAL_STRING_LEN = 63 };
- CDuiString();
- CDuiString(const TCHAR ch);
- CDuiString(const CDuiString& src);
- CDuiString(LPCTSTR lpsz, int nLen = -1);
- ~CDuiString();
- void Empty();
- int GetLength() const;
- bool IsEmpty() const;
- TCHAR GetAt(int nIndex) const;
- void Append(LPCTSTR pstr);
- void Assign(LPCTSTR pstr, int nLength = -1);
- LPCTSTR GetData() const;
- void SetAt(int nIndex, TCHAR ch);
- operator LPCTSTR() const;
- TCHAR operator[] (int nIndex) const;
- const CDuiString& operator=(const CDuiString& src);
- const CDuiString& operator=(const TCHAR ch);
- const CDuiString& operator=(LPCTSTR pstr);
- #ifdef _UNICODE
- const CDuiString& CDuiString::operator=(LPCSTR lpStr);
- const CDuiString& CDuiString::operator+=(LPCSTR lpStr);
- #else
- const CDuiString& CDuiString::operator=(LPCWSTR lpwStr);
- const CDuiString& CDuiString::operator+=(LPCWSTR lpwStr);
- #endif
- CDuiString operator+(const CDuiString& src) const;
- CDuiString operator+(LPCTSTR pstr) const;
- const CDuiString& operator+=(const CDuiString& src);
- const CDuiString& operator+=(LPCTSTR pstr);
- const CDuiString& operator+=(const TCHAR ch);
- bool operator == (LPCTSTR str) const;
- bool operator != (LPCTSTR str) const;
- bool operator <= (LPCTSTR str) const;
- bool operator < (LPCTSTR str) const;
- bool operator >= (LPCTSTR str) const;
- bool operator > (LPCTSTR str) const;
- int Compare(LPCTSTR pstr) const;
- int CompareNoCase(LPCTSTR pstr) const;
- void MakeUpper();
- void MakeLower();
- CDuiString Left(int nLength) const;
- CDuiString Mid(int iPos, int nLength = -1) const;
- CDuiString Right(int nLength) const;
- int Find(TCHAR ch, int iPos = 0) const;
- int Find(LPCTSTR pstr, int iPos = 0) const;
- int ReverseFind(TCHAR ch) const;
- int Replace(LPCTSTR pstrFrom, LPCTSTR pstrTo);
- int __cdecl Format(LPCTSTR pstrFormat, ...);
- int __cdecl SmallFormat(LPCTSTR pstrFormat, ...);
- protected:
- LPTSTR m_pstr;
- TCHAR m_szBuffer[MAX_LOCAL_STRING_LEN + 1];
- };
- /////////////////////////////////////////////////////////////////////////////////////
- //
- struct TITEM
- {
- CDuiString Key;
- LPVOID Data;
- struct TITEM* pPrev;
- struct TITEM* pNext;
- };
- class UILIB_API CStdStringPtrMap
- {
- public:
- CStdStringPtrMap(int nSize = 83);
- ~CStdStringPtrMap();
- void Resize(int nSize = 83);
- LPVOID Find(LPCTSTR key, bool optimize = true) const;
- bool Insert(LPCTSTR key, LPVOID pData);
- LPVOID Set(LPCTSTR key, LPVOID pData);
- bool Remove(LPCTSTR key);
- void RemoveAll();
- int GetSize() const;
- LPCTSTR GetAt(int iIndex) const;
- LPCTSTR operator[] (int nIndex) const;
- protected:
- TITEM** m_aT;
- int m_nBuckets;
- int m_nCount;
- };
- /////////////////////////////////////////////////////////////////////////////////////
- //
- class UILIB_API CWaitCursor
- {
- public:
- CWaitCursor();
- ~CWaitCursor();
- protected:
- HCURSOR m_hOrigCursor;
- };
- /////////////////////////////////////////////////////////////////////////////////////
- //
- class CVariant : public VARIANT
- {
- public:
- CVariant()
- {
- VariantInit(this);
- }
- CVariant(int i)
- {
- VariantInit(this);
- this->vt = VT_I4;
- this->intVal = i;
- }
- CVariant(float f)
- {
- VariantInit(this);
- this->vt = VT_R4;
- this->fltVal = f;
- }
- CVariant(LPOLESTR s)
- {
- VariantInit(this);
- this->vt = VT_BSTR;
- this->bstrVal = s;
- }
- CVariant(IDispatch *disp)
- {
- VariantInit(this);
- this->vt = VT_DISPATCH;
- this->pdispVal = disp;
- }
- ~CVariant()
- {
- VariantClear(this);
- }
- };
- }// namespace DuiLib
- #endif // __UTILS_H__
|