summaryrefslogtreecommitdiffstats
path: root/libgimp/gimpedit.c
blob: 0dbf9295b528da018bb17a7cf3da0a82b7300aa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* LIBGIMP - The GIMP Library
 * Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
 *
 * gimpedit.c
 *
 * This library is free software: you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library.  If not, see
 * <https://www.gnu.org/licenses/>.
 */

#include "config.h"

#include "gimp.h"


/**
 * gimp_edit_paste_as_new:
 *
 * Paste buffer to a new image.
 *
 * This procedure pastes a copy of the internal GIMP edit buffer to a
 * new image. The GIMP edit buffer will be empty unless a call was
 * previously made to either gimp_edit_cut() or gimp_edit_copy(). This
 * procedure returns the new image or -1 if the edit buffer was empty.
 *
 * Deprecated: Use gimp_edit_paste_as_new_image() instead.
 *
 * Returns: The new image.
 *
 * Since: 2.4
 **/
gint32
gimp_edit_paste_as_new (void)
{
  return gimp_edit_paste_as_new_image ();
}

/**
 * gimp_edit_named_paste_as_new:
 * @buffer_name: The name of the buffer to paste.
 *
 * Paste named buffer to a new image.
 *
 * This procedure works like gimp_edit_paste_as_new_image() but pastes a
 * named buffer instead of the global buffer.
 *
 * Deprecated: Use gimp_edit_named_paste_as_new_image() instead.
 *
 * Returns: The new image.
 *
 * Since: 2.4
 **/
gint32
gimp_edit_named_paste_as_new (const gchar *buffer_name)
{
  return gimp_edit_named_paste_as_new_image (buffer_name);
}