1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
/*
* astyle --force-indent=tab=4 --brackets=linux --indent-switches
* --pad=oper --one-line=keep-blocks --unpad=paren
*
* Miranda IM: the free IM client for Microsoft* Windows*
*
* Copyright 2000-2010 Miranda ICQ/IM project,
* all portions of this codebase are copyrighted to the people
* listed in contributors.txt.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* you should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* part of clist_ng plugin for Miranda.
*
* (C) 2005-2010 by silvercircle _at_ gmail _dot_ com and contributors
*
* $Id: utils.h 128 2010-09-26 12:12:56Z silvercircle $
*/
#ifndef __UTILS_H_
#define __UTILS_H_
class Utils
{
public:
static void TSAPI enableDlgControl (const HWND hwnd, UINT id, BOOL fEnable);
static void TSAPI showDlgControl (const HWND hwnd, UINT id, int showCmd);
static HMODULE loadSystemLibrary (const wchar_t* szFilename, bool useGetHandle = false);
static void extractResource (const HMODULE h, const UINT uID, const wchar_t* tszName, const wchar_t* tszPath,
const wchar_t* tszFilename, bool fForceOverwrite);
static void ensureTralingBackslash (wchar_t *szPathname);
static DWORD __fastcall hexStringToLong (const char *szSource);
static int pathIsAbsolute (const wchar_t* path);
static size_t pathToRelative (const wchar_t* pSrc, wchar_t* pOut, const wchar_t* szBase = 0);
static size_t pathToAbsolute (const wchar_t* pSrc, wchar_t* pOut, const wchar_t* szBase = 0);
static const wchar_t* striStr (const wchar_t* szString, const wchar_t* szSearchFor);
static const wchar_t* extractURLFromRichEdit (const ENLINK* _e, const HWND hwndRich);
template<class T, class U, class V, class W> static HRESULT writeProfile(T* _section, U* _key, V* _value, W* _file)
{
size_t _s = sizeof(T);
if(_s == 1)
return(WritePrivateProfileStringA((char *)_section, (char *)_key, (char *)_value, (char *)_file));
else
return(WritePrivateProfileStringW((wchar_t *)_section, (wchar_t *)_key, (wchar_t *)_value, (wchar_t *)_file));
}
template<class T, class U, class V> static HRESULT writeProfile(T* _section, U* _key, DWORD _value, const V* _file)
{
T sValue[1024];
size_t _s = sizeof(T);
if(_s == 1) {
_snprintf((char *)sValue, 1024, "%d", _value);
sValue[1023] = 0;
return(WritePrivateProfileStringA((char *)_section, (char *)_key, (char *)sValue, (char *)_file));
}
else {
_snwprintf((wchar_t *)sValue, 1024, L"%d", _value);
sValue[1023] = 0;
return(WritePrivateProfileStringW((wchar_t *)_section, (wchar_t *)_key, (wchar_t *)sValue, (wchar_t *)_file));
}
}
};
/**
* implement a warning dialog with a "do not show this again" check
* box
*/
class WarningDlg {
public:
/*
* the warning IDs
*/
enum {
WARN_RELNOTES = 0,
WARN_SKIN_LOADER_ERROR = 1,
WARN_SKIN_OVERWRITE = 2,
WARN_LAST = 3,
};
/*
* the flags (low word is reserved for default windows flags like MB_OK etc.
*/
enum {
CWF_UNTRANSLATED = 0x00010000, // do not translate the msg (useful for some error messages)
CWF_NOALLOWHIDE = 0x00020000 // critical message, hide the "do not show this again" check box
};
WarningDlg(const wchar_t* tszTitle, const wchar_t* tszText, const UINT uId, const DWORD dwFlags);
~WarningDlg();
public:
/*
* static function to construct and show the dialog, returns the
* user's choice
*/
static LRESULT show (const int uId, DWORD dwFlags = 0, const wchar_t* tszTxt = 0);
static void destroyAll ();
LRESULT ShowDialog () const;
private:
UINT m_uId;
HFONT m_hFontCaption;
DWORD m_dwFlags;
HWND m_hwnd;
bool m_fIsModal;
pSmartWstring m_pszTitle, m_pszText;
INT_PTR CALLBACK dlgProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
static INT_PTR CALLBACK stubDlgProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
static __int64 getMask (); // get bit mask for disabled message classes
private:
static MWindowList hWindowList;
static wchar_t* m_warnings[WARN_LAST];
};
#endif /* __UTILS_H_ */
|