File: link_layer.pdb

package info (click to toggle)
gimp 3.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 222,880 kB
  • sloc: ansic: 870,914; python: 10,965; lisp: 10,857; cpp: 7,355; perl: 4,536; sh: 1,753; xml: 972; yacc: 609; lex: 348; javascript: 150; makefile: 42
file content (213 lines) | stat: -rw-r--r-- 5,201 bytes parent folder | download | duplicates (2)
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
# GIMP - The GNU Image Manipulation Program
# Copyright (C) 1995 Spencer Kimball and Peter Mattis

# New Link Layer PDB API
# Copyright (C) 2025 Jehan

# 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/>.


sub link_layer_new {
    $blurb = 'Create a new link layer.';

    $help = <<'HELP';
This procedure creates a link layer monitoring the specified @file.


The new layer still needs to be added to the image as this is not
automatic. Add the new layer with the [method@Image.insert_layer]
method.


The arguments are kept as simple as necessary for the basic case. All
link attributes, however, can be modified with the appropriate
`gimp_link_layer_set_*()` procedures.
HELP

    &jehan_pdb_misc('2025', '3.2');

    @inargs = (
        { name => 'image', type => 'image',
          desc => 'The image' },
        { name => 'file', type => 'file',
          desc => 'The file this link layer will monitor' }
    );

    @outargs = (
        { name => 'layer', type => 'link_layer',
          desc => 'The new link layer. The object belongs to libgimp and you should not free it.' }
    );

    %invoke = (
        code => <<'CODE'
{
  if (file == NULL)
    {
      g_set_error (error, GIMP_PDB_ERROR, GIMP_PDB_ERROR_INVALID_ARGUMENT,
                   _("Failed to create link layer"));

      success = FALSE;
    }

  if (success)
    {
      GimpLink *link;

      link = gimp_link_new (gimp, file, 0, 0, TRUE, NULL, error);

      if (link == NULL)
        {
          success = FALSE;
        }
      else
        {
          layer = GIMP_LINK_LAYER (gimp_link_layer_new (image, link));

          if (! layer)
            {
              g_set_error (error, GIMP_PDB_ERROR, GIMP_PDB_ERROR_INVALID_ARGUMENT,
                           _("Failed to create link layer"));

              success = FALSE;
            }
        }

      g_clear_object (&link);
    }
}
CODE
    );
}

sub link_layer_get_file {
    $blurb = 'Get the monitored file.';

    $help = <<'HELP';
This procedure returns the file which is being monitored.
HELP

    &jehan_pdb_misc('2025', '3.2');

    @inargs = (
        { name => 'layer', type => 'link_layer',
          desc => 'The link layer' }
    );

    @outargs = (
        { name => 'file', type => 'file',
          desc => 'The monitored file' }
    );

    %invoke = (
        code => <<'CODE'
{
  file = g_object_ref (gimp_link_get_file (gimp_link_layer_get_link (layer), NULL, NULL));
}
CODE
    );
}

sub link_layer_set_file {
    $blurb = 'Set the monitored file.';

    $help = <<'HELP';
This procedure sets the file to be monitored.
It may change the layer's render.
HELP

    &jehan_pdb_misc('2025', '3.2');

    @inargs = (
        { name => 'layer', type => 'link_layer',
          desc => 'The link layer' },
        { name => 'file', type => 'file',
          desc => 'The file to monitor' }
    );

    %invoke = (
        code => <<'CODE'
{
  GimpLink *link = gimp_link_new (gimp, file, 0, 0, TRUE, NULL, error);

  if (link)
    {
      gimp_link_layer_set_link (layer, link, TRUE);
    }
  else
    {
      success = FALSE;
    }

  g_clear_object (&link);
}
CODE
    );
}

sub link_layer_get_mime_type {
    $blurb = 'Get the mime type of the monitored file.';

    $help = <<'HELP';
This procedure returns the mime type of the file which is being monitored by @layer.


Note that this will be the real mime type, corresponding to our format support,
as returned by the [class@Gimp.LoadProcedure] which actually performs the external
image file import.


This function may also return %NULL in case of error (for instance if the external
file doesn't exist anymore).
HELP

    &jehan_pdb_misc('2025', '3.2');

    @inargs = (
        { name => 'layer', type => 'link_layer',
          desc => 'The link layer' }
    );

    @outargs = (
        { name => 'mimetype', type => 'string',
          desc => 'The mime type of the monitored file' }
    );

    %invoke = (
        code => <<'CODE'
{
  mimetype = g_strdup (gimp_link_get_mime_type (gimp_link_layer_get_link (layer)));
}
CODE
    );
}

@headers = qw("core/gimplink.h"
              "core/gimplinklayer.h"
              "core/gimprasterizable.h"
              "gimppdberror.h"
              "gimp-intl.h");

@procs = qw(link_layer_new
            link_layer_get_file
            link_layer_set_file
            link_layer_get_mime_type);

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

$desc = 'Link layer procedures';
$doc_title = 'gimplinklayer';
$doc_short_desc = 'Functions for querying and manipulating link layers.';
$doc_long_desc = 'Functions for querying and manipulating link layers.';

1;