Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
fbd11714
Commit
fbd11714
authored
Mar 28, 2017
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add clipboard
parent
a595c119
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
0 deletions
+32
-0
win32.h
win32.h
+1
-0
clipboard.h
win32/clipboard.h
+30
-0
file_op.h
win32/file_op.h
+1
-0
No files found.
win32.h
View file @
fbd11714
...
@@ -13,6 +13,7 @@
...
@@ -13,6 +13,7 @@
#include "win32/file_op.h"
#include "win32/file_op.h"
#endif
#endif
#include "win32/memory_micros.h"
#include "win32/memory_micros.h"
#include "win32/clipboard.h"
namespace
utf8
{
namespace
utf8
{
...
...
win32/clipboard.h
0 → 100644
View file @
fbd11714
#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
win32/file_op.h
View file @
fbd11714
#pragma once
#pragma once
#include <string>
namespace
jlib
{
namespace
jlib
{
inline
bool
get_file_open_dialog_result
(
std
::
wstring
&
path
,
HWND
hWnd
=
nullptr
)
{
inline
bool
get_file_open_dialog_result
(
std
::
wstring
&
path
,
HWND
hWnd
=
nullptr
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment