forked from sabrogden/Ditto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CF_UnicodeTextAggregator.cpp
83 lines (68 loc) · 1.57 KB
/
CF_UnicodeTextAggregator.cpp
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
#include "stdafx.h"
#include ".\cf_unicodetextaggregator.h"
#include "Misc.h"
CCF_UnicodeTextAggregator::CCF_UnicodeTextAggregator(CStringW csSeparator) :
m_csSeparator(csSeparator)
{
}
CCF_UnicodeTextAggregator::~CCF_UnicodeTextAggregator(void)
{
}
bool CCF_UnicodeTextAggregator::AddClip(LPVOID lpData, int nDataSize, int nPos, int nCount, UINT cfType)
{
if (cfType == CF_HDROP)
{
CString hDropFiles = _T("");
HDROP drop = (HDROP)GlobalLock((HDROP)lpData);
int nNumFiles = DragQueryFile(drop, -1, NULL, 0);
TCHAR file[MAX_PATH];
for (int nFile = 0; nFile < nNumFiles; nFile++)
{
if (DragQueryFile(drop, nFile, file, sizeof(file)) > 0)
{
hDropFiles += file;
hDropFiles += _T("\r\n");
}
}
if (hDropFiles != _T(""))
{
m_csNewText += hDropFiles;
if (nPos != nCount - 1)
{
m_csNewText += m_csSeparator;
}
return true;
}
return false;
}
LPCWSTR pText = (LPCWSTR)lpData;
if(pText == NULL)
{
return false;
}
int stringLen = nDataSize/sizeof(wchar_t);
//Ensure it's null terminated
if(pText[stringLen-1] != '\0')
{
int len = 0;
for(len = 0; len < stringLen && pText[len] != '\0'; len++ )
{
}
// if it is not null terminated, skip this item
if(len >= stringLen)
return false;
}
m_csNewText += pText;
if(nPos != nCount-1)
{
m_csNewText += m_csSeparator;
}
return true;
}
HGLOBAL CCF_UnicodeTextAggregator::GetHGlobal()
{
long lLen = m_csNewText.GetLength() * sizeof(wchar_t);
HGLOBAL hGlobal = NewGlobalP(m_csNewText.GetBuffer(lLen), lLen+sizeof(wchar_t));
m_csNewText.ReleaseBuffer();
return hGlobal;
}