clipboard text operations for win32

This commit is contained in:
Vadim Lopatin 2014-04-23 09:25:36 +04:00
parent 707169879a
commit 99e4e4e732
3 changed files with 66 additions and 0 deletions

View File

@ -268,6 +268,16 @@ wstring fromWStringz(const(wchar[]) s) {
return cast(wstring)(s[0..i].dup);
}
wstring fromWStringz(const(wchar) * s) {
if (s is null)
return null;
int i = 0;
while(s[i])
i++;
return cast(wstring)(s[0..i].dup);
}
/// widget state flags - bits
enum State : uint {

View File

@ -478,6 +478,10 @@ class Platform {
}
abstract Window createWindow(string windowCaption, Window parent);
abstract int enterMessageLoop();
/// retrieves text from clipboard (when mouseBuffer == true, use mouse selection clipboard - under linux)
abstract dstring getClipboardText(bool mouseBuffer = false);
/// sets text to clipboard (when mouseBuffer == true, use mouse selection clipboard - under linux)
abstract void setClipboardText(dstring text, bool mouseBuffer = false);
}
version (USE_OPENGL) {

View File

@ -531,6 +531,58 @@ class Win32Platform : Platform {
override Window createWindow(string windowCaption, Window parent) {
return new Win32Window(this, windowCaption, parent);
}
/// retrieves text from clipboard (when mouseBuffer == true, use mouse selection clipboard - under linux)
override dstring getClipboardText(bool mouseBuffer = false) {
dstring res = null;
if (mouseBuffer)
return res; // not supporetd under win32
if (!IsClipboardFormatAvailable(CF_TEXT))
return res;
if (!OpenClipboard(NULL))
return res;
HGLOBAL hglb = GetClipboardData(CF_TEXT);
if (hglb != NULL)
{
LPTSTR lptstr = cast(LPTSTR)GlobalLock(hglb);
if (lptstr != NULL)
{
wstring w = fromWStringz(lptstr);
res = toUTF32(w);
GlobalUnlock(hglb);
}
}
CloseClipboard();
return res;
}
/// sets text to clipboard (when mouseBuffer == true, use mouse selection clipboard - under linux)
override void setClipboardText(dstring text, bool mouseBuffer = false) {
if (text.length < 1 || mouseBuffer)
return;
if (!OpenClipboard(NULL))
return;
EmptyClipboard();
wstring w = toUTF16(text);
HGLOBAL hglbCopy = GlobalAlloc(GMEM_MOVEABLE,
(w.length + 1) * TCHAR.sizeof);
if (hglbCopy == NULL) {
CloseClipboard();
return;
}
LPTSTR lptstrCopy = cast(LPTSTR)GlobalLock(hglbCopy);
for (int i = 0; i < w.length; i++) {
lptstrCopy[i] = w[i];
}
lptstrCopy[w.length - 1] = 0;
GlobalUnlock(hglbCopy);
SetClipboardData(CF_TEXT, hglbCopy);
CloseClipboard();
}
}
extern(Windows)