2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2004-07-02 22:08:15 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* This program 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; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2004-07-07 22:38:23 +08:00
|
|
|
#ifndef __GIMP_CLIPBOARD_H__
|
|
|
|
#define __GIMP_CLIPBOARD_H__
|
2004-07-02 22:08:15 +08:00
|
|
|
|
|
|
|
|
2005-11-01 19:01:44 +08:00
|
|
|
void gimp_clipboard_init (Gimp *gimp);
|
|
|
|
void gimp_clipboard_exit (Gimp *gimp);
|
2004-07-02 22:08:15 +08:00
|
|
|
|
2005-11-01 19:01:44 +08:00
|
|
|
gboolean gimp_clipboard_has_buffer (Gimp *gimp);
|
|
|
|
gboolean gimp_clipboard_has_svg (Gimp *gimp);
|
2005-05-16 20:31:04 +08:00
|
|
|
|
2005-11-01 19:01:44 +08:00
|
|
|
GimpBuffer * gimp_clipboard_get_buffer (Gimp *gimp);
|
|
|
|
gchar * gimp_clipboard_get_svg (Gimp *gimp,
|
|
|
|
gsize *svg_length);
|
2004-07-02 22:08:15 +08:00
|
|
|
|
2005-11-01 19:01:44 +08:00
|
|
|
void gimp_clipboard_set_buffer (Gimp *gimp,
|
|
|
|
GimpBuffer *buffer);
|
|
|
|
void gimp_clipboard_set_svg (Gimp *gimp,
|
|
|
|
const gchar *svg);
|
2005-11-02 20:03:37 +08:00
|
|
|
void gimp_clipboard_set_text (Gimp *gimp,
|
|
|
|
const gchar *text);
|
2005-09-20 05:33:03 +08:00
|
|
|
|
2004-07-02 22:08:15 +08:00
|
|
|
|
2004-07-07 22:38:23 +08:00
|
|
|
#endif /* __GIMP_CLIPBOARD_H__ */
|