barrier/src/lib/platform/XWindowsClipboardHTMLConver...

68 lines
1.6 KiB
C++
Raw Normal View History

2012-06-10 16:50:54 +00:00
/*
* synergy -- mouse and keyboard sharing utility
* Copyright (C) 2012 Bolton Software Ltd.
* Copyright (C) 2004 Chris Schoeneman
2012-06-10 16:50:54 +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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "platform/XWindowsClipboardHTMLConverter.h"
#include "base/Unicode.h"
2012-06-10 16:50:54 +00:00
//
// CXWindowsClipboardHTMLConverter
//
CXWindowsClipboardHTMLConverter::CXWindowsClipboardHTMLConverter(
Display* display, const char* name) :
m_atom(XInternAtom(display, name, False))
{
// do nothing
}
CXWindowsClipboardHTMLConverter::~CXWindowsClipboardHTMLConverter()
{
// do nothing
}
IClipboard::EFormat
CXWindowsClipboardHTMLConverter::getFormat() const
{
return IClipboard::kHTML;
}
Atom
CXWindowsClipboardHTMLConverter::getAtom() const
{
return m_atom;
}
int
CXWindowsClipboardHTMLConverter::getDataSize() const
{
return 8;
}
2014-11-11 13:51:47 +00:00
String
CXWindowsClipboardHTMLConverter::fromIClipboard(const String& data) const
2012-06-10 16:50:54 +00:00
{
2014-11-11 13:51:47 +00:00
return Unicode::UTF8ToUTF16(data);
2012-06-10 16:50:54 +00:00
}
2014-11-11 13:51:47 +00:00
String
CXWindowsClipboardHTMLConverter::toIClipboard(const String& data) const
2012-06-10 16:50:54 +00:00
{
2014-11-11 13:51:47 +00:00
return Unicode::UTF16ToUTF8(data);
2012-06-10 16:50:54 +00:00
}