Commit fbd11714 authored by captainwong's avatar captainwong

add clipboard

parent a595c119
......@@ -13,6 +13,7 @@
#include "win32/file_op.h"
#endif
#include "win32/memory_micros.h"
#include "win32/clipboard.h"
namespace utf8 {
......
#pragma once
#include <windows.h>
#include <string>
namespace jlib{
inline bool toClipboard(HWND hwnd, const std::string &s)
{
if (!OpenClipboard(hwnd)) return false;
if (!EmptyClipboard()) return false;
HGLOBAL hg = GlobalAlloc(GMEM_DDESHARE, s.size() + 1);
if (!hg) {
CloseClipboard();
return false;
}
LPVOID hMem = GlobalLock(hg);
if (!hMem) {
CloseClipboard();
return false;
}
memcpy(hMem, s.c_str(), s.size() + 1);
GlobalUnlock(hg);
SetClipboardData(CF_TEXT, hg);
CloseClipboard();
GlobalFree(hg);
return true;
}
}
\ No newline at end of file
#pragma once
#include <string>
namespace jlib {
inline bool get_file_open_dialog_result(std::wstring& path, HWND hWnd = nullptr) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment