Beispiel #1
0
bool ClipboardSetText(HWND owner, const UString &s)
{
  CClipboard clipboard;
  if (!clipboard.Open(owner))
    return false;
#ifdef _WIN32
  if (!::EmptyClipboard())
    return false;

  bool res;
  res = ClipboardSetData(CF_UNICODETEXT, (const wchar_t *)s, (s.Length() + 1) * sizeof(wchar_t));
  #ifndef _UNICODE
  AString a;
  a = UnicodeStringToMultiByte(s, CP_ACP);
  res |=  ClipboardSetData(CF_TEXT, (const char *)a, (a.Length() + 1) * sizeof(char));
  a = UnicodeStringToMultiByte(s, CP_OEMCP);
  res |=  ClipboardSetData(CF_OEMTEXT, (const char *)a, (a.Length() + 1) * sizeof(char));
  #endif
  return res;
#else
  wxTheClipboard->Clear();
  // This data objects are held by the clipboard,
  // so do not delete them in the app.
  wxString ws(s);
  wxTheClipboard->SetData( new wxTextDataObject(ws) );
  return true;
#endif
}
Beispiel #2
0
// TODO: there's some integer -> char encoding going on here. i find it 
// hard to believe that the clipboard is the only thing doing this. maybe
// we should refactor this stuff out of the clipboard.
TEST(CClipboardTests, marshall_withTextSize285_sizeCharsValid)
{
	// 285 chars
	CString data;
	data.append("Synergy is Free and Open Source Software that lets you ");
	data.append("easily share your mouse and keyboard between multiple ");
	data.append("computers, where each computer has it's own display. No ");
	data.append("special hardware is required, all you need is a local area ");
	data.append("network. Synergy is supported on Windows, Mac OS X and Linux.");

	CClipboard clipboard;
	clipboard.open(0);
	clipboard.add(IClipboard::kText, data);
	clipboard.close();

	CString actual = clipboard.marshall();

	// 4 asserts here, but that's ok because we're really just asserting 1 
	// thing. the 32-bit size value is split into 4 chars. if the size is 285
	// (29 more than the 8-bit max size), the last char "rolls over" to 29 
	// (this is caused by a bit-wise & on 0xff and 8-bit truncation). each 
	// char before the last stores a bit-shifted version of the number, each 
	// 1 more power than the last, which is done by bit-shifting [0] by 24, 
	// [1] by 16, [2] by 8 ([3] is not bit-shifted).
	EXPECT_EQ(0, actual[8]); // 285 >> 24 = 285 / (256^3) = 0
	EXPECT_EQ(0, actual[9]); // 285 >> 16 = 285 / (256^2) = 0
	EXPECT_EQ(1, actual[10]); // 285 >> 8 = 285 / (256^1) = 1(.11328125)
	EXPECT_EQ(29, actual[11]); // 285 - 256 = 29
}
int CPreGame::KeyPressed(unsigned short k,bool isRepeat)
{
	if (k == SDLK_ESCAPE){
		if(keys[SDLK_LSHIFT]){
			logOutput.Print("User exited");
			globalQuit=true;
		} else
			logOutput.Print("Use shift-esc to quit");
	}
	if(showList){					//are we currently showing a list?
		showList->KeyPressed(k, isRepeat);
		return 0;
	}

	if (userWriting){
		keys[k] = true;
		if (k == SDLK_v && keys[SDLK_LCTRL]){
			CClipboard clipboard;
			userInput += clipboard.GetContents();
			return 0;
		}
		if(k == SDLK_BACKSPACE){ //backspace
			if(userInput.size()!=0)
				userInput.erase(userInput.size()-1,1);
			return 0;
		}
		if(k == SDLK_RETURN){
			userWriting=false;
			return 0;
		}
		return 0;
	}

	return 0;
}
Beispiel #4
0
/*
-----------------------------------------------------------------------------

-----------------------------------------------------------------------------
*/
void CShowString::HandleViewCommandL(TInt aCommand)
    {
    switch(aCommand)
        {
		case ESSCopyClipBoard:
			if(iString)
			{
				CClipboard* cb = CClipboard::NewForWritingLC(CCoeEnv::Static()->FsSession());
				
				cb->StreamDictionary().At(KClipboardUidTypePlainText);
				
				CPlainText* BPlainText = CPlainText::NewL();
				CleanupStack::PushL(BPlainText);
				
				BPlainText->InsertL(0,iString->Des());
				
				BPlainText->CopyToStoreL(cb->Store(),cb->StreamDictionary(),0,BPlainText->DocumentLength());
				
				CleanupStack::PopAndDestroy(); // CBPlainText
				cb->CommitL();
				CleanupStack::PopAndDestroy(); // cb
			}
			break;
        };
    }
Beispiel #5
0
TEST(CClipboardTests, unmarshall_withTextAndHtml_getHtmlIsValid)
{
	CClipboard clipboard;
	CString data;
	data += (char)0;
	data += (char)0;
	data += (char)0;
	data += (char)2; // 2 formats added
	data += (char)0;
	data += (char)0;
	data += (char)0;
	data += (char)IClipboard::kText;
	data += (char)0;
	data += (char)0;
	data += (char)0;
	data += (char)14;
	data += "synergy rocks!";
	data += (char)0;
	data += (char)0;
	data += (char)0;
	data += (char)IClipboard::kHTML;
	data += (char)0;
	data += (char)0;
	data += (char)0;
	data += (char)10;
	data += "html sucks";

	clipboard.unmarshall(data, 0);

	clipboard.open(0);
	CString actual = clipboard.get(IClipboard::kHTML);
	EXPECT_EQ("html sucks", actual);
}
Beispiel #6
0
TEST(CClipboardTests, unmarshall_withTextSize285_getTextIsValid)
{
	CClipboard clipboard;

	// 285 chars
	CString text;
	text.append("Synergy is Free and Open Source Software that lets you ");
	text.append("easily share your mouse and keyboard between multiple ");
	text.append("computers, where each computer has it's own display. No ");
	text.append("special hardware is required, all you need is a local area ");
	text.append("network. Synergy is supported on Windows, Mac OS X and Linux.");

	CString data;
	data += (char)0;
	data += (char)0;
	data += (char)0;
	data += (char)1; // 1 format added
	data += (char)0;
	data += (char)0;
	data += (char)0;
	data += (char)IClipboard::kText;
	data += (char)0; // 285 >> 24 = 285 / (256^3) = 0
	data += (char)0; // 285 >> 16 = 285 / (256^2) = 0
	data += (char)1; // 285 >> 8 = 285 / (256^1) = 1(.11328125)
	data += (char)29; // 285 - 256 = 29
	data += text;

	clipboard.unmarshall(data, 0);

	clipboard.open(0);
	CString actual = clipboard.get(IClipboard::kText);
	EXPECT_EQ(text, actual);
}
Beispiel #7
0
void CGameController::PasteClipboard()
{
	CClipboard clipboard;
	const std::string text = clipboard.GetContents();
	userInput.insert(writingPos, text);
	writingPos += text.length();
}
Beispiel #8
0
TEST(CClipboardTests, open_timeIsOne_returnsTrue)
{
	CClipboard clipboard;

	bool actual = clipboard.open(1);

	EXPECT_EQ(true, actual);
}
Beispiel #9
0
TEST(CClipboardTests, getTime_openWithNoEmpty_returnsZero)
{
	CClipboard clipboard;
	clipboard.open(1);

	CClipboard::Time actual = clipboard.getTime();

	EXPECT_EQ(0, actual);
}
Beispiel #10
0
TEST(CClipboardTests, get_withNoFormats_returnsEmpty)
{
	CClipboard clipboard;
	clipboard.open(0);

	CString actual = clipboard.get(IClipboard::kText);

	EXPECT_EQ("", actual);
}
Beispiel #11
0
TEST(CClipboardTests, has_withNoFormats_returnsFalse)
{
	CClipboard clipboard;
	clipboard.open(0);

	bool actual = clipboard.has(IClipboard::kText);

	EXPECT_FALSE(actual);
}
Beispiel #12
0
TEST(CClipboardTests, empty_openCalled_returnsTrue)
{
	CClipboard clipboard;
	clipboard.open(0);

	bool actual = clipboard.empty();

	EXPECT_EQ(true, actual);
}
Beispiel #13
0
TEST(CClipboardTests, close_isOpen_noErrors)
{
	CClipboard clipboard;
	clipboard.open(0);

	clipboard.close();

	// can't assert anything
}
int CPreGame::KeyPressed(unsigned short k,bool isRepeat)
{
    if (k == SDLK_ESCAPE) {
        if(keys[SDLK_LSHIFT]) {
            logOutput.Print("User exited");
            globalQuit=true;
        } else
            logOutput.Print("Use shift-esc to quit");
    }
    if(showList) {					//are we currently showing a list?
        showList->KeyPressed(k, isRepeat);
        return 0;
    }

    if (userWriting) {
        keys[k] = true;
        if (k == SDLK_v && keys[SDLK_LCTRL]) {
            CClipboard clipboard;
            const string text = clipboard.GetContents();
            userInput.insert(writingPos, text);
            writingPos += text.length();
            return 0;
        }
        if(k == SDLK_BACKSPACE) {
            if (!userInput.empty() && (writingPos > 0)) {
                userInput.erase(writingPos - 1, 1);
                writingPos--;
            }
            return 0;
        }
        if(k == SDLK_DELETE) {
            if (!userInput.empty() && (writingPos < (int)userInput.size())) {
                userInput.erase(writingPos, 1);
            }
            return 0;
        }
        else if(k==SDLK_LEFT) {
            writingPos = max(0, min((int)userInput.length(), writingPos - 1));
        }
        else if(k==SDLK_RIGHT) {
            writingPos = max(0, min((int)userInput.length(), writingPos + 1));
        }
        else if(k==SDLK_HOME) {
            writingPos = 0;
        }
        else if(k==SDLK_END) {
            writingPos = (int)userInput.length();
        }
        if(k == SDLK_RETURN) {
            userWriting=false;
            return 0;
        }
        return 0;
    }

    return 0;
}
Beispiel #15
0
TEST(CClipboardTests, add_newValue_valueWasStored)
{
	CClipboard clipboard;
	clipboard.open(0);

	clipboard.add(IClipboard::kText, "synergy rocks!");

	CString actual = clipboard.get(IClipboard::kText);
	EXPECT_EQ("synergy rocks!", actual);
}
Beispiel #16
0
TEST(CClipboardTests, has_withFormatAdded_returnsTrue)
{
	CClipboard clipboard;
	clipboard.open(0);
	clipboard.add(IClipboard::kText, "synergy rocks!");

	bool actual = clipboard.has(IClipboard::kText);

	EXPECT_EQ(true, actual);
}
Beispiel #17
0
TEST(CClipboardTests, get_withFormatAdded_returnsExpected)
{
	CClipboard clipboard;
	clipboard.open(0);
	clipboard.add(IClipboard::kText, "synergy rocks!");

	CString actual = clipboard.get(IClipboard::kText);

	EXPECT_EQ("synergy rocks!", actual);
}
Beispiel #18
0
TEST(CClipboardTests, getTime_openAndEmpty_returnsOne)
{
	CClipboard clipboard;
	clipboard.open(1);
	clipboard.empty();

	CClipboard::Time actual = clipboard.getTime();

	EXPECT_EQ(1, actual);
}
Beispiel #19
0
TEST(CClipboardTests, marshall_addNotCalled_firstCharIsZero)
{
	CClipboard clipboard;

	CString actual = clipboard.marshall();

	// seems to return "\0\0\0\0" but EXPECT_EQ can't assert this,
	// so instead, just assert that first char is '\0'.
	EXPECT_EQ(0, (int)actual[0]);
}
Beispiel #20
0
TEST(CClipboardTests, add_replaceValue_valueWasReplaced)
{
	CClipboard clipboard;
	clipboard.open(0);

	clipboard.add(IClipboard::kText, "synergy rocks!");
	clipboard.add(IClipboard::kText, "maxivista sucks"); // haha, just kidding.

	CString actual = clipboard.get(IClipboard::kText);
	EXPECT_EQ("maxivista sucks", actual);
}
Beispiel #21
0
TEST(CClipboardTests, marshall_withTextAdded_lastSizeCharIs14)
{
	CClipboard clipboard;
	clipboard.open(0);
	clipboard.add(IClipboard::kText, "synergy rocks!"); // 14 chars
	clipboard.close();

	CString actual = clipboard.marshall();

	EXPECT_EQ(14, (int)actual[11]);
}
Beispiel #22
0
TEST(CClipboardTests, empty_singleFormat_hasReturnsFalse)
{
	CClipboard clipboard;
	clipboard.open(0);
	clipboard.add(CClipboard::kText, "synergy rocks!");

	clipboard.empty();

	bool actual = clipboard.has(CClipboard::kText);
	EXPECT_FALSE(actual);
}
Beispiel #23
0
TEST(CClipboardTests, marshall_withTextAdded_typeCharIsText)
{
	CClipboard clipboard;
	clipboard.open(0);
	clipboard.add(IClipboard::kText, "synergy rocks!");
	clipboard.close();

	CString actual = clipboard.marshall();

	// string contains other data, but 8th char should be kText.
	EXPECT_EQ(IClipboard::kText, (int)actual[7]);
}
Beispiel #24
0
TEST(CClipboardTests, marshall_withHtmlAdded_typeCharIsHtml)
{
	CClipboard clipboard;
	clipboard.open(0);
	clipboard.add(IClipboard::kHTML, "html sucks");
	clipboard.close();

	CString actual = clipboard.marshall();

	// string contains other data, but 8th char should be kHTML.
	EXPECT_EQ(IClipboard::kHTML, (int)actual[7]);
}
Beispiel #25
0
TEST(CClipboardTests, marshall_withTextAdded_endsWithAdded)
{
	CClipboard clipboard;
	clipboard.open(0);
	clipboard.add(IClipboard::kText, "synergy rocks!");
	clipboard.close();

	CString actual = clipboard.marshall();

	// string contains other data, but should end in the string we added.
	EXPECT_EQ("synergy rocks!", actual.substr(12));
}
Beispiel #26
0
TEST(CClipboardTests, unmarshall_emptyData_hasTextIsFalse)
{
	CClipboard clipboard;

	CString data;
	data += (char)0;
	data += (char)0;
	data += (char)0;
	data += (char)0; // 0 formats added

	clipboard.unmarshall(data, 0);

	clipboard.open(0);
	bool actual = clipboard.has(IClipboard::kText);
	EXPECT_FALSE(actual);
}
Beispiel #27
0
void
CPrimaryClient::setClipboard(ClipboardID id, const IClipboard* clipboard)
{
	LOG((CLOG_INFO "xCprimaryClient::setClipboard call. Name: %s", getName().c_str()));
	// ignore if this clipboard is already clean
	if (m_clipboardDirty[id]) {
		// this clipboard is now clean
		m_clipboardDirty[id] = false;
	CClipboard Clipboard;
	Clipboard.copy(&Clipboard,clipboard); 
	Clipboard.open(0);
			CString content, new_content;
			if(Clipboard.has(IClipboard::kFilePath)) 
			{
				CString prefix, source;
				content = Clipboard.get(IClipboard::kFilePath);
				size_t pos = content.find("\n");
				source = content.substr(0,pos);
				//content = content.substr(pos+1, content.size());
				CScreenMounts *map = ((CServerApp*) &ARCH->app())->args().m_config->getMounts(source, getName());
				LOG((CLOG_INFO "X_PAS1 setClipboard: %s %s",source.c_str(), content.c_str()));
				
				if (map!=NULL && !map->empty())
				{
					while (pos < content.size())
					{
						++pos;
						CString line = content.substr(pos, content.find("\n", pos)-pos+1);
						pos = content.find("\n", pos);
						LOG ((CLOG_INFO "X_PAS2 The line is: %s\n", line.c_str()));
						for( CScreenMounts::iterator it = map->begin(); it != map->end(); it++)
						{
							int p = line.find(it->first);
							
							if( p != std::string::npos)
							{
								line = it->second + line.substr(p + it->first.size() );
								
								break;
							}
						}
						LOG ((CLOG_INFO "it changed to: %s\n", line.c_str()));
						new_content.append(line);
					}
					Clipboard.add(IClipboard::kFilePath, new_content);
					LOG((CLOG_INFO "X_PAS3 setClipboard: %s %s",source.c_str(), Clipboard.get(IClipboard::kFilePath).c_str()));
				}
				LOG((CLOG_INFO "X_PAS4 Changed2 clipboard: %s", new_content.c_str()));
			}		
			Clipboard.close();
		// set clipboard
		m_screen->setClipboard(id, &Clipboard);
	}
}
Beispiel #28
0
bool ClipboardSetText(HWND owner, const UString &s)
{
  CClipboard clipboard;
  if (!clipboard.Open(owner))
    return false;
  if (!::EmptyClipboard())
    return false;

  bool res;
  res = ClipboardSetData(CF_UNICODETEXT, (const wchar_t *)s, (s.Length() + 1) * sizeof(wchar_t));
  #ifndef _UNICODE
  AString a;
  a = UnicodeStringToMultiByte(s, CP_ACP);
  res |=  ClipboardSetData(CF_TEXT, (const char *)a, (a.Length() + 1) * sizeof(char));
  a = UnicodeStringToMultiByte(s, CP_OEMCP);
  res |=  ClipboardSetData(CF_OEMTEXT, (const char *)a, (a.Length() + 1) * sizeof(char));
  #endif
  return res;
}
Beispiel #29
0
void
CServerProxy::setClipboard()
{
	// parse
	ClipboardID id;
	UInt32 seqNum;
	CString data;
	CProtocolUtil::readf(m_stream, kMsgDClipboard + 4, &id, &seqNum, &data);
	LOG((CLOG_DEBUG "recv clipboard %d size=%d", id, data.size()));

	// validate
	if (id >= kClipboardEnd) {
		return;
	}

	// forward
	CClipboard clipboard;
	clipboard.unmarshall(data, 0);
	m_client->setClipboard(id, &clipboard);
}
Beispiel #30
0
const QMimeData* QClipboard::mimeData(Mode mode) const
{
    if (mode != Clipboard) return 0;
    QClipboardData *d = clipboardData();
    bool dataExists(false);
    if (d)
    {
        TRAPD(err,{
            RFs fs = qt_s60GetRFs();
            CClipboard* cb = CClipboard::NewForReadingLC(fs);
            Q_ASSERT(cb);
            //stream for qt
            RStoreReadStream stream;
            TStreamId stid = (cb->StreamDictionary()).At(KQtCbDataStream);
            if (stid != 0) {
                stream.OpenLC(cb->Store(),stid);
                QT_TRYCATCH_LEAVING(readFromStreamLX(d->source(),stream));
                CleanupStack::PopAndDestroy(&stream);
                dataExists = true;
            }
            else {
                //symbian clipboard
                RStoreReadStream symbianStream;
                TStreamId symbianStId = (cb->StreamDictionary()).At(KClipboardUidTypePlainText);
                if (symbianStId != 0) {
                    symbianStream.OpenLC(cb->Store(), symbianStId);
                    QT_TRYCATCH_LEAVING(readSymbianStoreLX(d->source(), cb));
                    CleanupStack::PopAndDestroy(&symbianStream);
                    dataExists = true;
                }
            }
            CleanupStack::PopAndDestroy(cb);
        });
        if (err != KErrNone){
            qDebug()<< "clipboard is empty/err: " << err;
        }

        if (dataExists) {
            return d->source();
        }
    }