From d240bec03627f5a26cd70e83a58483c69834f7c2 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Mon, 30 May 2016 11:04:32 +0100 Subject: move clipboard header into public API --- include/netsurf/clipboard.h | 62 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 include/netsurf/clipboard.h (limited to 'include/netsurf/clipboard.h') diff --git a/include/netsurf/clipboard.h b/include/netsurf/clipboard.h new file mode 100644 index 000000000..6feea2404 --- /dev/null +++ b/include/netsurf/clipboard.h @@ -0,0 +1,62 @@ +/* + * Copyright 2014 Vincent Sanders + * + * This file is part of NetSurf, http://www.netsurf-browser.org/ + * + * NetSurf is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * NetSurf is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/** + * \file + * + * Interface to platform-specific clipboard operations. + */ + +#ifndef _NETSURF_DESKTOP_GUI_CLIPBOARD_H_ +#define _NETSURF_DESKTOP_GUI_CLIPBOARD_H_ + +#include + +#include "utils/errors.h" +#include "desktop/plot_style.h" + +typedef struct nsnsclipboard_styles { + size_t start; /**< Start of run */ + + plot_font_style_t style; /**< Style to give text run */ +} nsclipboard_styles; + +/** + * function table for clipboard operations. + */ +struct gui_clipboard_table { + /** + * Core asks front end for clipboard contents. + * + * \param buffer UTF-8 text, allocated by front end, ownership yeilded to core + * \param length Byte length of UTF-8 text in buffer + */ + void (*get)(char **buffer, size_t *length); + + /** + * Core tells front end to put given text in clipboard + * + * \param buffer UTF-8 text, owned by core + * \param length Byte length of UTF-8 text in buffer + * \param styles Array of styles given to text runs, owned by core, or NULL + * \param n_styles Number of text run styles in array + */ + void (*set)(const char *buffer, size_t length, nsclipboard_styles styles[], int n_styles); +}; + +#endif -- cgit v1.2.3