summaryrefslogtreecommitdiffstats
path: root/pdb/groups/buffer.pdb
blob: faf78c42804f61294624a81da01789c4daf3db98 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
# GIMP - The GNU Image Manipulation Program
# 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 3 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, see <https://www.gnu.org/licenses/>.

# "Perlized" from C source by Manish Singh <yosh@gimp.org>

sub buffers_get_list {
    $blurb = 'Retrieve a complete listing of the available buffers.';

    $help = <<'HELP';
This procedure returns a complete listing of available named buffers.
HELP

    &mitch_pdb_misc('2005', '2.4');

    @inargs = (
	{ name => 'filter', type => 'string', null_ok => 1,
          desc => 'An optional regular expression used to filter the list' }
    );

    @outargs = (
	{ name => 'buffer_list', type => 'stringarray',
	  desc => 'The list of buffer names',
	  array => { name => 'num_buffers',
		     desc => 'The number of buffers' } }
    );

    %invoke = (
	code => <<'CODE'
{
  buffer_list = gimp_container_get_filtered_name_array (gimp->named_buffers,
                                                        filter, &num_buffers);
}
CODE
    );
}

sub buffer_rename {
    $blurb = 'Renames a named buffer.';
    $help  = 'This procedure renames a named buffer.';

    &mitch_pdb_misc('2005', '2.4');

    @inargs = (
        { name => 'buffer_name', type => 'string', non_empty => 1,
          desc => 'The buffer name' },
        { name => 'new_name', type => 'string', non_empty => 1,
          desc => 'The buffer\'s new name' }
    );

    @outargs = (
	{ name => 'real_name', type => 'string',
	  desc => 'The real name given to the buffer' }
    );

    %invoke = (
	code => <<'CODE'
{
  GimpBuffer *buffer = gimp_pdb_get_buffer (gimp, buffer_name, error);

  if (buffer)
    {
      gimp_object_set_name (GIMP_OBJECT (buffer), new_name);
      real_name = g_strdup (gimp_object_get_name (buffer));
    }
  else
    success = FALSE;
}
CODE
    );
}

sub buffer_delete {
    $blurb = 'Deletes a named buffer.';
    $help  = 'This procedure deletes a named buffer.';

    $author = $copyright = 'David Gowers <neota@softhome.net>';
    $date   = '2005';
    $since  = '2.4';

    @inargs = (
        { name => 'buffer_name', type => 'string', non_empty => 1,
          desc => 'The buffer name' }
    );

    %invoke = (
	code => <<'CODE'
{
  GimpBuffer *buffer = gimp_pdb_get_buffer (gimp, buffer_name, error);

  if (buffer)
    success = gimp_container_remove (gimp->named_buffers, GIMP_OBJECT (buffer));
  else
    success = FALSE;
}
CODE
    );
}

sub buffer_get_width {
    $blurb = "Retrieves the specified buffer's width.";
    $help  = "This procedure retrieves the specified named buffer's width.";

    &mitch_pdb_misc('2005', '2.4');

    @inargs = (
        { name => 'buffer_name', type => 'string', non_empty => 1,
          desc => 'The buffer name' }
    );

    @outargs = (
	{ name => 'width', type => 'int32',
          desc => "The buffer width" }
    );

    %invoke = (
	code => <<'CODE'
{
  GimpBuffer *buffer = gimp_pdb_get_buffer (gimp, buffer_name, error);

  if (buffer)
    width = gimp_buffer_get_width (buffer);
  else
    success = FALSE;
}
CODE
    );
}

sub buffer_get_height {
    $blurb = "Retrieves the specified buffer's height.";
    $help  = "This procedure retrieves the specified named buffer's height.";

    &mitch_pdb_misc('2005', '2.4');

    @inargs = (
        { name => 'buffer_name', type => 'string', non_empty => 1,
          desc => 'The buffer name' }
    );

    @outargs = (
	{ name => 'height', type => 'int32',
          desc => "The buffer height" }
    );

    %invoke = (
	code => <<'CODE'
{
  GimpBuffer *buffer = gimp_pdb_get_buffer (gimp, buffer_name, error);

  if (buffer)
    height = gimp_buffer_get_height (buffer);
  else
    success = FALSE;
}
CODE
    );
}

sub buffer_get_bytes {
    $blurb = "Retrieves the specified buffer's bytes.";
    $help  = "This procedure retrieves the specified named buffer's bytes.";

    &mitch_pdb_misc('2005', '2.4');

    @inargs = (
        { name => 'buffer_name', type => 'string', non_empty => 1,
          desc => 'The buffer name' }
    );

    @outargs = (
	{ name => 'bytes', type => 'int32',
          desc => "The buffer bpp" }
    );

    %invoke = (
	code => <<'CODE'
{
  GimpBuffer *buffer = gimp_pdb_get_buffer (gimp, buffer_name, error);

  if (buffer)
    {
      const Babl *format = gimp_buffer_get_format (buffer);

      bytes = babl_format_get_bytes_per_pixel (format);
    }
  else
    success = FALSE;
}
CODE
    );
}

sub buffer_get_image_type {
    $blurb = "Retrieves the specified buffer's image type.";
    $help  = "This procedure retrieves the specified named buffer's image type.";

    &mitch_pdb_misc('2005', '2.4');

    @inargs = (
        { name => 'buffer_name', type => 'string', non_empty => 1,
          desc => 'The buffer name' }
    );

    @outargs = (
	{ name => 'image_type', type => 'enum GimpImageBaseType',
          desc => "The buffer image type" }
    );

    %invoke = (
	code => <<'CODE'
{
  GimpBuffer *buffer = gimp_pdb_get_buffer (gimp, buffer_name, error);

  if (buffer)
    image_type = gimp_babl_format_get_image_type (gimp_buffer_get_format (buffer));
  else
    success = FALSE;
}
CODE
    );
}


@headers = qw(<string.h>
              "gegl/gimp-babl-compat.h"
              "core/gimp.h"
              "core/gimpbuffer.h"
              "core/gimpcontainer.h"
              "core/gimpcontainer-filter.h"
	      "gimppdb-utils.h");

@procs = qw(buffers_get_list
            buffer_rename
            buffer_delete
	    buffer_get_width
            buffer_get_height
            buffer_get_bytes
            buffer_get_image_type);

%exports = (app => [@procs], lib => [@procs]);

$desc = 'Buffer procedures';
$doc_title = 'gimpbuffer';
$doc_short_desc = 'Functions for manipulating cut buffers.';
$doc_long_desc = 'Functions related to named cut buffers.';

1;