1
0
mirror of https://github.com/aseprite/aseprite.git synced 2025-04-02 22:21:21 +00:00

Add USE_NATIVE_WIN32_CLIPBOARD in app/util/clipboard.cpp

This commit is contained in:
David Capello 2015-04-16 13:40:30 -03:00
parent 087b52213c
commit 2b838dc7f3

@ -37,6 +37,10 @@
#include "render/quantization.h" #include "render/quantization.h"
#ifdef _WIN32 #ifdef _WIN32
#define USE_NATIVE_WIN32_CLIPBOARD
#endif
#ifdef USE_NATIVE_WIN32_CLIPBOARD
#include <windows.h> #include <windows.h>
#include "app/util/clipboard_win32.h" #include "app/util/clipboard_win32.h"
@ -108,7 +112,7 @@ static void set_clipboard_image(Image* image, Palette* palette, bool set_system_
clipboard_image = image; clipboard_image = image;
// copy to the Windows clipboard // copy to the Windows clipboard
#ifdef _WIN32 #ifdef USE_NATIVE_WIN32_CLIPBOARD
if (set_system_clipboard) if (set_system_clipboard)
set_win32_clipboard_bitmap(image, palette); set_win32_clipboard_bitmap(image, palette);
#endif #endif
@ -136,7 +140,7 @@ static bool copy_from_document(const DocumentLocation& location)
clipboard::ClipboardFormat clipboard::get_current_format() clipboard::ClipboardFormat clipboard::get_current_format()
{ {
#ifdef _WIN32 #ifdef USE_NATIVE_WIN32_CLIPBOARD
if (win32_clipboard_contains_bitmap()) if (win32_clipboard_contains_bitmap())
return ClipboardImage; return ClipboardImage;
#endif #endif
@ -233,7 +237,7 @@ void clipboard::paste()
switch (get_current_format()) { switch (get_current_format()) {
case clipboard::ClipboardImage: { case clipboard::ClipboardImage: {
#ifdef _WIN32 #ifdef USE_NATIVE_WIN32_CLIPBOARD
// Get the image from the clipboard. // Get the image from the clipboard.
{ {
Image* win32_image = NULL; Image* win32_image = NULL;
@ -405,7 +409,7 @@ void clipboard::paste()
bool clipboard::get_image_size(gfx::Size& size) bool clipboard::get_image_size(gfx::Size& size)
{ {
#ifdef _WIN32 #ifdef USE_NATIVE_WIN32_CLIPBOARD
// Get the image from the clipboard. // Get the image from the clipboard.
return get_win32_clipboard_bitmap_size(size); return get_win32_clipboard_bitmap_size(size);
#else #else