clipboard_push_text implementation for WIN32, UNTESTED
This commit is contained in:
parent
922befd844
commit
5c079443f9
28
src/misc.c
28
src/misc.c
@ -3,14 +3,6 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <regex.h>
|
#include <regex.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#ifdef WIN32
|
|
||||||
#include <windows.h>
|
|
||||||
#include "update.h"
|
|
||||||
#endif
|
|
||||||
#ifdef MACOSX
|
|
||||||
///#include <Pasteboard.h>
|
|
||||||
#include <ApplicationServices/ApplicationServices.h>
|
|
||||||
#endif
|
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "defines.h"
|
#include "defines.h"
|
||||||
#include "interface.h"
|
#include "interface.h"
|
||||||
@ -19,6 +11,9 @@
|
|||||||
#if defined WIN32
|
#if defined WIN32
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef MACOSX
|
||||||
|
#include <ApplicationServices/ApplicationServices.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
//Signum function
|
//Signum function
|
||||||
#if defined(WIN32) && !defined(__GNUC__)
|
#if defined(WIN32) && !defined(__GNUC__)
|
||||||
@ -391,6 +386,23 @@ void clipboard_push_text(char * text)
|
|||||||
|
|
||||||
CFDataRef data = CFDataCreate(kCFAllocatorDefault, text, strlen(text));
|
CFDataRef data = CFDataCreate(kCFAllocatorDefault, text, strlen(text));
|
||||||
PasteboardPutItemFlavor(newclipboard, (PasteboardItemID)1, CFSTR("com.apple.traditional-mac-plain-text"), data, 0);
|
PasteboardPutItemFlavor(newclipboard, (PasteboardItemID)1, CFSTR("com.apple.traditional-mac-plain-text"), data, 0);
|
||||||
|
#elif defined WIN32
|
||||||
|
if(OpenClipboard())
|
||||||
|
{
|
||||||
|
HGLOBAL cbuffer;
|
||||||
|
char * glbuffer;
|
||||||
|
|
||||||
|
EmptyClipboard();
|
||||||
|
|
||||||
|
cbuffer = GlobalAlloc(GMEM_DDESHARE, strlen(text)+1);
|
||||||
|
glbuffer = (char*)GlobalLock(cbuffer);
|
||||||
|
|
||||||
|
strcpy(glbuffer, text);
|
||||||
|
|
||||||
|
GlobalUnlock(cbuffer);
|
||||||
|
SetClipboardData(CF_TEXT, cbuffer);
|
||||||
|
CloseClipboard();
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
printf("Not implemented: put text on clipboard \"%s\"\n", text);
|
printf("Not implemented: put text on clipboard \"%s\"\n", text);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user