2009-02-27 11:54:59 +00:00
|
|
|
/*
|
2011-01-15 04:01:31 +00:00
|
|
|
* synergy -- mouse and keyboard sharing utility
|
|
|
|
* Copyright (C) 2004 Chris Schoeneman, Nick Bolton, Sorin Sbarnea
|
2009-02-27 11:54:59 +00:00
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* found in the file COPYING that should have accompanied this file.
|
|
|
|
*
|
|
|
|
* This package 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.
|
2010-06-20 17:38:51 +00:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-02-27 11:54:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "CMSWindowsClipboardHTMLConverter.h"
|
|
|
|
#include "CStringUtil.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// CMSWindowsClipboardHTMLConverter
|
|
|
|
//
|
|
|
|
|
|
|
|
CMSWindowsClipboardHTMLConverter::CMSWindowsClipboardHTMLConverter()
|
|
|
|
{
|
|
|
|
m_format = RegisterClipboardFormat("HTML Format");
|
|
|
|
}
|
|
|
|
|
|
|
|
CMSWindowsClipboardHTMLConverter::~CMSWindowsClipboardHTMLConverter()
|
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
IClipboard::EFormat
|
|
|
|
CMSWindowsClipboardHTMLConverter::getFormat() const
|
|
|
|
{
|
|
|
|
return IClipboard::kHTML;
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT
|
|
|
|
CMSWindowsClipboardHTMLConverter::getWin32Format() const
|
|
|
|
{
|
|
|
|
return m_format;
|
|
|
|
}
|
|
|
|
|
|
|
|
CString
|
|
|
|
CMSWindowsClipboardHTMLConverter::doFromIClipboard(const CString& data) const
|
|
|
|
{
|
|
|
|
// prepare to CF_HTML format prefix and suffix
|
|
|
|
CString prefix("Version:0.9\nStartHTML:-1\nEndHTML:-1\n"
|
|
|
|
"StartFragment:XXXXXXXXXX\nEndFragment:YYYYYYYYYY\n"
|
|
|
|
"<!DOCTYPE><HTML><BODY><!--StartFragment-->");
|
|
|
|
CString suffix("<!--EndFragment--></BODY></HTML>\n");
|
2009-10-21 16:25:08 +00:00
|
|
|
UInt32 start = (UInt32)prefix.size();
|
|
|
|
UInt32 end = start + (UInt32)data.size();
|
2009-02-27 11:54:59 +00:00
|
|
|
prefix.replace(prefix.find("XXXXXXXXXX"), 10,
|
|
|
|
CStringUtil::print("%010u", start));
|
|
|
|
prefix.replace(prefix.find("YYYYYYYYYY"), 10,
|
|
|
|
CStringUtil::print("%010u", end));
|
|
|
|
|
|
|
|
// concatenate
|
|
|
|
prefix += data;
|
|
|
|
prefix += suffix;
|
|
|
|
return prefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
CString
|
|
|
|
CMSWindowsClipboardHTMLConverter::doToIClipboard(const CString& data) const
|
|
|
|
{
|
|
|
|
// get fragment start/end args
|
|
|
|
CString startArg = findArg(data, "StartFragment");
|
|
|
|
CString endArg = findArg(data, "EndFragment");
|
|
|
|
if (startArg.empty() || endArg.empty()) {
|
|
|
|
return CString();
|
|
|
|
}
|
|
|
|
|
|
|
|
// convert args to integers
|
|
|
|
SInt32 start = (SInt32)atoi(startArg.c_str());
|
|
|
|
SInt32 end = (SInt32)atoi(endArg.c_str());
|
|
|
|
if (start <= 0 || end <= 0 || start >= end) {
|
|
|
|
return CString();
|
|
|
|
}
|
|
|
|
|
|
|
|
// extract the fragment
|
|
|
|
return data.substr(start, end - start);
|
|
|
|
}
|
|
|
|
|
|
|
|
CString
|
|
|
|
CMSWindowsClipboardHTMLConverter::findArg(
|
|
|
|
const CString& data, const CString& name) const
|
|
|
|
{
|
|
|
|
CString::size_type i = data.find(name);
|
|
|
|
if (i == CString::npos) {
|
|
|
|
return CString();
|
|
|
|
}
|
|
|
|
i = data.find_first_of(":\r\n", i);
|
|
|
|
if (i == CString::npos || data[i] != ':') {
|
|
|
|
return CString();
|
|
|
|
}
|
|
|
|
i = data.find_first_of("0123456789\r\n", i + 1);
|
|
|
|
if (i == CString::npos || data[i] == '\r' || data[i] == '\n') {
|
|
|
|
return CString();
|
|
|
|
}
|
|
|
|
CString::size_type j = data.find_first_not_of("0123456789", i);
|
|
|
|
if (j == CString::npos) {
|
|
|
|
j = data.size();
|
|
|
|
}
|
|
|
|
return data.substr(i, j - i);
|
|
|
|
}
|