Imported Upstream version 2.2.13
This commit is contained in:
@ -640,63 +640,65 @@ uninstall-am: uninstall-info-am uninstall-local
|
||||
|
||||
|
||||
@ENABLE_GTK_DOC_TRUE@all-local: html-build.stamp
|
||||
@ENABLE_GTK_DOC_FALSE@all-local:
|
||||
|
||||
docs: html-build.stamp
|
||||
|
||||
#### scan ####
|
||||
|
||||
@ENABLE_GTK_DOC_TRUE@scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB)
|
||||
@ENABLE_GTK_DOC_TRUE@ @echo 'gtk-doc: Scanning header files'
|
||||
@ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir)
|
||||
@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \
|
||||
@ENABLE_GTK_DOC_TRUE@ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \
|
||||
@ENABLE_GTK_DOC_TRUE@ else \
|
||||
@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) ; \
|
||||
@ENABLE_GTK_DOC_TRUE@ for i in $(SCANOBJ_FILES) ; do \
|
||||
@ENABLE_GTK_DOC_TRUE@ test -f $$i || touch $$i ; \
|
||||
@ENABLE_GTK_DOC_TRUE@ done \
|
||||
@ENABLE_GTK_DOC_TRUE@ fi
|
||||
@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && \
|
||||
@ENABLE_GTK_DOC_TRUE@ gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES)
|
||||
@ENABLE_GTK_DOC_TRUE@ touch scan-build.stamp
|
||||
scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB)
|
||||
@echo 'gtk-doc: Scanning header files'
|
||||
@-chmod -R u+w $(srcdir)
|
||||
if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \
|
||||
CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \
|
||||
else \
|
||||
cd $(srcdir) ; \
|
||||
for i in $(SCANOBJ_FILES) ; do \
|
||||
test -f $$i || touch $$i ; \
|
||||
done \
|
||||
fi
|
||||
cd $(srcdir) && \
|
||||
gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES)
|
||||
touch scan-build.stamp
|
||||
|
||||
@ENABLE_GTK_DOC_TRUE@$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES): scan-build.stamp
|
||||
@ENABLE_GTK_DOC_TRUE@ @true
|
||||
$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES): scan-build.stamp
|
||||
@true
|
||||
|
||||
#### templates ####
|
||||
|
||||
@ENABLE_GTK_DOC_TRUE@tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt
|
||||
@ENABLE_GTK_DOC_TRUE@ @echo 'gtk-doc: Rebuilding template files'
|
||||
@ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir)
|
||||
@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS)
|
||||
@ENABLE_GTK_DOC_TRUE@ touch tmpl-build.stamp
|
||||
tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt
|
||||
@echo 'gtk-doc: Rebuilding template files'
|
||||
@-chmod -R u+w $(srcdir)
|
||||
cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS)
|
||||
touch tmpl-build.stamp
|
||||
|
||||
@ENABLE_GTK_DOC_TRUE@tmpl.stamp: tmpl-build.stamp
|
||||
@ENABLE_GTK_DOC_TRUE@ @true
|
||||
tmpl.stamp: tmpl-build.stamp
|
||||
@true
|
||||
|
||||
#### xml ####
|
||||
|
||||
@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml $(expand_content_files)
|
||||
@ENABLE_GTK_DOC_TRUE@ @echo 'gtk-doc: Building XML'
|
||||
@ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir)
|
||||
@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && \
|
||||
@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $(MKDB_OPTIONS)
|
||||
@ENABLE_GTK_DOC_TRUE@ touch sgml-build.stamp
|
||||
sgml-build.stamp: tmpl.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files)
|
||||
@echo 'gtk-doc: Building XML'
|
||||
@-chmod -R u+w $(srcdir)
|
||||
cd $(srcdir) && \
|
||||
gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $(MKDB_OPTIONS)
|
||||
touch sgml-build.stamp
|
||||
|
||||
@ENABLE_GTK_DOC_TRUE@sgml.stamp: sgml-build.stamp
|
||||
@ENABLE_GTK_DOC_TRUE@ @true
|
||||
sgml.stamp: sgml-build.stamp
|
||||
@true
|
||||
|
||||
#### html ####
|
||||
|
||||
@ENABLE_GTK_DOC_TRUE@html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
|
||||
@ENABLE_GTK_DOC_TRUE@ @echo 'gtk-doc: Building HTML'
|
||||
@ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir)
|
||||
@ENABLE_GTK_DOC_TRUE@ rm -rf $(srcdir)/html
|
||||
@ENABLE_GTK_DOC_TRUE@ mkdir $(srcdir)/html
|
||||
@ENABLE_GTK_DOC_TRUE@ cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
|
||||
@ENABLE_GTK_DOC_TRUE@ test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html )
|
||||
@ENABLE_GTK_DOC_TRUE@ @echo 'gtk-doc: Fixing cross-references'
|
||||
@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
|
||||
@ENABLE_GTK_DOC_TRUE@ touch html-build.stamp
|
||||
@ENABLE_GTK_DOC_FALSE@all-local:
|
||||
html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
|
||||
@echo 'gtk-doc: Building HTML'
|
||||
@-chmod -R u+w $(srcdir)
|
||||
rm -rf $(srcdir)/html
|
||||
mkdir $(srcdir)/html
|
||||
cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
|
||||
test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html )
|
||||
@echo 'gtk-doc: Fixing cross-references'
|
||||
cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
|
||||
touch html-build.stamp
|
||||
|
||||
##############
|
||||
|
||||
@ -743,7 +745,7 @@ dist-hook: dist-check-gtkdoc dist-hook-local
|
||||
cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \
|
||||
fi
|
||||
|
||||
.PHONY : dist-hook-local
|
||||
.PHONY : dist-hook-local docs
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -5,17 +6,16 @@
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.68.1">
|
||||
<link rel="start" href="index.html" title="GIMP Base Library Reference Manual">
|
||||
<link rel="next" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<div class="book" lang="en">
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="book" lang="en">
|
||||
<div class="titlepage">
|
||||
<div>
|
||||
<div><table class="navigation" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">GIMP Base Library Reference Manual</p></th></tr></table></div>
|
||||
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">GIMP Base Library Reference Manual</p></th></tr></table></div>
|
||||
<div><p class="releaseinfo">
|
||||
for GIMP 2.2.11
|
||||
for GIMP 2.2.13
|
||||
|
||||
</p></div>
|
||||
</div>
|
||||
@ -77,10 +77,5 @@ it's plug-ins.</span>
|
||||
</dl></dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase.html"><b>Part I. GIMP Base Library >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</div></body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,23 +8,30 @@
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="next" href="libgimpbase-gimpbasetypes.html" title="gimpbasetypes">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimpbasetypes.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2538288" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2481874" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimpbaseenums"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimpbaseenums</span></h2>
|
||||
<h2>
|
||||
<a name="id2538288"></a><span class="refentrytitle">gimpbaseenums</span>
|
||||
</h2>
|
||||
<p>gimpbaseenums — Basic GIMP enumeration data types.</p>
|
||||
</td>
|
||||
<td valign="top" align="right"></td>
|
||||
@ -48,17 +56,17 @@ enum <a href="libgimpbase-gimpbaseenums.html#GimpStackTraceMode">GimpStac
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2470033"></a><h2>Description</h2>
|
||||
<a name="id2481874"></a><h2>Description</h2>
|
||||
<p>
|
||||
Basic GIMP enumeration data types.
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2470044"></a><h2>Details</h2>
|
||||
<a name="id2481889"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2470050"></a><h3>
|
||||
<a name="id2481900"></a><h3>
|
||||
<a name="GimpCheckSize"></a>enum GimpCheckSize</h3>
|
||||
<a class="indexterm" name="id2470061"></a><pre class="programlisting">typedef enum /*< pdb-skip >*/
|
||||
<a class="indexterm" name="id2481912"></a><pre class="programlisting">typedef enum /*< pdb-skip >*/
|
||||
{
|
||||
GIMP_CHECK_SIZE_SMALL_CHECKS = 0, /*< desc="Small" >*/
|
||||
GIMP_CHECK_SIZE_MEDIUM_CHECKS = 1, /*< desc="Medium" >*/
|
||||
@ -71,9 +79,9 @@ Basic GIMP enumeration data types.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2470080"></a><h3>
|
||||
<a name="id2481932"></a><h3>
|
||||
<a name="GimpCheckType"></a>enum GimpCheckType</h3>
|
||||
<a class="indexterm" name="id2470090"></a><pre class="programlisting">typedef enum /*< pdb-skip >*/
|
||||
<a class="indexterm" name="id2481944"></a><pre class="programlisting">typedef enum /*< pdb-skip >*/
|
||||
{
|
||||
GIMP_CHECK_TYPE_LIGHT_CHECKS = 0, /*< desc="Light Checks" >*/
|
||||
GIMP_CHECK_TYPE_GRAY_CHECKS = 1, /*< desc="Mid-Tone Checks" >*/
|
||||
@ -89,9 +97,9 @@ Basic GIMP enumeration data types.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2470113"></a><h3>
|
||||
<a name="id2481968"></a><h3>
|
||||
<a name="GimpImageBaseType"></a>enum GimpImageBaseType</h3>
|
||||
<a class="indexterm" name="id2470124"></a><pre class="programlisting">typedef enum
|
||||
<a class="indexterm" name="id2476797"></a><pre class="programlisting">typedef enum
|
||||
{
|
||||
GIMP_RGB, /*< desc="RGB color" >*/
|
||||
GIMP_GRAY, /*< desc="Grayscale" >*/
|
||||
@ -104,9 +112,9 @@ Basic GIMP enumeration data types.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2470142"></a><h3>
|
||||
<a name="id2476814"></a><h3>
|
||||
<a name="GimpImageType"></a>enum GimpImageType</h3>
|
||||
<a class="indexterm" name="id2492526"></a><pre class="programlisting">typedef enum
|
||||
<a class="indexterm" name="id2476827"></a><pre class="programlisting">typedef enum
|
||||
{
|
||||
GIMP_RGB_IMAGE, /*< desc="RGB" >*/
|
||||
GIMP_RGBA_IMAGE, /*< desc="RGB-alpha" >*/
|
||||
@ -122,9 +130,9 @@ Basic GIMP enumeration data types.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2492548"></a><h3>
|
||||
<a name="id2476848"></a><h3>
|
||||
<a name="GimpMessageHandlerType"></a>enum GimpMessageHandlerType</h3>
|
||||
<a class="indexterm" name="id2492557"></a><pre class="programlisting">typedef enum
|
||||
<a class="indexterm" name="id2476860"></a><pre class="programlisting">typedef enum
|
||||
{
|
||||
GIMP_MESSAGE_BOX,
|
||||
GIMP_CONSOLE,
|
||||
@ -137,9 +145,9 @@ Basic GIMP enumeration data types.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2492574"></a><h3>
|
||||
<a name="id2476876"></a><h3>
|
||||
<a name="GimpPDBArgType"></a>enum GimpPDBArgType</h3>
|
||||
<a class="indexterm" name="id2492584"></a><pre class="programlisting">typedef enum
|
||||
<a class="indexterm" name="id2476889"></a><pre class="programlisting">typedef enum
|
||||
{
|
||||
GIMP_PDB_INT32,
|
||||
GIMP_PDB_INT16,
|
||||
@ -172,9 +180,9 @@ Basic GIMP enumeration data types.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2492608"></a><h3>
|
||||
<a name="id2476913"></a><h3>
|
||||
<a name="GimpPDBProcType"></a>enum GimpPDBProcType</h3>
|
||||
<a class="indexterm" name="id2492618"></a><pre class="programlisting">typedef enum
|
||||
<a class="indexterm" name="id2476925"></a><pre class="programlisting">typedef enum
|
||||
{
|
||||
GIMP_INTERNAL,
|
||||
GIMP_PLUGIN,
|
||||
@ -188,9 +196,9 @@ Basic GIMP enumeration data types.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2492635"></a><h3>
|
||||
<a name="id2499810"></a><h3>
|
||||
<a name="GimpPDBStatusType"></a>enum GimpPDBStatusType</h3>
|
||||
<a class="indexterm" name="id2492645"></a><pre class="programlisting">typedef enum
|
||||
<a class="indexterm" name="id2499823"></a><pre class="programlisting">typedef enum
|
||||
{
|
||||
GIMP_PDB_EXECUTION_ERROR,
|
||||
GIMP_PDB_CALLING_ERROR,
|
||||
@ -205,9 +213,9 @@ Basic GIMP enumeration data types.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2492663"></a><h3>
|
||||
<a name="id2499841"></a><h3>
|
||||
<a name="GimpProgressCommand"></a>enum GimpProgressCommand</h3>
|
||||
<a class="indexterm" name="id2492673"></a><pre class="programlisting">typedef enum
|
||||
<a class="indexterm" name="id2499853"></a><pre class="programlisting">typedef enum
|
||||
{
|
||||
GIMP_PROGRESS_COMMAND_START,
|
||||
GIMP_PROGRESS_COMMAND_END,
|
||||
@ -221,9 +229,9 @@ Basic GIMP enumeration data types.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2470439"></a><h3>
|
||||
<a name="id2499871"></a><h3>
|
||||
<a name="GimpStackTraceMode"></a>enum GimpStackTraceMode</h3>
|
||||
<a class="indexterm" name="id2470449"></a><pre class="programlisting">typedef enum
|
||||
<a class="indexterm" name="id2499883"></a><pre class="programlisting">typedef enum
|
||||
{
|
||||
GIMP_STACK_TRACE_NEVER,
|
||||
GIMP_STACK_TRACE_QUERY,
|
||||
@ -236,9 +244,5 @@ Basic GIMP enumeration data types.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase.html"><b><< Part I. GIMP Base Library</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimpbasetypes.html"><b>gimpbasetypes >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,23 +8,30 @@
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase-gimpbaseenums.html" title="gimpbaseenums">
|
||||
<link rel="next" href="libgimpbase-gimpversion.html" title="gimpversion">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase-gimpbaseenums.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimpversion.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2552900" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2544047" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimpbasetypes"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimpbasetypes</span></h2>
|
||||
<h2>
|
||||
<a name="id2552900"></a><span class="refentrytitle">gimpbasetypes</span>
|
||||
</h2>
|
||||
<p>gimpbasetypes — Translation between gettext translation domain identifier and GType.</p>
|
||||
</td>
|
||||
<td valign="top" align="right"></td>
|
||||
@ -54,17 +62,17 @@ void <a href="libgimpbase-gimpbasetypes.html#gimp-flags-set-value-descrip
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2469221"></a><h2>Description</h2>
|
||||
<a name="id2544047"></a><h2>Description</h2>
|
||||
<p>
|
||||
Translation between gettext translation domain identifier and GType.
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2469233"></a><h2>Details</h2>
|
||||
<a name="id2544064"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2469239"></a><h3>
|
||||
<a name="id2548243"></a><h3>
|
||||
<a name="GimpEnumDesc"></a>GimpEnumDesc</h3>
|
||||
<a class="indexterm" name="id2469249"></a><pre class="programlisting">typedef struct {
|
||||
<a class="indexterm" name="id2548255"></a><pre class="programlisting">typedef struct {
|
||||
gint value;
|
||||
gchar *value_desc;
|
||||
gchar *value_help;
|
||||
@ -76,9 +84,9 @@ Translation between gettext translation domain identifier and GType.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2540960"></a><h3>
|
||||
<a name="id2548272"></a><h3>
|
||||
<a name="GimpFlagsDesc"></a>GimpFlagsDesc</h3>
|
||||
<a class="indexterm" name="id2540970"></a><pre class="programlisting">typedef struct {
|
||||
<a class="indexterm" name="id2548285"></a><pre class="programlisting">typedef struct {
|
||||
guint value;
|
||||
gchar *value_desc;
|
||||
gchar *value_help;
|
||||
@ -90,9 +98,9 @@ Translation between gettext translation domain identifier and GType.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2540987"></a><h3>
|
||||
<a name="id2548302"></a><h3>
|
||||
<a name="gimp-type-set-translation-domain"></a>gimp_type_set_translation_domain ()</h3>
|
||||
<a class="indexterm" name="id2540998"></a><pre class="programlisting">void gimp_type_set_translation_domain
|
||||
<a class="indexterm" name="id2548317"></a><pre class="programlisting">void gimp_type_set_translation_domain
|
||||
(GType type,
|
||||
const gchar *domain);</pre>
|
||||
<p>
|
||||
@ -125,9 +133,9 @@ names.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2553093"></a><h3>
|
||||
<a name="id2537113"></a><h3>
|
||||
<a name="gimp-type-get-translation-domain"></a>gimp_type_get_translation_domain ()</h3>
|
||||
<a class="indexterm" name="id2553104"></a><pre class="programlisting">const gchar* gimp_type_get_translation_domain
|
||||
<a class="indexterm" name="id2537129"></a><pre class="programlisting">const gchar* gimp_type_get_translation_domain
|
||||
(GType type);</pre>
|
||||
<p>
|
||||
Retrieves the gettext translation domain identifier that has been
|
||||
@ -161,9 +169,9 @@ or <code class="function">gimp_enum_value_get_name()</code> instead.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2553221"></a><h3>
|
||||
<a name="id2537249"></a><h3>
|
||||
<a name="gimp-enum-set-value-descriptions"></a>gimp_enum_set_value_descriptions ()</h3>
|
||||
<a class="indexterm" name="id2553232"></a><pre class="programlisting">void gimp_enum_set_value_descriptions
|
||||
<a class="indexterm" name="id2537264"></a><pre class="programlisting">void gimp_enum_set_value_descriptions
|
||||
(GType enum_type,
|
||||
const <a href="libgimpbase-gimpbasetypes.html#GimpEnumDesc">GimpEnumDesc</a> *descriptions);</pre>
|
||||
<p>
|
||||
@ -194,9 +202,9 @@ and help texts for enum values.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2553330"></a><h3>
|
||||
<a name="id2477336"></a><h3>
|
||||
<a name="gimp-enum-get-value-descriptions"></a>gimp_enum_get_value_descriptions ()</h3>
|
||||
<a class="indexterm" name="id2553341"></a><pre class="programlisting">const <a href="libgimpbase-gimpbasetypes.html#GimpEnumDesc">GimpEnumDesc</a>* gimp_enum_get_value_descriptions
|
||||
<a class="indexterm" name="id2477351"></a><pre class="programlisting">const <a href="libgimpbase-gimpbasetypes.html#GimpEnumDesc">GimpEnumDesc</a>* gimp_enum_get_value_descriptions
|
||||
(GType enum_type);</pre>
|
||||
<p>
|
||||
Retreives the array of human readable and translatable descriptions
|
||||
@ -227,9 +235,9 @@ and help texts for enum values.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2474615"></a><h3>
|
||||
<a name="id2477445"></a><h3>
|
||||
<a name="gimp-flags-get-value-descriptions"></a>gimp_flags_get_value_descriptions ()</h3>
|
||||
<a class="indexterm" name="id2474626"></a><pre class="programlisting">const <a href="libgimpbase-gimpbasetypes.html#GimpFlagsDesc">GimpFlagsDesc</a>* gimp_flags_get_value_descriptions
|
||||
<a class="indexterm" name="id2477460"></a><pre class="programlisting">const <a href="libgimpbase-gimpbasetypes.html#GimpFlagsDesc">GimpFlagsDesc</a>* gimp_flags_get_value_descriptions
|
||||
(GType flags_type);</pre>
|
||||
<p>
|
||||
Retreives the array of human readable and translatable descriptions
|
||||
@ -260,9 +268,9 @@ and help texts for flags values.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2474716"></a><h3>
|
||||
<a name="id2477553"></a><h3>
|
||||
<a name="gimp-flags-set-value-descriptions"></a>gimp_flags_set_value_descriptions ()</h3>
|
||||
<a class="indexterm" name="id2474727"></a><pre class="programlisting">void gimp_flags_set_value_descriptions
|
||||
<a class="indexterm" name="id2477569"></a><pre class="programlisting">void gimp_flags_set_value_descriptions
|
||||
(GType flags_type,
|
||||
const <a href="libgimpbase-gimpbasetypes.html#GimpFlagsDesc">GimpFlagsDesc</a> *descriptions);</pre>
|
||||
<p>
|
||||
@ -293,9 +301,5 @@ and help texts for flags values.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase-gimpbaseenums.html"><b><< gimpbaseenums</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimpversion.html"><b>gimpversion >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,23 +8,30 @@
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase-gimplimits.html" title="gimplimits">
|
||||
<link rel="next" href="libgimpbase-gimpdatafiles.html" title="gimpdatafiles">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase-gimplimits.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimpdatafiles.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2565707" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2535156" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimpchecks"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimpchecks</span></h2>
|
||||
<h2>
|
||||
<a name="id2565707"></a><span class="refentrytitle">gimpchecks</span>
|
||||
</h2>
|
||||
<p>gimpchecks — Constants and functions related to rendering checkerboards.</p>
|
||||
</td>
|
||||
<td valign="top" align="right"></td>
|
||||
@ -44,17 +52,17 @@ void <a href="libgimpbase-gimpchecks.html#gimp-checks-get-shades">gimp_ch
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2545644"></a><h2>Description</h2>
|
||||
<a name="id2535156"></a><h2>Description</h2>
|
||||
<p>
|
||||
Constants and functions related to rendering checkerboards.
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2545655"></a><h2>Details</h2>
|
||||
<a name="id2535171"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2545661"></a><h3>
|
||||
<a name="id2535182"></a><h3>
|
||||
<a name="GIMP-CHECK-SIZE:CAPS"></a>GIMP_CHECK_SIZE</h3>
|
||||
<a class="indexterm" name="id2545670"></a><pre class="programlisting">#define GIMP_CHECK_SIZE 8
|
||||
<a class="indexterm" name="id2535193"></a><pre class="programlisting">#define GIMP_CHECK_SIZE 8
|
||||
</pre>
|
||||
<p>
|
||||
The default checkerboard size in pixels. This is configurable in the
|
||||
@ -64,9 +72,9 @@ this constant instead.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2545688"></a><h3>
|
||||
<a name="id2535212"></a><h3>
|
||||
<a name="GIMP-CHECK-SIZE-SM:CAPS"></a>GIMP_CHECK_SIZE_SM</h3>
|
||||
<a class="indexterm" name="id2545698"></a><pre class="programlisting">#define GIMP_CHECK_SIZE_SM 4
|
||||
<a class="indexterm" name="id2535223"></a><pre class="programlisting">#define GIMP_CHECK_SIZE_SM 4
|
||||
</pre>
|
||||
<p>
|
||||
The default small checkerboard size in pixels.
|
||||
@ -74,9 +82,9 @@ The default small checkerboard size in pixels.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2545714"></a><h3>
|
||||
<a name="id2559248"></a><h3>
|
||||
<a name="GIMP-CHECK-DARK:CAPS"></a>GIMP_CHECK_DARK</h3>
|
||||
<a class="indexterm" name="id2545723"></a><pre class="programlisting">#define GIMP_CHECK_DARK 0.4
|
||||
<a class="indexterm" name="id2559260"></a><pre class="programlisting">#define GIMP_CHECK_DARK 0.4
|
||||
</pre>
|
||||
<p>
|
||||
The dark gray value for the default checkerboard pattern.
|
||||
@ -84,9 +92,9 @@ The dark gray value for the default checkerboard pattern.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2545739"></a><h3>
|
||||
<a name="id2559276"></a><h3>
|
||||
<a name="GIMP-CHECK-LIGHT:CAPS"></a>GIMP_CHECK_LIGHT</h3>
|
||||
<a class="indexterm" name="id2545749"></a><pre class="programlisting">#define GIMP_CHECK_LIGHT 0.6
|
||||
<a class="indexterm" name="id2559288"></a><pre class="programlisting">#define GIMP_CHECK_LIGHT 0.6
|
||||
</pre>
|
||||
<p>
|
||||
The light gray value for the default checkerboard pattern.
|
||||
@ -94,9 +102,9 @@ The light gray value for the default checkerboard pattern.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2545764"></a><h3>
|
||||
<a name="id2559303"></a><h3>
|
||||
<a name="gimp-checks-get-shades"></a>gimp_checks_get_shades ()</h3>
|
||||
<a class="indexterm" name="id2541755"></a><pre class="programlisting">void gimp_checks_get_shades (<a href="libgimpbase-gimpbaseenums.html#GimpCheckType">GimpCheckType</a> type,
|
||||
<a class="indexterm" name="id2559317"></a><pre class="programlisting">void gimp_checks_get_shades (<a href="libgimpbase-gimpbaseenums.html#GimpCheckType">GimpCheckType</a> type,
|
||||
guchar *light,
|
||||
guchar *dark);</pre>
|
||||
<p>
|
||||
@ -133,9 +141,5 @@ checkerboard for a certain <a href="libgimpbase-gimpbaseenums.html#GimpCheckType
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase-gimplimits.html"><b><< gimplimits</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimpdatafiles.html"><b>gimpdatafiles >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,23 +8,30 @@
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase-gimpchecks.html" title="gimpchecks">
|
||||
<link rel="next" href="libgimpbase-gimpenv.html" title="gimpenv">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase-gimpchecks.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimpenv.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2531608" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2530388" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimpdatafiles"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimpdatafiles</span></h2>
|
||||
<h2>
|
||||
<a name="id2531608"></a><span class="refentrytitle">gimpdatafiles</span>
|
||||
</h2>
|
||||
<p>gimpdatafiles — Functions to handle GIMP data files.</p>
|
||||
</td>
|
||||
<td valign="top" align="right"></td>
|
||||
@ -46,17 +54,17 @@ void <a href="libgimpbase-gimpdatafiles.html#gimp-datafiles-read-director
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2554115"></a><h2>Description</h2>
|
||||
<a name="id2530388"></a><h2>Description</h2>
|
||||
<p>
|
||||
Functions to handle GIMP data files.
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2554126"></a><h2>Details</h2>
|
||||
<a name="id2530403"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2554132"></a><h3>
|
||||
<a name="id2530414"></a><h3>
|
||||
<a name="GimpDatafileData"></a>GimpDatafileData</h3>
|
||||
<a class="indexterm" name="id2554142"></a><pre class="programlisting">typedef struct {
|
||||
<a class="indexterm" name="id2530426"></a><pre class="programlisting">typedef struct {
|
||||
const gchar *filename;
|
||||
const gchar *dirname;
|
||||
const gchar *basename;
|
||||
@ -72,9 +80,9 @@ Functions to handle GIMP data files.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2554161"></a><h3>
|
||||
<a name="id2550950"></a><h3>
|
||||
<a name="GimpDatafileLoaderFunc"></a>GimpDatafileLoaderFunc ()</h3>
|
||||
<a class="indexterm" name="id2554170"></a><pre class="programlisting">void (*GimpDatafileLoaderFunc) (const <a href="libgimpbase-gimpdatafiles.html#GimpDatafileData">GimpDatafileData</a> *file_data,
|
||||
<a class="indexterm" name="id2550961"></a><pre class="programlisting">void (*GimpDatafileLoaderFunc) (const <a href="libgimpbase-gimpdatafiles.html#GimpDatafileData">GimpDatafileData</a> *file_data,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
|
||||
@ -101,9 +109,9 @@ Functions to handle GIMP data files.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2550710"></a><h3>
|
||||
<a name="id2551028"></a><h3>
|
||||
<a name="gimp-datafiles-check-extension"></a>gimp_datafiles_check_extension ()</h3>
|
||||
<a class="indexterm" name="id2550718"></a><pre class="programlisting">gboolean gimp_datafiles_check_extension (const gchar *filename,
|
||||
<a class="indexterm" name="id2551039"></a><pre class="programlisting">gboolean gimp_datafiles_check_extension (const gchar *filename,
|
||||
const gchar *extension);</pre>
|
||||
<p>
|
||||
|
||||
@ -136,9 +144,9 @@ Functions to handle GIMP data files.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2550794"></a><h3>
|
||||
<a name="id2545090"></a><h3>
|
||||
<a name="gimp-datafiles-read-directories"></a>gimp_datafiles_read_directories ()</h3>
|
||||
<a class="indexterm" name="id2550803"></a><pre class="programlisting">void gimp_datafiles_read_directories (const gchar *path_str,
|
||||
<a class="indexterm" name="id2545101"></a><pre class="programlisting">void gimp_datafiles_read_directories (const gchar *path_str,
|
||||
GFileTest flags,
|
||||
<a href="libgimpbase-gimpdatafiles.html#GimpDatafileLoaderFunc">GimpDatafileLoaderFunc</a> loader_func,
|
||||
gpointer user_data);</pre>
|
||||
@ -179,9 +187,5 @@ Functions to handle GIMP data files.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase-gimpchecks.html"><b><< gimpchecks</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimpenv.html"><b>gimpenv >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,23 +8,30 @@
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase-gimpdatafiles.html" title="gimpdatafiles">
|
||||
<link rel="next" href="libgimpbase-gimpmemsize.html" title="gimpmemsize">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase-gimpdatafiles.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimpmemsize.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2548073" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2548492" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimpenv"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimpenv</span></h2>
|
||||
<h2>
|
||||
<a name="id2548073"></a><span class="refentrytitle">gimpenv</span>
|
||||
</h2>
|
||||
<p>gimpenv — Functions to access the GIMP environment.</p>
|
||||
</td>
|
||||
<td valign="top" align="right"></td>
|
||||
@ -51,18 +59,18 @@ gchar* <a href="libgimpbase-gimpenv.html#gimp-path-get-user-writable-dir">g
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2522661"></a><h2>Description</h2>
|
||||
<a name="id2548492"></a><h2>Description</h2>
|
||||
<p>
|
||||
A set of functions to find the locations of GIMP's data directories and
|
||||
configuration files.
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2522674"></a><h2>Details</h2>
|
||||
<a name="id2548509"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2522680"></a><h3>
|
||||
<a name="id2548520"></a><h3>
|
||||
<a name="gimp-directory"></a>gimp_directory ()</h3>
|
||||
<a class="indexterm" name="id2522690"></a><pre class="programlisting">const gchar* gimp_directory (void);</pre>
|
||||
<a class="indexterm" name="id2548532"></a><pre class="programlisting">const gchar* gimp_directory (void);</pre>
|
||||
<p>
|
||||
Returns the user-specific GIMP settings directory. If the
|
||||
environment variable GIMP2_DIRECTORY exists, it is used. If it is
|
||||
@ -99,9 +107,9 @@ is on Windows).</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2522780"></a><h3>
|
||||
<a name="id2548622"></a><h3>
|
||||
<a name="gimp-personal-rc-file"></a>gimp_personal_rc_file ()</h3>
|
||||
<a class="indexterm" name="id2522789"></a><pre class="programlisting">gchar* gimp_personal_rc_file (const gchar *basename);</pre>
|
||||
<a class="indexterm" name="id2548634"></a><pre class="programlisting">gchar* gimp_personal_rc_file (const gchar *basename);</pre>
|
||||
<p>
|
||||
Returns the name of a file in the user-specific GIMP settings directory.
|
||||
</p>
|
||||
@ -133,9 +141,9 @@ is on Windows).</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2544786"></a><h3>
|
||||
<a name="id2566085"></a><h3>
|
||||
<a name="gimp-data-directory"></a>gimp_data_directory ()</h3>
|
||||
<a class="indexterm" name="id2544796"></a><pre class="programlisting">const gchar* gimp_data_directory (void);</pre>
|
||||
<a class="indexterm" name="id2566098"></a><pre class="programlisting">const gchar* gimp_data_directory (void);</pre>
|
||||
<p>
|
||||
Returns the top directory for GIMP data. If the environment
|
||||
variable GIMP2_DATADIR exists, that is used. It should be an
|
||||
@ -163,9 +171,9 @@ is on Windows).</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2544857"></a><h3>
|
||||
<a name="id2566159"></a><h3>
|
||||
<a name="gimp-locale-directory"></a>gimp_locale_directory ()</h3>
|
||||
<a class="indexterm" name="id2544866"></a><pre class="programlisting">const gchar* gimp_locale_directory (void);</pre>
|
||||
<a class="indexterm" name="id2566170"></a><pre class="programlisting">const gchar* gimp_locale_directory (void);</pre>
|
||||
<p>
|
||||
Returns the top directory for GIMP locale files. If the environment
|
||||
variable GIMP2_LOCALEDIR exists, that is used. It should be an
|
||||
@ -193,9 +201,9 @@ is on Windows).</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2544927"></a><h3>
|
||||
<a name="id2566232"></a><h3>
|
||||
<a name="gimp-plug-in-directory"></a>gimp_plug_in_directory ()</h3>
|
||||
<a class="indexterm" name="id2544936"></a><pre class="programlisting">const gchar* gimp_plug_in_directory (void);</pre>
|
||||
<a class="indexterm" name="id2566243"></a><pre class="programlisting">const gchar* gimp_plug_in_directory (void);</pre>
|
||||
<p>
|
||||
Returns the top directory for GIMP plug_ins and modules. If the
|
||||
environment variable GIMP2_PLUGINDIR exists, that is used. It
|
||||
@ -223,9 +231,9 @@ is on Windows).</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2529179"></a><h3>
|
||||
<a name="id2527459"></a><h3>
|
||||
<a name="gimp-sysconf-directory"></a>gimp_sysconf_directory ()</h3>
|
||||
<a class="indexterm" name="id2529188"></a><pre class="programlisting">const gchar* gimp_sysconf_directory (void);</pre>
|
||||
<a class="indexterm" name="id2527470"></a><pre class="programlisting">const gchar* gimp_sysconf_directory (void);</pre>
|
||||
<p>
|
||||
Returns the top directory for GIMP config files. If the environment
|
||||
variable GIMP2_SYSCONFDIR exists, that is used. It should be an
|
||||
@ -253,9 +261,9 @@ is on Windows).</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2529250"></a><h3>
|
||||
<a name="id2527533"></a><h3>
|
||||
<a name="gimp-gtkrc"></a>gimp_gtkrc ()</h3>
|
||||
<a class="indexterm" name="id2529260"></a><pre class="programlisting">const gchar* gimp_gtkrc (void);</pre>
|
||||
<a class="indexterm" name="id2527545"></a><pre class="programlisting">const gchar* gimp_gtkrc (void);</pre>
|
||||
<p>
|
||||
Returns the name of the GIMP's application-specific gtkrc file.
|
||||
</p>
|
||||
@ -279,9 +287,9 @@ is on Windows).</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2529318"></a><h3>
|
||||
<a name="id2527603"></a><h3>
|
||||
<a name="gimp-path-parse"></a>gimp_path_parse ()</h3>
|
||||
<a class="indexterm" name="id2529328"></a><pre class="programlisting">GList* gimp_path_parse (const gchar *path,
|
||||
<a class="indexterm" name="id2527616"></a><pre class="programlisting">GList* gimp_path_parse (const gchar *path,
|
||||
gint max_paths,
|
||||
gboolean check,
|
||||
GList **check_failed);</pre>
|
||||
@ -329,9 +337,9 @@ is on Windows).</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2560231"></a><h3>
|
||||
<a name="id2567863"></a><h3>
|
||||
<a name="gimp-path-to-str"></a>gimp_path_to_str ()</h3>
|
||||
<a class="indexterm" name="id2560239"></a><pre class="programlisting">gchar* gimp_path_to_str (GList *path);</pre>
|
||||
<a class="indexterm" name="id2567873"></a><pre class="programlisting">gchar* gimp_path_to_str (GList *path);</pre>
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
@ -357,9 +365,9 @@ is on Windows).</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2560308"></a><h3>
|
||||
<a name="id2567943"></a><h3>
|
||||
<a name="gimp-path-free"></a>gimp_path_free ()</h3>
|
||||
<a class="indexterm" name="id2560316"></a><pre class="programlisting">void gimp_path_free (GList *path);</pre>
|
||||
<a class="indexterm" name="id2567956"></a><pre class="programlisting">void gimp_path_free (GList *path);</pre>
|
||||
<p>
|
||||
This function frees the memory allocated for the list and the strings
|
||||
it contains.</p>
|
||||
@ -378,9 +386,9 @@ it contains.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2560374"></a><h3>
|
||||
<a name="id2568017"></a><h3>
|
||||
<a name="gimp-path-get-user-writable-dir"></a>gimp_path_get_user_writable_dir ()</h3>
|
||||
<a class="indexterm" name="id2560385"></a><pre class="programlisting">gchar* gimp_path_get_user_writable_dir (GList *path);</pre>
|
||||
<a class="indexterm" name="id2568030"></a><pre class="programlisting">gchar* gimp_path_get_user_writable_dir (GList *path);</pre>
|
||||
<p>
|
||||
Note that you have to <code class="function">g_free()</code> the returned string.</p>
|
||||
<p>
|
||||
@ -406,9 +414,5 @@ Note that you have to <code class="function">g_free()</code> the returned string
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase-gimpdatafiles.html"><b><< gimpdatafiles</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimpmemsize.html"><b>gimpmemsize >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,23 +8,30 @@
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase-gimpversion.html" title="gimpversion">
|
||||
<link rel="next" href="libgimpbase-gimpchecks.html" title="gimpchecks">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase-gimpversion.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimpchecks.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2541482" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2552827" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimplimits"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimplimits</span></h2>
|
||||
<h2>
|
||||
<a name="id2541482"></a><span class="refentrytitle">gimplimits</span>
|
||||
</h2>
|
||||
<p>gimplimits — Boundaries of some GIMP data types and some global constants.</p>
|
||||
</td>
|
||||
<td valign="top" align="right"></td>
|
||||
@ -42,18 +50,18 @@
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2553087"></a><h2>Description</h2>
|
||||
<a name="id2552827"></a><h2>Description</h2>
|
||||
<p>
|
||||
Boundaries of some GIMP data types and some global constants.
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2554500"></a><h2>Details</h2>
|
||||
<a name="id2552842"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2533072"></a><h3>
|
||||
<a name="id2552853"></a><h3>
|
||||
<a name="GIMP-MIN-IMAGE-SIZE:CAPS"></a>GIMP_MIN_IMAGE_SIZE</h3>
|
||||
<a class="indexterm" name="id2533081"></a><pre class="programlisting">#define GIMP_MIN_IMAGE_SIZE 1
|
||||
<a class="indexterm" name="id2552865"></a><pre class="programlisting">#define GIMP_MIN_IMAGE_SIZE 1
|
||||
</pre>
|
||||
<p>
|
||||
The minimum width and height of a GIMP image in pixels.
|
||||
@ -61,9 +69,9 @@ The minimum width and height of a GIMP image in pixels.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2533097"></a><h3>
|
||||
<a name="id2552881"></a><h3>
|
||||
<a name="GIMP-MAX-IMAGE-SIZE:CAPS"></a>GIMP_MAX_IMAGE_SIZE</h3>
|
||||
<a class="indexterm" name="id2533107"></a><pre class="programlisting">#define GIMP_MAX_IMAGE_SIZE 262144 /* 2^18 */
|
||||
<a class="indexterm" name="id2552893"></a><pre class="programlisting">#define GIMP_MAX_IMAGE_SIZE 262144 /* 2^18 */
|
||||
</pre>
|
||||
<p>
|
||||
The maximum width and height of a GIMP image in pixels. This is a
|
||||
@ -73,9 +81,9 @@ sizes is needed; for example to give a spin button an upper limit.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2533127"></a><h3>
|
||||
<a name="id2554705"></a><h3>
|
||||
<a name="GIMP-MIN-RESOLUTION:CAPS"></a>GIMP_MIN_RESOLUTION</h3>
|
||||
<a class="indexterm" name="id2533136"></a><pre class="programlisting">#define GIMP_MIN_RESOLUTION 5e-3 /* shouldn't display as 0.000 */
|
||||
<a class="indexterm" name="id2554717"></a><pre class="programlisting">#define GIMP_MIN_RESOLUTION 5e-3 /* shouldn't display as 0.000 */
|
||||
</pre>
|
||||
<p>
|
||||
The minimum resolution of a GIMP image in pixels per inch. This is a
|
||||
@ -86,9 +94,9 @@ this value.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2533156"></a><h3>
|
||||
<a name="id2554737"></a><h3>
|
||||
<a name="GIMP-MAX-RESOLUTION:CAPS"></a>GIMP_MAX_RESOLUTION</h3>
|
||||
<a class="indexterm" name="id2533166"></a><pre class="programlisting">#define GIMP_MAX_RESOLUTION 65536.0
|
||||
<a class="indexterm" name="id2554749"></a><pre class="programlisting">#define GIMP_MAX_RESOLUTION 65536.0
|
||||
</pre>
|
||||
<p>
|
||||
The maximum resolution of a GIMP image in pixels per inch. This is a
|
||||
@ -99,9 +107,9 @@ this value.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2523934"></a><h3>
|
||||
<a name="id2554768"></a><h3>
|
||||
<a name="GIMP-MAX-MEMSIZE:CAPS"></a>GIMP_MAX_MEMSIZE</h3>
|
||||
<a class="indexterm" name="id2523944"></a><pre class="programlisting">#define GIMP_MAX_MEMSIZE ((guint64) 1 << 42) /* 4 terabyte;
|
||||
<a class="indexterm" name="id2554779"></a><pre class="programlisting">#define GIMP_MAX_MEMSIZE ((guint64) 1 << 42) /* 4 terabyte;
|
||||
</pre>
|
||||
<p>
|
||||
A large but arbitrary value that can be used when an upper limit for a
|
||||
@ -113,9 +121,5 @@ href="../libgimpwidgets/GimpMemsizeEntry.html"
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase-gimpversion.html"><b><< gimpversion</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimpchecks.html"><b>gimpchecks >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,23 +8,30 @@
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase-gimpenv.html" title="gimpenv">
|
||||
<link rel="next" href="libgimpbase-gimpparasite.html" title="gimpparasite">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase-gimpenv.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimpparasite.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2561991" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2543707" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimpmemsize"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimpmemsize</span></h2>
|
||||
<h2>
|
||||
<a name="id2561991"></a><span class="refentrytitle">gimpmemsize</span>
|
||||
</h2>
|
||||
<p>gimpmemsize — Functions to (de)serialize a given memory size.</p>
|
||||
</td>
|
||||
<td valign="top" align="right"></td>
|
||||
@ -44,17 +52,17 @@ gchar* <a href="libgimpbase-gimpmemsize.html#gimp-memsize-to-string">gimp_m
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2519244"></a><h2>Description</h2>
|
||||
<a name="id2543707"></a><h2>Description</h2>
|
||||
<p>
|
||||
Functions to (de)serialize a given memory size.
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2519256"></a><h2>Details</h2>
|
||||
<a name="id2543723"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2519262"></a><h3>
|
||||
<a name="id2543734"></a><h3>
|
||||
<a name="gimp-memsize-serialize"></a>gimp_memsize_serialize ()</h3>
|
||||
<a class="indexterm" name="id2519271"></a><pre class="programlisting">gchar* gimp_memsize_serialize (guint64 memsize);</pre>
|
||||
<a class="indexterm" name="id2543747"></a><pre class="programlisting">gchar* gimp_memsize_serialize (guint64 memsize);</pre>
|
||||
<p>
|
||||
Creates a string representation of a given memory size. This string
|
||||
can be parsed by <a href="libgimpbase-gimpmemsize.html#gimp-memsize-deserialize"><code class="function">gimp_memsize_deserialize()</code></a> and can thus be used in
|
||||
@ -86,9 +94,9 @@ nice human-readable string please use <a href="libgimpbase-gimpmemsize.html#gimp
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2529124"></a><h3>
|
||||
<a name="id2544691"></a><h3>
|
||||
<a name="gimp-memsize-deserialize"></a>gimp_memsize_deserialize ()</h3>
|
||||
<a class="indexterm" name="id2529133"></a><pre class="programlisting">gboolean gimp_memsize_deserialize (const gchar *string,
|
||||
<a class="indexterm" name="id2544704"></a><pre class="programlisting">gboolean gimp_memsize_deserialize (const gchar *string,
|
||||
guint64 *memsize);</pre>
|
||||
<p>
|
||||
Parses a string representation of a memory size as returned by
|
||||
@ -126,9 +134,9 @@ Parses a string representation of a memory size as returned by
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2469611"></a><h3>
|
||||
<a name="id2555586"></a><h3>
|
||||
<a name="gimp-memsize-to-string"></a>gimp_memsize_to_string ()</h3>
|
||||
<a class="indexterm" name="id2469620"></a><pre class="programlisting">gchar* gimp_memsize_to_string (guint64 memsize);</pre>
|
||||
<a class="indexterm" name="id2555597"></a><pre class="programlisting">gchar* gimp_memsize_to_string (guint64 memsize);</pre>
|
||||
<p>
|
||||
This function returns a human readable, translated representation
|
||||
of the passed <em class="parameter"><code>memsize</code></em>. Large values are displayed using a
|
||||
@ -157,9 +165,9 @@ becomes "4.4 KB" and so on.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2557935"></a><h3>
|
||||
<a name="id2555667"></a><h3>
|
||||
<a name="GIMP-TYPE-MEMSIZE:CAPS"></a>GIMP_TYPE_MEMSIZE</h3>
|
||||
<a class="indexterm" name="id2557944"></a><pre class="programlisting">#define GIMP_TYPE_MEMSIZE (gimp_memsize_get_type ())
|
||||
<a class="indexterm" name="id2555678"></a><pre class="programlisting">#define GIMP_TYPE_MEMSIZE (gimp_memsize_get_type ())
|
||||
</pre>
|
||||
<p>
|
||||
<a href="libgimpbase-gimpmemsize.html#GIMP-TYPE-MEMSIZE:CAPS"><span class="type">GIMP_TYPE_MEMSIZE</span></a> is a <span class="type">GType</span> derived from <span class="type">G_TYPE_UINT64</span>.
|
||||
@ -167,9 +175,9 @@ becomes "4.4 KB" and so on.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2557981"></a><h3>
|
||||
<a name="id2555715"></a><h3>
|
||||
<a name="GIMP-VALUE-HOLDS-MEMSIZE:CAPS"></a>GIMP_VALUE_HOLDS_MEMSIZE()</h3>
|
||||
<a class="indexterm" name="id2557990"></a><pre class="programlisting">#define GIMP_VALUE_HOLDS_MEMSIZE(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_MEMSIZE))
|
||||
<a class="indexterm" name="id2555727"></a><pre class="programlisting">#define GIMP_VALUE_HOLDS_MEMSIZE(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_MEMSIZE))
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -188,9 +196,5 @@ becomes "4.4 KB" and so on.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase-gimpenv.html"><b><< gimpenv</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimpparasite.html"><b>gimpparasite >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,23 +8,30 @@
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase-gimpmemsize.html" title="gimpmemsize">
|
||||
<link rel="next" href="libgimpbase-gimpparasiteio.html" title="gimpparasiteio">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase-gimpmemsize.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimpparasiteio.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2543534" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2565550" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimpparasite"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimpparasite</span></h2>
|
||||
<h2>
|
||||
<a name="id2543534"></a><span class="refentrytitle">gimpparasite</span>
|
||||
</h2>
|
||||
<p>gimpparasite — Arbitrary pieces of data which can be attached to various GIMP objects.</p>
|
||||
</td>
|
||||
<td valign="top" align="right"></td>
|
||||
@ -64,18 +72,18 @@ glong <a href="libgimpbase-gimpparasite.html#gimp-parasite-data-size">gimp
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2559064"></a><h2>Description</h2>
|
||||
<a name="id2565550"></a><h2>Description</h2>
|
||||
<p>
|
||||
Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2559077"></a><h2>Details</h2>
|
||||
<a name="id2567190"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2559083"></a><h3>
|
||||
<a name="id2567201"></a><h3>
|
||||
<a name="GimpParasite"></a>GimpParasite</h3>
|
||||
<a class="indexterm" name="id2539548"></a><pre class="programlisting">typedef struct {
|
||||
<a class="indexterm" name="id2567213"></a><pre class="programlisting">typedef struct {
|
||||
gchar *name; /* The name of the parasite. USE A UNIQUE PREFIX! */
|
||||
guint32 flags; /* save Parasite in XCF file, etc. */
|
||||
guint32 size; /* amount of data */
|
||||
@ -89,9 +97,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2539570"></a><h3>
|
||||
<a name="id2567235"></a><h3>
|
||||
<a name="gimp-parasite-new"></a>gimp_parasite_new ()</h3>
|
||||
<a class="indexterm" name="id2539580"></a><pre class="programlisting"><a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a>* gimp_parasite_new (const gchar *name,
|
||||
<a class="indexterm" name="id2567248"></a><pre class="programlisting"><a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a>* gimp_parasite_new (const gchar *name,
|
||||
guint32 flags,
|
||||
guint32 size,
|
||||
gconstpointer data);</pre>
|
||||
@ -138,9 +146,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2539700"></a><h3>
|
||||
<a name="id2567367"></a><h3>
|
||||
<a name="gimp-parasite-free"></a>gimp_parasite_free ()</h3>
|
||||
<a class="indexterm" name="id2539710"></a><pre class="programlisting">void gimp_parasite_free (<a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<a class="indexterm" name="id2567379"></a><pre class="programlisting">void gimp_parasite_free (<a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -158,9 +166,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2539756"></a><h3>
|
||||
<a name="id2567425"></a><h3>
|
||||
<a name="gimp-parasite-copy"></a>gimp_parasite_copy ()</h3>
|
||||
<a class="indexterm" name="id2539766"></a><pre class="programlisting"><a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a>* gimp_parasite_copy (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<a class="indexterm" name="id2567437"></a><pre class="programlisting"><a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a>* gimp_parasite_copy (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -186,9 +194,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2519575"></a><h3>
|
||||
<a name="id2566843"></a><h3>
|
||||
<a name="gimp-parasite-compare"></a>gimp_parasite_compare ()</h3>
|
||||
<a class="indexterm" name="id2519583"></a><pre class="programlisting">gboolean gimp_parasite_compare (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *a,
|
||||
<a class="indexterm" name="id2566854"></a><pre class="programlisting">gboolean gimp_parasite_compare (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *a,
|
||||
const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *b);</pre>
|
||||
<p>
|
||||
|
||||
@ -221,9 +229,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2519661"></a><h3>
|
||||
<a name="id2566932"></a><h3>
|
||||
<a name="gimp-parasite-is-type"></a>gimp_parasite_is_type ()</h3>
|
||||
<a class="indexterm" name="id2519670"></a><pre class="programlisting">gboolean gimp_parasite_is_type (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite,
|
||||
<a class="indexterm" name="id2566943"></a><pre class="programlisting">gboolean gimp_parasite_is_type (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite,
|
||||
const gchar *name);</pre>
|
||||
<p>
|
||||
|
||||
@ -256,9 +264,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2519746"></a><h3>
|
||||
<a name="id2567020"></a><h3>
|
||||
<a name="gimp-parasite-is-persistent"></a>gimp_parasite_is_persistent ()</h3>
|
||||
<a class="indexterm" name="id2519756"></a><pre class="programlisting">gboolean gimp_parasite_is_persistent (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<a class="indexterm" name="id2567031"></a><pre class="programlisting">gboolean gimp_parasite_is_persistent (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -284,9 +292,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2519812"></a><h3>
|
||||
<a name="id2570159"></a><h3>
|
||||
<a name="gimp-parasite-is-undoable"></a>gimp_parasite_is_undoable ()</h3>
|
||||
<a class="indexterm" name="id2519822"></a><pre class="programlisting">gboolean gimp_parasite_is_undoable (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<a class="indexterm" name="id2570170"></a><pre class="programlisting">gboolean gimp_parasite_is_undoable (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -312,9 +320,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2562478"></a><h3>
|
||||
<a name="id2570220"></a><h3>
|
||||
<a name="gimp-parasite-has-flag"></a>gimp_parasite_has_flag ()</h3>
|
||||
<a class="indexterm" name="id2562487"></a><pre class="programlisting">gboolean gimp_parasite_has_flag (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite,
|
||||
<a class="indexterm" name="id2570230"></a><pre class="programlisting">gboolean gimp_parasite_has_flag (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite,
|
||||
gulong flag);</pre>
|
||||
<p>
|
||||
|
||||
@ -347,9 +355,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2562556"></a><h3>
|
||||
<a name="id2570304"></a><h3>
|
||||
<a name="gimp-parasite-flags"></a>gimp_parasite_flags ()</h3>
|
||||
<a class="indexterm" name="id2562567"></a><pre class="programlisting">gulong gimp_parasite_flags (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<a class="indexterm" name="id2570317"></a><pre class="programlisting">gulong gimp_parasite_flags (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -375,9 +383,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2562623"></a><h3>
|
||||
<a name="id2570373"></a><h3>
|
||||
<a name="gimp-parasite-name"></a>gimp_parasite_name ()</h3>
|
||||
<a class="indexterm" name="id2562633"></a><pre class="programlisting">const gchar* gimp_parasite_name (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<a class="indexterm" name="id2570386"></a><pre class="programlisting">const gchar* gimp_parasite_name (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -403,9 +411,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2562691"></a><h3>
|
||||
<a name="id2570444"></a><h3>
|
||||
<a name="gimp-parasite-data"></a>gimp_parasite_data ()</h3>
|
||||
<a class="indexterm" name="id2562701"></a><pre class="programlisting">gconstpointer gimp_parasite_data (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<a class="indexterm" name="id2570456"></a><pre class="programlisting">gconstpointer gimp_parasite_data (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -431,9 +439,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2562758"></a><h3>
|
||||
<a name="id2570513"></a><h3>
|
||||
<a name="gimp-parasite-data-size"></a>gimp_parasite_data_size ()</h3>
|
||||
<a class="indexterm" name="id2562767"></a><pre class="programlisting">glong gimp_parasite_data_size (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<a class="indexterm" name="id2570524"></a><pre class="programlisting">glong gimp_parasite_data_size (const <a href="libgimpbase-gimpparasite.html#GimpParasite">GimpParasite</a> *parasite);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -459,9 +467,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2562824"></a><h3>
|
||||
<a name="id2570581"></a><h3>
|
||||
<a name="GIMP-PARASITE-PERSISTENT:CAPS"></a>GIMP_PARASITE_PERSISTENT</h3>
|
||||
<a class="indexterm" name="id2562835"></a><pre class="programlisting">#define GIMP_PARASITE_PERSISTENT 1
|
||||
<a class="indexterm" name="id2570594"></a><pre class="programlisting">#define GIMP_PARASITE_PERSISTENT 1
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -469,9 +477,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2562850"></a><h3>
|
||||
<a name="id2570609"></a><h3>
|
||||
<a name="GIMP-PARASITE-UNDOABLE:CAPS"></a>GIMP_PARASITE_UNDOABLE</h3>
|
||||
<a class="indexterm" name="id2562859"></a><pre class="programlisting">#define GIMP_PARASITE_UNDOABLE 2
|
||||
<a class="indexterm" name="id2570620"></a><pre class="programlisting">#define GIMP_PARASITE_UNDOABLE 2
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -479,9 +487,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2562874"></a><h3>
|
||||
<a name="id2570636"></a><h3>
|
||||
<a name="GIMP-PARASITE-ATTACH-PARENT:CAPS"></a>GIMP_PARASITE_ATTACH_PARENT</h3>
|
||||
<a class="indexterm" name="id2562885"></a><pre class="programlisting">#define GIMP_PARASITE_ATTACH_PARENT (0x80 << 8)
|
||||
<a class="indexterm" name="id2570649"></a><pre class="programlisting">#define GIMP_PARASITE_ATTACH_PARENT (0x80 << 8)
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -489,9 +497,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2562902"></a><h3>
|
||||
<a name="id2570665"></a><h3>
|
||||
<a name="GIMP-PARASITE-PARENT-PERSISTENT:CAPS"></a>GIMP_PARASITE_PARENT_PERSISTENT</h3>
|
||||
<a class="indexterm" name="id2562913"></a><pre class="programlisting">#define GIMP_PARASITE_PARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 8)
|
||||
<a class="indexterm" name="id2570679"></a><pre class="programlisting">#define GIMP_PARASITE_PARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 8)
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -499,9 +507,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2562930"></a><h3>
|
||||
<a name="id2570696"></a><h3>
|
||||
<a name="GIMP-PARASITE-PARENT-UNDOABLE:CAPS"></a>GIMP_PARASITE_PARENT_UNDOABLE</h3>
|
||||
<a class="indexterm" name="id2562941"></a><pre class="programlisting">#define GIMP_PARASITE_PARENT_UNDOABLE (GIMP_PARASITE_UNDOABLE << 8)
|
||||
<a class="indexterm" name="id2570709"></a><pre class="programlisting">#define GIMP_PARASITE_PARENT_UNDOABLE (GIMP_PARASITE_UNDOABLE << 8)
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -509,9 +517,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2562958"></a><h3>
|
||||
<a name="id2570726"></a><h3>
|
||||
<a name="GIMP-PARASITE-ATTACH-GRANDPARENT:CAPS"></a>GIMP_PARASITE_ATTACH_GRANDPARENT</h3>
|
||||
<a class="indexterm" name="id2562969"></a><pre class="programlisting">#define GIMP_PARASITE_ATTACH_GRANDPARENT (0x80 << 16)
|
||||
<a class="indexterm" name="id2570740"></a><pre class="programlisting">#define GIMP_PARASITE_ATTACH_GRANDPARENT (0x80 << 16)
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -519,9 +527,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2562986"></a><h3>
|
||||
<a name="id2570756"></a><h3>
|
||||
<a name="GIMP-PARASITE-GRANDPARENT-PERSISTENT:CAPS"></a>GIMP_PARASITE_GRANDPARENT_PERSISTENT</h3>
|
||||
<a class="indexterm" name="id2562996"></a><pre class="programlisting">#define GIMP_PARASITE_GRANDPARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 16)
|
||||
<a class="indexterm" name="id2570769"></a><pre class="programlisting">#define GIMP_PARASITE_GRANDPARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 16)
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -529,9 +537,9 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2563014"></a><h3>
|
||||
<a name="id2570786"></a><h3>
|
||||
<a name="GIMP-PARASITE-GRANDPARENT-UNDOABLE:CAPS"></a>GIMP_PARASITE_GRANDPARENT_UNDOABLE</h3>
|
||||
<a class="indexterm" name="id2563026"></a><pre class="programlisting">#define GIMP_PARASITE_GRANDPARENT_UNDOABLE (GIMP_PARASITE_UNDOABLE << 16)
|
||||
<a class="indexterm" name="id2570801"></a><pre class="programlisting">#define GIMP_PARASITE_GRANDPARENT_UNDOABLE (GIMP_PARASITE_UNDOABLE << 16)
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -539,7 +547,7 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</div>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2563044"></a><h2>See Also</h2>
|
||||
<a name="id2570819"></a><h2>See Also</h2>
|
||||
<p>
|
||||
<a
|
||||
href="../app/GimpImage.html#gimp-image-parasite-attach"
|
||||
@ -552,9 +560,5 @@ href="../app/app-Gimp-parasites.html#gimp-parasite-attach"
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase-gimpmemsize.html"><b><< gimpmemsize</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimpparasiteio.html"><b>gimpparasiteio >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,23 +8,30 @@
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase-gimpparasite.html" title="gimpparasite">
|
||||
<link rel="next" href="libgimpbase-gimpsignal.html" title="gimpsignal">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase-gimpparasite.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimpsignal.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2544626" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2525869" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimpparasiteio"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimpparasiteio</span></h2>
|
||||
<h2>
|
||||
<a name="id2544626"></a><span class="refentrytitle">gimpparasiteio</span>
|
||||
</h2>
|
||||
<p>gimpparasiteio — Utility functions to (de)serialize certain C structures to/from <a href="libgimpbase-gimpparasite.html#GimpParasite"><span class="type">GimpParasite</span></a>'s.</p>
|
||||
</td>
|
||||
<td valign="top" align="right"></td>
|
||||
@ -42,18 +50,18 @@ gchar* <a href="libgimpbase-gimpparasiteio.html#gimp-pixpipe-params-build">
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2538736"></a><h2>Description</h2>
|
||||
<a name="id2525869"></a><h2>Description</h2>
|
||||
<p>
|
||||
Utility functions to (de)serialize certain C structures to/from <a href="libgimpbase-gimpparasite.html#GimpParasite"><span class="type">GimpParasite</span></a>'s.
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2538754"></a><h2>Details</h2>
|
||||
<a name="id2525892"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2538760"></a><h3>
|
||||
<a name="id2525903"></a><h3>
|
||||
<a name="GIMP-PIXPIPE-MAXDIM:CAPS"></a>GIMP_PIXPIPE_MAXDIM</h3>
|
||||
<a class="indexterm" name="id2538769"></a><pre class="programlisting">#define GIMP_PIXPIPE_MAXDIM 4
|
||||
<a class="indexterm" name="id2525914"></a><pre class="programlisting">#define GIMP_PIXPIPE_MAXDIM 4
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -61,9 +69,9 @@ Utility functions to (de)serialize certain C structures to/from <a href="libgimp
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2538785"></a><h3>
|
||||
<a name="id2525930"></a><h3>
|
||||
<a name="gimp-pixpipe-params-init"></a>gimp_pixpipe_params_init ()</h3>
|
||||
<a class="indexterm" name="id2538794"></a><pre class="programlisting">void gimp_pixpipe_params_init (GimpPixPipeParams *params);</pre>
|
||||
<a class="indexterm" name="id2525941"></a><pre class="programlisting">void gimp_pixpipe_params_init (GimpPixPipeParams *params);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -81,9 +89,9 @@ Utility functions to (de)serialize certain C structures to/from <a href="libgimp
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2538839"></a><h3>
|
||||
<a name="id2561739"></a><h3>
|
||||
<a name="gimp-pixpipe-params-parse"></a>gimp_pixpipe_params_parse ()</h3>
|
||||
<a class="indexterm" name="id2520554"></a><pre class="programlisting">void gimp_pixpipe_params_parse (const gchar *parameters,
|
||||
<a class="indexterm" name="id2561750"></a><pre class="programlisting">void gimp_pixpipe_params_parse (const gchar *parameters,
|
||||
GimpPixPipeParams *params);</pre>
|
||||
<p>
|
||||
|
||||
@ -110,9 +118,9 @@ Utility functions to (de)serialize certain C structures to/from <a href="libgimp
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2520621"></a><h3>
|
||||
<a name="id2561817"></a><h3>
|
||||
<a name="gimp-pixpipe-params-build"></a>gimp_pixpipe_params_build ()</h3>
|
||||
<a class="indexterm" name="id2520630"></a><pre class="programlisting">gchar* gimp_pixpipe_params_build (GimpPixPipeParams *params);</pre>
|
||||
<a class="indexterm" name="id2561828"></a><pre class="programlisting">gchar* gimp_pixpipe_params_build (GimpPixPipeParams *params);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -138,15 +146,11 @@ Utility functions to (de)serialize certain C structures to/from <a href="libgimp
|
||||
</div>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2520686"></a><h2>See Also</h2>
|
||||
<a name="id2568276"></a><h2>See Also</h2>
|
||||
<p>
|
||||
<a href="libgimpbase-gimpparasite.html#GimpParasite"><span class="type">GimpParasite</span></a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase-gimpparasite.html"><b><< gimpparasite</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimpsignal.html"><b>gimpsignal >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,23 +8,30 @@
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase-gimputils.html" title="gimputils">
|
||||
<link rel="next" href="libgimpbase-gimpwire.html" title="gimpwire">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase-gimputils.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimpwire.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2557011" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2573729" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimpprotocol"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimpprotocol</span></h2>
|
||||
<h2>
|
||||
<a name="id2557011"></a><span class="refentrytitle">gimpprotocol</span>
|
||||
</h2>
|
||||
<p>gimpprotocol — The communication protocol between GIMP and it's plug-ins.</p>
|
||||
</td>
|
||||
<td valign="top" align="right"></td>
|
||||
@ -84,18 +92,18 @@ gboolean <a href="libgimpbase-gimpprotocol.html#gp-extension-ack-write">gp_ex
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2564467"></a><h2>Description</h2>
|
||||
<a name="id2573729"></a><h2>Description</h2>
|
||||
<p>
|
||||
The communication protocol between GIMP and it's plug-ins.
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2564479"></a><h2>Details</h2>
|
||||
<a name="id2573746"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2564485"></a><h3>
|
||||
<a name="id2573757"></a><h3>
|
||||
<a name="GIMP-PROTOCOL-VERSION:CAPS"></a>GIMP_PROTOCOL_VERSION</h3>
|
||||
<a class="indexterm" name="id2564494"></a><pre class="programlisting">#define GIMP_PROTOCOL_VERSION 0x0011
|
||||
<a class="indexterm" name="id2573768"></a><pre class="programlisting">#define GIMP_PROTOCOL_VERSION 0x0011
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -103,9 +111,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2564509"></a><h3>
|
||||
<a name="id2573783"></a><h3>
|
||||
<a name="GPConfig"></a>GPConfig</h3>
|
||||
<a class="indexterm" name="id2564519"></a><pre class="programlisting">typedef struct {
|
||||
<a class="indexterm" name="id2573795"></a><pre class="programlisting">typedef struct {
|
||||
guint32 version;
|
||||
guint32 tile_width;
|
||||
guint32 tile_height;
|
||||
@ -134,9 +142,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2545524"></a><h3>
|
||||
<a name="id2546146"></a><h3>
|
||||
<a name="GPTileReq"></a>GPTileReq</h3>
|
||||
<a class="indexterm" name="id2561884"></a><pre class="programlisting">typedef struct {
|
||||
<a class="indexterm" name="id2530060"></a><pre class="programlisting">typedef struct {
|
||||
gint32 drawable_ID;
|
||||
guint32 tile_num;
|
||||
guint32 shadow;
|
||||
@ -148,18 +156,18 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2545141"></a><h3>
|
||||
<a name="id2564520"></a><h3>
|
||||
<a name="GPTileAck"></a>GPTileAck</h3>
|
||||
<a class="indexterm" name="id2526486"></a><pre class="programlisting">typedef struct _GPTileAck GPTileAck;</pre>
|
||||
<a class="indexterm" name="id2573819"></a><pre class="programlisting">typedef struct _GPTileAck GPTileAck;</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2564549"></a><h3>
|
||||
<a name="id2573834"></a><h3>
|
||||
<a name="GPTileData"></a>GPTileData</h3>
|
||||
<a class="indexterm" name="id2564559"></a><pre class="programlisting">typedef struct {
|
||||
<a class="indexterm" name="id2573846"></a><pre class="programlisting">typedef struct {
|
||||
gint32 drawable_ID;
|
||||
guint32 tile_num;
|
||||
guint32 shadow;
|
||||
@ -176,9 +184,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2564578"></a><h3>
|
||||
<a name="id2533702"></a><h3>
|
||||
<a name="GPParam"></a>GPParam</h3>
|
||||
<a class="indexterm" name="id2564587"></a><pre class="programlisting">typedef struct {
|
||||
<a class="indexterm" name="id2533714"></a><pre class="programlisting">typedef struct {
|
||||
guint32 type;
|
||||
|
||||
union
|
||||
@ -226,9 +234,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2559899"></a><h3>
|
||||
<a name="id2533742"></a><h3>
|
||||
<a name="GPParamDef"></a>GPParamDef</h3>
|
||||
<a class="indexterm" name="id2559909"></a><pre class="programlisting">typedef struct {
|
||||
<a class="indexterm" name="id2533754"></a><pre class="programlisting">typedef struct {
|
||||
guint32 type;
|
||||
gchar *name;
|
||||
gchar *description;
|
||||
@ -240,9 +248,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2559926"></a><h3>
|
||||
<a name="id2533771"></a><h3>
|
||||
<a name="GPProcRun"></a>GPProcRun</h3>
|
||||
<a class="indexterm" name="id2559936"></a><pre class="programlisting">typedef struct {
|
||||
<a class="indexterm" name="id2533783"></a><pre class="programlisting">typedef struct {
|
||||
gchar *name;
|
||||
guint32 nparams;
|
||||
GPParam *params;
|
||||
@ -254,9 +262,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2559952"></a><h3>
|
||||
<a name="id2533800"></a><h3>
|
||||
<a name="GPProcReturn"></a>GPProcReturn</h3>
|
||||
<a class="indexterm" name="id2559963"></a><pre class="programlisting">typedef struct {
|
||||
<a class="indexterm" name="id2533813"></a><pre class="programlisting">typedef struct {
|
||||
gchar *name;
|
||||
guint32 nparams;
|
||||
GPParam *params;
|
||||
@ -268,9 +276,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2559980"></a><h3>
|
||||
<a name="id2533830"></a><h3>
|
||||
<a name="GPProcInstall"></a>GPProcInstall</h3>
|
||||
<a class="indexterm" name="id2559990"></a><pre class="programlisting">typedef struct {
|
||||
<a class="indexterm" name="id2533842"></a><pre class="programlisting">typedef struct {
|
||||
gchar *name;
|
||||
gchar *blurb;
|
||||
gchar *help;
|
||||
@ -292,9 +300,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2560011"></a><h3>
|
||||
<a name="id2533863"></a><h3>
|
||||
<a name="GPProcUninstall"></a>GPProcUninstall</h3>
|
||||
<a class="indexterm" name="id2560021"></a><pre class="programlisting">typedef struct {
|
||||
<a class="indexterm" name="id2533876"></a><pre class="programlisting">typedef struct {
|
||||
gchar *name;
|
||||
} GPProcUninstall;
|
||||
</pre>
|
||||
@ -304,18 +312,18 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2560038"></a><h3>
|
||||
<a name="id2533892"></a><h3>
|
||||
<a name="gp-init"></a>gp_init ()</h3>
|
||||
<a class="indexterm" name="id2560047"></a><pre class="programlisting">void gp_init (void);</pre>
|
||||
<a class="indexterm" name="id2533904"></a><pre class="programlisting">void gp_init (void);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2560068"></a><h3>
|
||||
<a name="id2533925"></a><h3>
|
||||
<a name="gp-has-init-write"></a>gp_has_init_write ()</h3>
|
||||
<a class="indexterm" name="id2560078"></a><pre class="programlisting">gboolean gp_has_init_write (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2533938"></a><pre class="programlisting">gboolean gp_has_init_write (GIOChannel *channel,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
|
||||
@ -348,9 +356,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2569637"></a><h3>
|
||||
<a name="id2577737"></a><h3>
|
||||
<a name="gp-quit-write"></a>gp_quit_write ()</h3>
|
||||
<a class="indexterm" name="id2569645"></a><pre class="programlisting">gboolean gp_quit_write (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2577747"></a><pre class="programlisting">gboolean gp_quit_write (GIOChannel *channel,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
|
||||
@ -383,9 +391,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2569713"></a><h3>
|
||||
<a name="id2577816"></a><h3>
|
||||
<a name="gp-config-write"></a>gp_config_write ()</h3>
|
||||
<a class="indexterm" name="id2569722"></a><pre class="programlisting">gboolean gp_config_write (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2577827"></a><pre class="programlisting">gboolean gp_config_write (GIOChannel *channel,
|
||||
<a href="libgimpbase-gimpprotocol.html#GPConfig">GPConfig</a> *config,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
@ -425,9 +433,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2569809"></a><h3>
|
||||
<a name="id2577915"></a><h3>
|
||||
<a name="gp-tile-req-write"></a>gp_tile_req_write ()</h3>
|
||||
<a class="indexterm" name="id2569817"></a><pre class="programlisting">gboolean gp_tile_req_write (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2577925"></a><pre class="programlisting">gboolean gp_tile_req_write (GIOChannel *channel,
|
||||
<a href="libgimpbase-gimpprotocol.html#GPTileReq">GPTileReq</a> *tile_req,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
@ -467,9 +475,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2569904"></a><h3>
|
||||
<a name="id2578013"></a><h3>
|
||||
<a name="gp-tile-ack-write"></a>gp_tile_ack_write ()</h3>
|
||||
<a class="indexterm" name="id2569913"></a><pre class="programlisting">gboolean gp_tile_ack_write (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2578024"></a><pre class="programlisting">gboolean gp_tile_ack_write (GIOChannel *channel,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
|
||||
@ -502,9 +510,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2569982"></a><h3>
|
||||
<a name="id2578093"></a><h3>
|
||||
<a name="gp-tile-data-write"></a>gp_tile_data_write ()</h3>
|
||||
<a class="indexterm" name="id2569990"></a><pre class="programlisting">gboolean gp_tile_data_write (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2578103"></a><pre class="programlisting">gboolean gp_tile_data_write (GIOChannel *channel,
|
||||
<a href="libgimpbase-gimpprotocol.html#GPTileData">GPTileData</a> *tile_data,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
@ -544,9 +552,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2570078"></a><h3>
|
||||
<a name="id2578191"></a><h3>
|
||||
<a name="gp-proc-run-write"></a>gp_proc_run_write ()</h3>
|
||||
<a class="indexterm" name="id2570087"></a><pre class="programlisting">gboolean gp_proc_run_write (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2578201"></a><pre class="programlisting">gboolean gp_proc_run_write (GIOChannel *channel,
|
||||
<a href="libgimpbase-gimpprotocol.html#GPProcRun">GPProcRun</a> *proc_run,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
@ -586,9 +594,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2570175"></a><h3>
|
||||
<a name="id2578289"></a><h3>
|
||||
<a name="gp-proc-return-write"></a>gp_proc_return_write ()</h3>
|
||||
<a class="indexterm" name="id2570183"></a><pre class="programlisting">gboolean gp_proc_return_write (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2578300"></a><pre class="programlisting">gboolean gp_proc_return_write (GIOChannel *channel,
|
||||
<a href="libgimpbase-gimpprotocol.html#GPProcReturn">GPProcReturn</a> *proc_return,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
@ -628,9 +636,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2570271"></a><h3>
|
||||
<a name="id2578388"></a><h3>
|
||||
<a name="gp-temp-proc-run-write"></a>gp_temp_proc_run_write ()</h3>
|
||||
<a class="indexterm" name="id2570280"></a><pre class="programlisting">gboolean gp_temp_proc_run_write (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2578398"></a><pre class="programlisting">gboolean gp_temp_proc_run_write (GIOChannel *channel,
|
||||
<a href="libgimpbase-gimpprotocol.html#GPProcRun">GPProcRun</a> *proc_run,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
@ -670,9 +678,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2570368"></a><h3>
|
||||
<a name="id2578486"></a><h3>
|
||||
<a name="gp-temp-proc-return-write"></a>gp_temp_proc_return_write ()</h3>
|
||||
<a class="indexterm" name="id2570376"></a><pre class="programlisting">gboolean gp_temp_proc_return_write (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2578497"></a><pre class="programlisting">gboolean gp_temp_proc_return_write (GIOChannel *channel,
|
||||
<a href="libgimpbase-gimpprotocol.html#GPProcReturn">GPProcReturn</a> *proc_return,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
@ -712,9 +720,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2570464"></a><h3>
|
||||
<a name="id2578585"></a><h3>
|
||||
<a name="gp-proc-install-write"></a>gp_proc_install_write ()</h3>
|
||||
<a class="indexterm" name="id2570473"></a><pre class="programlisting">gboolean gp_proc_install_write (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2578595"></a><pre class="programlisting">gboolean gp_proc_install_write (GIOChannel *channel,
|
||||
<a href="libgimpbase-gimpprotocol.html#GPProcInstall">GPProcInstall</a> *proc_install,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
@ -754,9 +762,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2570561"></a><h3>
|
||||
<a name="id2578683"></a><h3>
|
||||
<a name="gp-proc-uninstall-write"></a>gp_proc_uninstall_write ()</h3>
|
||||
<a class="indexterm" name="id2570569"></a><pre class="programlisting">gboolean gp_proc_uninstall_write (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2578694"></a><pre class="programlisting">gboolean gp_proc_uninstall_write (GIOChannel *channel,
|
||||
<a href="libgimpbase-gimpprotocol.html#GPProcUninstall">GPProcUninstall</a> *proc_uninstall,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
@ -796,9 +804,9 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2570657"></a><h3>
|
||||
<a name="id2578782"></a><h3>
|
||||
<a name="gp-extension-ack-write"></a>gp_extension_ack_write ()</h3>
|
||||
<a class="indexterm" name="id2570666"></a><pre class="programlisting">gboolean gp_extension_ack_write (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2578792"></a><pre class="programlisting">gboolean gp_extension_ack_write (GIOChannel *channel,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
|
||||
@ -831,15 +839,11 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</div>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2570736"></a><h2>See Also</h2>
|
||||
<a name="id2578862"></a><h2>See Also</h2>
|
||||
<p>
|
||||
<span class="type">libgimp-gimpwire</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase-gimputils.html"><b><< gimputils</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimpwire.html"><b>gimpwire >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,23 +8,30 @@
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase-gimpparasiteio.html" title="gimpparasiteio">
|
||||
<link rel="next" href="libgimpbase-gimpunit.html" title="gimpunit">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase-gimpparasiteio.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimpunit.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2557996" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2566526" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimpsignal"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimpsignal</span></h2>
|
||||
<h2>
|
||||
<a name="id2557996"></a><span class="refentrytitle">gimpsignal</span>
|
||||
</h2>
|
||||
<p>gimpsignal — Portable signal handling.</p>
|
||||
</td>
|
||||
<td valign="top" align="right"></td>
|
||||
@ -41,18 +49,18 @@ void (<a href="libgimpbase-gimpsignal.html#GimpSignalHandlerFunc">*GimpSi
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2557556"></a><h2>Description</h2>
|
||||
<a name="id2566526"></a><h2>Description</h2>
|
||||
<p>
|
||||
Portable signal handling.
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2557567"></a><h2>Details</h2>
|
||||
<a name="id2566542"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2557573"></a><h3>
|
||||
<a name="id2566552"></a><h3>
|
||||
<a name="GimpSignalHandlerFunc"></a>GimpSignalHandlerFunc ()</h3>
|
||||
<a class="indexterm" name="id2557582"></a><pre class="programlisting">void (*GimpSignalHandlerFunc) (gint signum);</pre>
|
||||
<a class="indexterm" name="id2566563"></a><pre class="programlisting">void (*GimpSignalHandlerFunc) (gint signum);</pre>
|
||||
<p>
|
||||
A prototype for signal handler functions. Note that each function which
|
||||
takes or returns a variable of this type also accepts or may return
|
||||
@ -74,9 +82,9 @@ special values defined by your system's signal.h header file (like
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2557643"></a><h3>
|
||||
<a name="id2566625"></a><h3>
|
||||
<a name="gimp-signal-private"></a>gimp_signal_private ()</h3>
|
||||
<a class="indexterm" name="id2557653"></a><pre class="programlisting"><a href="libgimpbase-gimpsignal.html#GimpSignalHandlerFunc">GimpSignalHandlerFunc</a> gimp_signal_private (gint signum,
|
||||
<a class="indexterm" name="id2566637"></a><pre class="programlisting"><a href="libgimpbase-gimpsignal.html#GimpSignalHandlerFunc">GimpSignalHandlerFunc</a> gimp_signal_private (gint signum,
|
||||
<a href="libgimpbase-gimpsignal.html#GimpSignalHandlerFunc">GimpSignalHandlerFunc</a> handler,
|
||||
gint flags);</pre>
|
||||
<p>
|
||||
@ -132,15 +140,11 @@ exactly what we want. [austin 06.04.2000]</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2526892"></a><h2>See Also</h2>
|
||||
<a name="id2542977"></a><h2>See Also</h2>
|
||||
<p>
|
||||
signal(2), signal(5 or 7), sigaction(2).
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase-gimpparasiteio.html"><b><< gimpparasiteio</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimpunit.html"><b>gimpunit >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,23 +8,30 @@
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase-gimpsignal.html" title="gimpsignal">
|
||||
<link rel="next" href="libgimpbase-gimputils.html" title="gimputils">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase-gimpsignal.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimputils.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2553281" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2568944" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimpunit"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimpunit</span></h2>
|
||||
<h2>
|
||||
<a name="id2553281"></a><span class="refentrytitle">gimpunit</span>
|
||||
</h2>
|
||||
<p>gimpunit — Provides a collection of predefined units and functions for creating
|
||||
user-defined units.</p>
|
||||
</td>
|
||||
@ -62,7 +70,7 @@ const gchar* <a href="libgimpbase-gimpunit.html#gimp-unit-get-plural">gimp_unit_
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2469431"></a><h2>Description</h2>
|
||||
<a name="id2568944"></a><h2>Description</h2>
|
||||
<p>
|
||||
Provides a collection of predefined units and functions for creating
|
||||
user-defined units.
|
||||
@ -70,11 +78,11 @@ user-defined units.
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2469444"></a><h2>Details</h2>
|
||||
<a name="id2568961"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2469450"></a><h3>
|
||||
<a name="id2568972"></a><h3>
|
||||
<a name="GimpUnit"></a>enum GimpUnit</h3>
|
||||
<a class="indexterm" name="id2469460"></a><pre class="programlisting">typedef enum /*< skip >*/
|
||||
<a class="indexterm" name="id2568984"></a><pre class="programlisting">typedef enum /*< skip >*/
|
||||
{
|
||||
GIMP_UNIT_PIXEL = 0,
|
||||
|
||||
@ -94,9 +102,9 @@ user-defined units.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2469479"></a><h3>
|
||||
<a name="id2553781"></a><h3>
|
||||
<a name="gimp-unit-get-number-of-units"></a>gimp_unit_get_number_of_units ()</h3>
|
||||
<a class="indexterm" name="id2469488"></a><pre class="programlisting">gint gimp_unit_get_number_of_units (void);</pre>
|
||||
<a class="indexterm" name="id2553793"></a><pre class="programlisting">gint gimp_unit_get_number_of_units (void);</pre>
|
||||
<p>
|
||||
Returns the number of units which are known to the <a href="libgimpbase-gimpunit.html#GimpUnit"><span class="type">GimpUnit</span></a> system.</p>
|
||||
<p>
|
||||
@ -114,9 +122,9 @@ Returns the number of units which are known to the <a href="libgimpbase-gimpunit
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2560519"></a><h3>
|
||||
<a name="id2553840"></a><h3>
|
||||
<a name="gimp-unit-get-number-of-built-in-units"></a>gimp_unit_get_number_of_built_in_units ()</h3>
|
||||
<a class="indexterm" name="id2560529"></a><pre class="programlisting">gint gimp_unit_get_number_of_built_in_units
|
||||
<a class="indexterm" name="id2553851"></a><pre class="programlisting">gint gimp_unit_get_number_of_built_in_units
|
||||
(void);</pre>
|
||||
<p>
|
||||
Returns the number of <a href="libgimpbase-gimpunit.html#GimpUnit"><span class="type">GimpUnit</span></a>'s which are hardcoded in the unit system
|
||||
@ -137,9 +145,9 @@ Returns the number of <a href="libgimpbase-gimpunit.html#GimpUnit"><span class="
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2560579"></a><h3>
|
||||
<a name="id2553900"></a><h3>
|
||||
<a name="gimp-unit-new"></a>gimp_unit_new ()</h3>
|
||||
<a class="indexterm" name="id2560589"></a><pre class="programlisting"><a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> gimp_unit_new (gchar *identifier,
|
||||
<a class="indexterm" name="id2553913"></a><pre class="programlisting"><a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> gimp_unit_new (gchar *identifier,
|
||||
gdouble factor,
|
||||
gint digits,
|
||||
gchar *symbol,
|
||||
@ -212,9 +220,9 @@ set to <code class="literal">TRUE</code>. You will have to set it to <code class
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2531948"></a><h3>
|
||||
<a name="id2550468"></a><h3>
|
||||
<a name="gimp-unit-get-deletion-flag"></a>gimp_unit_get_deletion_flag ()</h3>
|
||||
<a class="indexterm" name="id2531958"></a><pre class="programlisting">gboolean gimp_unit_get_deletion_flag (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<a class="indexterm" name="id2550480"></a><pre class="programlisting">gboolean gimp_unit_get_deletion_flag (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
@ -240,9 +248,9 @@ set to <code class="literal">TRUE</code>. You will have to set it to <code class
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2532030"></a><h3>
|
||||
<a name="id2550553"></a><h3>
|
||||
<a name="gimp-unit-set-deletion-flag"></a>gimp_unit_set_deletion_flag ()</h3>
|
||||
<a class="indexterm" name="id2532040"></a><pre class="programlisting">void gimp_unit_set_deletion_flag (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit,
|
||||
<a class="indexterm" name="id2550565"></a><pre class="programlisting">void gimp_unit_set_deletion_flag (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit,
|
||||
gboolean deletion_flag);</pre>
|
||||
<p>
|
||||
Sets a <a href="libgimpbase-gimpunit.html#GimpUnit"><span class="type">GimpUnit</span></a>'s <em class="parameter"><code>deletion_flag</code></em>. If the <em class="parameter"><code>deletion_flag</code></em> of a unit is
|
||||
@ -275,9 +283,9 @@ ignored.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2564915"></a><h3>
|
||||
<a name="id2572793"></a><h3>
|
||||
<a name="gimp-unit-get-factor"></a>gimp_unit_get_factor ()</h3>
|
||||
<a class="indexterm" name="id2564923"></a><pre class="programlisting">gdouble gimp_unit_get_factor (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<a class="indexterm" name="id2572803"></a><pre class="programlisting">gdouble gimp_unit_get_factor (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<p>
|
||||
A <a href="libgimpbase-gimpunit.html#GimpUnit"><span class="type">GimpUnit</span></a>'s <em class="parameter"><code>factor</code></em> is defined to be:
|
||||
</p>
|
||||
@ -309,9 +317,9 @@ Returns 0 for <em class="parameter"><code>unit</code></em> == GIMP_UNIT_PIXEL.</
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2565006"></a><h3>
|
||||
<a name="id2572887"></a><h3>
|
||||
<a name="gimp-unit-get-digits"></a>gimp_unit_get_digits ()</h3>
|
||||
<a class="indexterm" name="id2565014"></a><pre class="programlisting">gint gimp_unit_get_digits (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<a class="indexterm" name="id2572898"></a><pre class="programlisting">gint gimp_unit_get_digits (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<p>
|
||||
Returns the number of digits an entry field should provide to get
|
||||
approximately the same accuracy as an inch input field with two digits.
|
||||
@ -341,9 +349,9 @@ Returns 0 for <em class="parameter"><code>unit</code></em> == GIMP_UNIT_PIXEL.</
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2565083"></a><h3>
|
||||
<a name="id2572971"></a><h3>
|
||||
<a name="gimp-unit-get-identifier"></a>gimp_unit_get_identifier ()</h3>
|
||||
<a class="indexterm" name="id2565092"></a><pre class="programlisting">const gchar* gimp_unit_get_identifier (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<a class="indexterm" name="id2572982"></a><pre class="programlisting">const gchar* gimp_unit_get_identifier (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<p>
|
||||
This is an unstranslated string and must not be changed or freed.</p>
|
||||
<p>
|
||||
@ -369,9 +377,9 @@ This is an unstranslated string and must not be changed or freed.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2565154"></a><h3>
|
||||
<a name="id2573044"></a><h3>
|
||||
<a name="gimp-unit-get-symbol"></a>gimp_unit_get_symbol ()</h3>
|
||||
<a class="indexterm" name="id2565163"></a><pre class="programlisting">const gchar* gimp_unit_get_symbol (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<a class="indexterm" name="id2573056"></a><pre class="programlisting">const gchar* gimp_unit_get_symbol (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<p>
|
||||
This is e.g. "''" for UNIT_INCH.
|
||||
</p>
|
||||
@ -400,9 +408,9 @@ NOTE: This string must not be changed or freed.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2565229"></a><h3>
|
||||
<a name="id2573122"></a><h3>
|
||||
<a name="gimp-unit-get-abbreviation"></a>gimp_unit_get_abbreviation ()</h3>
|
||||
<a class="indexterm" name="id2565239"></a><pre class="programlisting">const gchar* gimp_unit_get_abbreviation (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<a class="indexterm" name="id2573134"></a><pre class="programlisting">const gchar* gimp_unit_get_abbreviation (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<p>
|
||||
For built-in units, this function returns the translated abbreviation
|
||||
of the unit.
|
||||
@ -432,9 +440,9 @@ NOTE: This string must not be changed or freed.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2565306"></a><h3>
|
||||
<a name="id2573201"></a><h3>
|
||||
<a name="gimp-unit-get-singular"></a>gimp_unit_get_singular ()</h3>
|
||||
<a class="indexterm" name="id2565315"></a><pre class="programlisting">const gchar* gimp_unit_get_singular (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<a class="indexterm" name="id2573212"></a><pre class="programlisting">const gchar* gimp_unit_get_singular (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<p>
|
||||
For built-in units, this function returns the translated singular form
|
||||
of the unit's name.
|
||||
@ -464,9 +472,9 @@ NOTE: This string must not be changed or freed.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2565382"></a><h3>
|
||||
<a name="id2573279"></a><h3>
|
||||
<a name="gimp-unit-get-plural"></a>gimp_unit_get_plural ()</h3>
|
||||
<a class="indexterm" name="id2565391"></a><pre class="programlisting">const gchar* gimp_unit_get_plural (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<a class="indexterm" name="id2573290"></a><pre class="programlisting">const gchar* gimp_unit_get_plural (<a href="libgimpbase-gimpunit.html#GimpUnit">GimpUnit</a> unit);</pre>
|
||||
<p>
|
||||
For built-in units, this function returns the translated plural form
|
||||
of the unit's name.
|
||||
@ -496,9 +504,9 @@ NOTE: This string must not be changed or freed.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2565458"></a><h3>
|
||||
<a name="id2573358"></a><h3>
|
||||
<a name="GIMP-TYPE-UNIT:CAPS"></a>GIMP_TYPE_UNIT</h3>
|
||||
<a class="indexterm" name="id2546528"></a><pre class="programlisting">#define GIMP_TYPE_UNIT (gimp_unit_get_type ())
|
||||
<a class="indexterm" name="id2573370"></a><pre class="programlisting">#define GIMP_TYPE_UNIT (gimp_unit_get_type ())
|
||||
</pre>
|
||||
<p>
|
||||
<a href="libgimpbase-gimpunit.html#GIMP-TYPE-UNIT:CAPS"><span class="type">GIMP_TYPE_UNIT</span></a> is a <span class="type">GType</span> derived from <span class="type">G_TYPE_INT</span>.
|
||||
@ -506,9 +514,9 @@ NOTE: This string must not be changed or freed.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2565485"></a><h3>
|
||||
<a name="id2573389"></a><h3>
|
||||
<a name="GIMP-VALUE-HOLDS-UNIT:CAPS"></a>GIMP_VALUE_HOLDS_UNIT()</h3>
|
||||
<a class="indexterm" name="id2565493"></a><pre class="programlisting">#define GIMP_VALUE_HOLDS_UNIT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_UNIT))
|
||||
<a class="indexterm" name="id2573399"></a><pre class="programlisting">#define GIMP_VALUE_HOLDS_UNIT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_UNIT))
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -527,7 +535,7 @@ NOTE: This string must not be changed or freed.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2565526"></a><h2>See Also</h2>
|
||||
<a name="id2573432"></a><h2>See Also</h2>
|
||||
<p>
|
||||
<a
|
||||
href="../libgimpwidgets/GimpUnitMenu.html"
|
||||
@ -540,9 +548,5 @@ href="../libgimpwidgets/GimpSizeEntry.html"
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase-gimpsignal.html"><b><< gimpsignal</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimputils.html"><b>gimputils >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,23 +8,30 @@
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase-gimpunit.html" title="gimpunit">
|
||||
<link rel="next" href="libgimpbase-gimpprotocol.html" title="gimpprotocol">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase-gimpunit.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimpprotocol.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2544593" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2571454" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimputils"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimputils</span></h2>
|
||||
<h2>
|
||||
<a name="id2544593"></a><span class="refentrytitle">gimputils</span>
|
||||
</h2>
|
||||
<p>gimputils — Utilities of general interest</p>
|
||||
</td>
|
||||
<td valign="top" align="right"></td>
|
||||
@ -70,17 +78,17 @@ const gchar* <a href="libgimpbase-gimputils.html#gimp-flags-value-get-help">gimp
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2563159"></a><h2>Description</h2>
|
||||
<a name="id2571454"></a><h2>Description</h2>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2563170"></a><h2>Details</h2>
|
||||
<a name="id2571469"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2563176"></a><h3>
|
||||
<a name="id2571480"></a><h3>
|
||||
<a name="gimp-any-to-utf8"></a>gimp_any_to_utf8 ()</h3>
|
||||
<a class="indexterm" name="id2563187"></a><pre class="programlisting">gchar* gimp_any_to_utf8 (const gchar *str,
|
||||
<a class="indexterm" name="id2571492"></a><pre class="programlisting">gchar* gimp_any_to_utf8 (const gchar *str,
|
||||
gssize len,
|
||||
const gchar *warning_format,
|
||||
...);</pre>
|
||||
@ -143,9 +151,9 @@ of <em class="parameter"><code>str</code></em> is valid UTF-8, only "(invalid UT
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2563365"></a><h3>
|
||||
<a name="id2571670"></a><h3>
|
||||
<a name="gimp-filename-to-utf8"></a>gimp_filename_to_utf8 ()</h3>
|
||||
<a class="indexterm" name="id2563374"></a><pre class="programlisting">const gchar* gimp_filename_to_utf8 (const gchar *filename);</pre>
|
||||
<a class="indexterm" name="id2570866"></a><pre class="programlisting">const gchar* gimp_filename_to_utf8 (const gchar *filename);</pre>
|
||||
<p>
|
||||
Convert a filename in the filesystem's encoding to UTF-8
|
||||
temporarily. The return value is a pointer to a string that is
|
||||
@ -180,9 +188,9 @@ UTF-8 encoded filename.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2530201"></a><h3>
|
||||
<a name="id2570952"></a><h3>
|
||||
<a name="gimp-utf8-strtrim"></a>gimp_utf8_strtrim ()</h3>
|
||||
<a class="indexterm" name="id2530211"></a><pre class="programlisting">gchar* gimp_utf8_strtrim (const gchar *str,
|
||||
<a class="indexterm" name="id2570965"></a><pre class="programlisting">gchar* gimp_utf8_strtrim (const gchar *str,
|
||||
gint max_chars);</pre>
|
||||
<p>
|
||||
Creates a (possibly trimmed) copy of <em class="parameter"><code>str</code></em>. The string is cut if it
|
||||
@ -219,9 +227,9 @@ using <code class="function">g_free()</code> when it is not needed any longer.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2530326"></a><h3>
|
||||
<a name="id2571084"></a><h3>
|
||||
<a name="gimp-escape-uline"></a>gimp_escape_uline ()</h3>
|
||||
<a class="indexterm" name="id2530337"></a><pre class="programlisting">gchar* gimp_escape_uline (const gchar *str);</pre>
|
||||
<a class="indexterm" name="id2571098"></a><pre class="programlisting">gchar* gimp_escape_uline (const gchar *str);</pre>
|
||||
<p>
|
||||
This function returns a copy of <em class="parameter"><code>str</code></em> with all underline converted
|
||||
to two adjacent underlines. This comes in handy when needing to display
|
||||
@ -254,9 +262,9 @@ freed using <code class="function">g_free()</code> when it is not needed any lon
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2567383"></a><h3>
|
||||
<a name="id2575411"></a><h3>
|
||||
<a name="gimp-strip-uline"></a>gimp_strip_uline ()</h3>
|
||||
<a class="indexterm" name="id2567392"></a><pre class="programlisting">gchar* gimp_strip_uline (const gchar *str);</pre>
|
||||
<a class="indexterm" name="id2575421"></a><pre class="programlisting">gchar* gimp_strip_uline (const gchar *str);</pre>
|
||||
<p>
|
||||
This function returns a copy of <em class="parameter"><code>str</code></em> stripped of underline
|
||||
characters. This comes in handy when needing to strip mnemonics
|
||||
@ -291,9 +299,9 @@ rid of the mnemonic (see bug <span class="type">157561</span>).</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2567488"></a><h3>
|
||||
<a name="id2575524"></a><h3>
|
||||
<a name="gimp-enum-get-desc"></a>gimp_enum_get_desc ()</h3>
|
||||
<a class="indexterm" name="id2567496"></a><pre class="programlisting"><a href="libgimpbase-gimpbasetypes.html#GimpEnumDesc">GimpEnumDesc</a>* gimp_enum_get_desc (GEnumClass *enum_class,
|
||||
<a class="indexterm" name="id2575538"></a><pre class="programlisting"><a href="libgimpbase-gimpbasetypes.html#GimpEnumDesc">GimpEnumDesc</a>* gimp_enum_get_desc (GEnumClass *enum_class,
|
||||
gint value);</pre>
|
||||
<p>
|
||||
Retrieves <a href="libgimpbase-gimpbasetypes.html#GimpEnumDesc"><span class="type">GimpEnumDesc</span></a> associated with the given value, or <code class="literal">NULL</code>.</p>
|
||||
@ -329,9 +337,9 @@ Retrieves <a href="libgimpbase-gimpbasetypes.html#GimpEnumDesc"><span class="typ
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2567617"></a><h3>
|
||||
<a name="id2575639"></a><h3>
|
||||
<a name="gimp-enum-get-value"></a>gimp_enum_get_value ()</h3>
|
||||
<a class="indexterm" name="id2567627"></a><pre class="programlisting">gboolean gimp_enum_get_value (GType enum_type,
|
||||
<a class="indexterm" name="id2575651"></a><pre class="programlisting">gboolean gimp_enum_get_value (GType enum_type,
|
||||
gint value,
|
||||
const gchar **value_name,
|
||||
const gchar **value_nick,
|
||||
@ -399,9 +407,9 @@ and <em class="parameter"><code>value_help</code></em> are not <code class="lite
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2567858"></a><h3>
|
||||
<a name="id2575916"></a><h3>
|
||||
<a name="gimp-enum-value-get-desc"></a>gimp_enum_value_get_desc ()</h3>
|
||||
<a class="indexterm" name="id2567867"></a><pre class="programlisting">const gchar* gimp_enum_value_get_desc (GEnumClass *enum_class,
|
||||
<a class="indexterm" name="id2575928"></a><pre class="programlisting">const gchar* gimp_enum_value_get_desc (GEnumClass *enum_class,
|
||||
GEnumValue *enum_value);</pre>
|
||||
<p>
|
||||
Retrieves the translated desc for a given <em class="parameter"><code>enum_value</code></em>.</p>
|
||||
@ -437,9 +445,9 @@ Retrieves the translated desc for a given <em class="parameter"><code>enum_value
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2567969"></a><h3>
|
||||
<a name="id2576030"></a><h3>
|
||||
<a name="gimp-enum-value-get-help"></a>gimp_enum_value_get_help ()</h3>
|
||||
<a class="indexterm" name="id2567977"></a><pre class="programlisting">const gchar* gimp_enum_value_get_help (GEnumClass *enum_class,
|
||||
<a class="indexterm" name="id2576043"></a><pre class="programlisting">const gchar* gimp_enum_value_get_help (GEnumClass *enum_class,
|
||||
GEnumValue *enum_value);</pre>
|
||||
<p>
|
||||
Retrieves the translated help for a given <em class="parameter"><code>enum_value</code></em>.</p>
|
||||
@ -475,9 +483,9 @@ Retrieves the translated help for a given <em class="parameter"><code>enum_value
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2568079"></a><h3>
|
||||
<a name="id2576144"></a><h3>
|
||||
<a name="gimp-flags-get-first-desc"></a>gimp_flags_get_first_desc ()</h3>
|
||||
<a class="indexterm" name="id2568088"></a><pre class="programlisting"><a href="libgimpbase-gimpbasetypes.html#GimpFlagsDesc">GimpFlagsDesc</a>* gimp_flags_get_first_desc (GFlagsClass *flags_class,
|
||||
<a class="indexterm" name="id2576158"></a><pre class="programlisting"><a href="libgimpbase-gimpbasetypes.html#GimpFlagsDesc">GimpFlagsDesc</a>* gimp_flags_get_first_desc (GFlagsClass *flags_class,
|
||||
guint value);</pre>
|
||||
<p>
|
||||
Retrieves the first <a href="libgimpbase-gimpbasetypes.html#GimpFlagsDesc"><span class="type">GimpFlagsDesc</span></a> that matches the given value, or <code class="literal">NULL</code>.</p>
|
||||
@ -513,9 +521,9 @@ Retrieves the first <a href="libgimpbase-gimpbasetypes.html#GimpFlagsDesc"><span
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2568194"></a><h3>
|
||||
<a name="id2576267"></a><h3>
|
||||
<a name="gimp-flags-get-first-value"></a>gimp_flags_get_first_value ()</h3>
|
||||
<a class="indexterm" name="id2568203"></a><pre class="programlisting">gboolean gimp_flags_get_first_value (GType flags_type,
|
||||
<a class="indexterm" name="id2576280"></a><pre class="programlisting">gboolean gimp_flags_get_first_value (GType flags_type,
|
||||
guint value,
|
||||
const gchar **value_name,
|
||||
const gchar **value_nick,
|
||||
@ -583,9 +591,9 @@ and <em class="parameter"><code>value_help</code></em> are not <code class="lite
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2568446"></a><h3>
|
||||
<a name="id2576545"></a><h3>
|
||||
<a name="gimp-flags-value-get-desc"></a>gimp_flags_value_get_desc ()</h3>
|
||||
<a class="indexterm" name="id2568456"></a><pre class="programlisting">const gchar* gimp_flags_value_get_desc (GFlagsClass *flags_class,
|
||||
<a class="indexterm" name="id2576558"></a><pre class="programlisting">const gchar* gimp_flags_value_get_desc (GFlagsClass *flags_class,
|
||||
GFlagsValue *flags_value);</pre>
|
||||
<p>
|
||||
Retrieves the translated desc for a given <em class="parameter"><code>flags_value</code></em>.</p>
|
||||
@ -621,9 +629,9 @@ Retrieves the translated desc for a given <em class="parameter"><code>flags_valu
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2568558"></a><h3>
|
||||
<a name="id2576660"></a><h3>
|
||||
<a name="gimp-flags-value-get-help"></a>gimp_flags_value_get_help ()</h3>
|
||||
<a class="indexterm" name="id2568567"></a><pre class="programlisting">const gchar* gimp_flags_value_get_help (GFlagsClass *flags_class,
|
||||
<a class="indexterm" name="id2576673"></a><pre class="programlisting">const gchar* gimp_flags_value_get_help (GFlagsClass *flags_class,
|
||||
GFlagsValue *flags_value);</pre>
|
||||
<p>
|
||||
Retrieves the translated help for a given <em class="parameter"><code>flags_value</code></em>.</p>
|
||||
@ -659,9 +667,5 @@ Retrieves the translated help for a given <em class="parameter"><code>flags_valu
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase-gimpunit.html"><b><< gimpunit</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimpprotocol.html"><b>gimpprotocol >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,23 +8,30 @@
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase-gimpbasetypes.html" title="gimpbasetypes">
|
||||
<link rel="next" href="libgimpbase-gimplimits.html" title="gimplimits">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase-gimpbasetypes.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimplimits.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2524424" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2533288" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimpversion"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimpversion</span></h2>
|
||||
<h2>
|
||||
<a name="id2524424"></a><span class="refentrytitle">gimpversion</span>
|
||||
</h2>
|
||||
<p>gimpversion — Macros and constants useful for determining GIMP's version number and
|
||||
capabilities.</p>
|
||||
</td>
|
||||
@ -44,7 +52,7 @@ capabilities.</p>
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2530963"></a><h2>Description</h2>
|
||||
<a name="id2533288"></a><h2>Description</h2>
|
||||
<p>
|
||||
Macros and constants useful for determining GIMP's version number and
|
||||
capabilities.
|
||||
@ -52,11 +60,11 @@ capabilities.
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2556273"></a><h2>Details</h2>
|
||||
<a name="id2539722"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2556279"></a><h3>
|
||||
<a name="id2539732"></a><h3>
|
||||
<a name="GIMP-MAJOR-VERSION:CAPS"></a>GIMP_MAJOR_VERSION</h3>
|
||||
<a class="indexterm" name="id2556288"></a><pre class="programlisting">#define GIMP_MAJOR_VERSION (2)
|
||||
<a class="indexterm" name="id2539744"></a><pre class="programlisting">#define GIMP_MAJOR_VERSION (2)
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -64,9 +72,9 @@ capabilities.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2556304"></a><h3>
|
||||
<a name="id2539759"></a><h3>
|
||||
<a name="GIMP-MINOR-VERSION:CAPS"></a>GIMP_MINOR_VERSION</h3>
|
||||
<a class="indexterm" name="id2544276"></a><pre class="programlisting">#define GIMP_MINOR_VERSION (2)
|
||||
<a class="indexterm" name="id2539771"></a><pre class="programlisting">#define GIMP_MINOR_VERSION (2)
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -74,9 +82,9 @@ capabilities.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2544291"></a><h3>
|
||||
<a name="id2539786"></a><h3>
|
||||
<a name="GIMP-MICRO-VERSION:CAPS"></a>GIMP_MICRO_VERSION</h3>
|
||||
<a class="indexterm" name="id2544301"></a><pre class="programlisting">#define GIMP_MICRO_VERSION (11)
|
||||
<a class="indexterm" name="id2539798"></a><pre class="programlisting">#define GIMP_MICRO_VERSION (13)
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -84,9 +92,9 @@ capabilities.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2544317"></a><h3>
|
||||
<a name="id2539815"></a><h3>
|
||||
<a name="GIMP-VERSION:CAPS"></a>GIMP_VERSION</h3>
|
||||
<a class="indexterm" name="id2544327"></a><pre class="programlisting">#define GIMP_VERSION "2.2.11"
|
||||
<a class="indexterm" name="id2539827"></a><pre class="programlisting">#define GIMP_VERSION "2.2.13"
|
||||
</pre>
|
||||
<p>
|
||||
|
||||
@ -94,9 +102,9 @@ capabilities.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2544344"></a><h3>
|
||||
<a name="id2545398"></a><h3>
|
||||
<a name="GIMP-API-VERSION:CAPS"></a>GIMP_API_VERSION</h3>
|
||||
<a class="indexterm" name="id2544353"></a><pre class="programlisting">#define GIMP_API_VERSION "2.0"
|
||||
<a class="indexterm" name="id2545410"></a><pre class="programlisting">#define GIMP_API_VERSION "2.0"
|
||||
</pre>
|
||||
<p>
|
||||
Since: GIMP 2.2
|
||||
@ -104,9 +112,9 @@ Since: GIMP 2.2
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2544370"></a><h3>
|
||||
<a name="id2545426"></a><h3>
|
||||
<a name="GIMP-CHECK-VERSION:CAPS"></a>GIMP_CHECK_VERSION()</h3>
|
||||
<a class="indexterm" name="id2544379"></a><pre class="programlisting">#define GIMP_CHECK_VERSION(major, minor, micro)</pre>
|
||||
<a class="indexterm" name="id2545438"></a><pre class="programlisting">#define GIMP_CHECK_VERSION(major, minor, micro)</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -138,9 +146,5 @@ Since: GIMP 2.2
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase-gimpbasetypes.html"><b><< gimpbasetypes</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimplimits.html"><b>gimplimits >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -6,22 +7,30 @@
|
||||
<link rel="start" href="index.html" title="GIMP Base Library Reference Manual">
|
||||
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
<link rel="prev" href="libgimpbase-gimpprotocol.html" title="gimpprotocol">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
||||
<tr valign="middle">
|
||||
<td><a accesskey="p" href="libgimpbase-gimpprotocol.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="u" href="libgimpbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
</tr></table>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2574773" class="shortcut">Top</a>
|
||||
 | 
|
||||
<a href="#id2575161" class="shortcut">Description</a></nobr></td></tr>
|
||||
</table>
|
||||
<div class="refentry" lang="en">
|
||||
<a name="libgimpbase-gimpwire"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle">gimpwire</span></h2>
|
||||
<h2>
|
||||
<a name="id2574773"></a><span class="refentrytitle">gimpwire</span>
|
||||
</h2>
|
||||
<p>gimpwire — The lowlevel I/O protocol used for communication between GIMP and
|
||||
it's plug-ins.</p>
|
||||
</td>
|
||||
@ -116,7 +125,7 @@ gboolean <a href="libgimpbase-gimpwire.html#wire-write-string">wire_write_str
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2564316"></a><h2>Description</h2>
|
||||
<a name="id2575161"></a><h2>Description</h2>
|
||||
<p>
|
||||
The lowlevel I/O protocol used for communication between GIMP and
|
||||
it's plug-ins.
|
||||
@ -124,11 +133,11 @@ it's plug-ins.
|
||||
</p>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2564328"></a><h2>Details</h2>
|
||||
<a name="id2581608"></a><h2>Details</h2>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2564334"></a><h3>
|
||||
<a name="id2581618"></a><h3>
|
||||
<a name="WireMessage"></a>WireMessage</h3>
|
||||
<a class="indexterm" name="id2573473"></a><pre class="programlisting">typedef struct {
|
||||
<a class="indexterm" name="id2581628"></a><pre class="programlisting">typedef struct {
|
||||
guint32 type;
|
||||
gpointer data;
|
||||
} WireMessage;
|
||||
@ -139,9 +148,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2573486"></a><h3>
|
||||
<a name="id2581642"></a><h3>
|
||||
<a name="WireReadFunc"></a>WireReadFunc ()</h3>
|
||||
<a class="indexterm" name="id2573495"></a><pre class="programlisting">void (*WireReadFunc) (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2581652"></a><pre class="programlisting">void (*WireReadFunc) (GIOChannel *channel,
|
||||
<a href="libgimpbase-gimpwire.html#WireMessage">WireMessage</a> *msg,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
@ -175,9 +184,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2573572"></a><h3>
|
||||
<a name="id2581730"></a><h3>
|
||||
<a name="WireWriteFunc"></a>WireWriteFunc ()</h3>
|
||||
<a class="indexterm" name="id2573581"></a><pre class="programlisting">void (*WireWriteFunc) (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2581740"></a><pre class="programlisting">void (*WireWriteFunc) (GIOChannel *channel,
|
||||
<a href="libgimpbase-gimpwire.html#WireMessage">WireMessage</a> *msg,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
@ -211,9 +220,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2573663"></a><h3>
|
||||
<a name="id2581827"></a><h3>
|
||||
<a name="WireDestroyFunc"></a>WireDestroyFunc ()</h3>
|
||||
<a class="indexterm" name="id2573674"></a><pre class="programlisting">void (*WireDestroyFunc) (<a href="libgimpbase-gimpwire.html#WireMessage">WireMessage</a> *msg);</pre>
|
||||
<a class="indexterm" name="id2581839"></a><pre class="programlisting">void (*WireDestroyFunc) (<a href="libgimpbase-gimpwire.html#WireMessage">WireMessage</a> *msg);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -231,9 +240,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2573719"></a><h3>
|
||||
<a name="id2581884"></a><h3>
|
||||
<a name="WireIOFunc"></a>WireIOFunc ()</h3>
|
||||
<a class="indexterm" name="id2573729"></a><pre class="programlisting">gboolean (*WireIOFunc) (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2581897"></a><pre class="programlisting">gboolean (*WireIOFunc) (GIOChannel *channel,
|
||||
guint8 *buf,
|
||||
gulong count,
|
||||
gpointer user_data);</pre>
|
||||
@ -280,9 +289,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2573849"></a><h3>
|
||||
<a name="id2582016"></a><h3>
|
||||
<a name="WireFlushFunc"></a>WireFlushFunc ()</h3>
|
||||
<a class="indexterm" name="id2573859"></a><pre class="programlisting">gboolean (*WireFlushFunc) (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2582029"></a><pre class="programlisting">gboolean (*WireFlushFunc) (GIOChannel *channel,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
|
||||
@ -315,9 +324,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2573937"></a><h3>
|
||||
<a name="id2582106"></a><h3>
|
||||
<a name="wire-register"></a>wire_register ()</h3>
|
||||
<a class="indexterm" name="id2573947"></a><pre class="programlisting">void wire_register (guint32 type,
|
||||
<a class="indexterm" name="id2582119"></a><pre class="programlisting">void wire_register (guint32 type,
|
||||
<a href="libgimpbase-gimpwire.html#WireReadFunc">WireReadFunc</a> read_func,
|
||||
<a href="libgimpbase-gimpwire.html#WireWriteFunc">WireWriteFunc</a> write_func,
|
||||
<a href="libgimpbase-gimpwire.html#WireDestroyFunc">WireDestroyFunc</a> destroy_func);</pre>
|
||||
@ -358,9 +367,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2574057"></a><h3>
|
||||
<a name="id2582229"></a><h3>
|
||||
<a name="wire-set-reader"></a>wire_set_reader ()</h3>
|
||||
<a class="indexterm" name="id2574067"></a><pre class="programlisting">void wire_set_reader (<a href="libgimpbase-gimpwire.html#WireIOFunc">WireIOFunc</a> read_func);</pre>
|
||||
<a class="indexterm" name="id2582241"></a><pre class="programlisting">void wire_set_reader (<a href="libgimpbase-gimpwire.html#WireIOFunc">WireIOFunc</a> read_func);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -378,9 +387,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2574113"></a><h3>
|
||||
<a name="id2582287"></a><h3>
|
||||
<a name="wire-set-writer"></a>wire_set_writer ()</h3>
|
||||
<a class="indexterm" name="id2574123"></a><pre class="programlisting">void wire_set_writer (<a href="libgimpbase-gimpwire.html#WireIOFunc">WireIOFunc</a> write_func);</pre>
|
||||
<a class="indexterm" name="id2582300"></a><pre class="programlisting">void wire_set_writer (<a href="libgimpbase-gimpwire.html#WireIOFunc">WireIOFunc</a> write_func);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -398,9 +407,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2574169"></a><h3>
|
||||
<a name="id2582346"></a><h3>
|
||||
<a name="wire-set-flusher"></a>wire_set_flusher ()</h3>
|
||||
<a class="indexterm" name="id2574180"></a><pre class="programlisting">void wire_set_flusher (<a href="libgimpbase-gimpwire.html#WireFlushFunc">WireFlushFunc</a> flush_func);</pre>
|
||||
<a class="indexterm" name="id2582358"></a><pre class="programlisting">void wire_set_flusher (<a href="libgimpbase-gimpwire.html#WireFlushFunc">WireFlushFunc</a> flush_func);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -418,9 +427,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2574226"></a><h3>
|
||||
<a name="id2548461"></a><h3>
|
||||
<a name="wire-read"></a>wire_read ()</h3>
|
||||
<a class="indexterm" name="id2574236"></a><pre class="programlisting">gboolean wire_read (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2540191"></a><pre class="programlisting">gboolean wire_read (GIOChannel *channel,
|
||||
guint8 *buf,
|
||||
gsize count,
|
||||
gpointer user_data);</pre>
|
||||
@ -467,9 +476,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2574355"></a><h3>
|
||||
<a name="id2582496"></a><h3>
|
||||
<a name="wire-write"></a>wire_write ()</h3>
|
||||
<a class="indexterm" name="id2574365"></a><pre class="programlisting">gboolean wire_write (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2582506"></a><pre class="programlisting">gboolean wire_write (GIOChannel *channel,
|
||||
guint8 *buf,
|
||||
gsize count,
|
||||
gpointer user_data);</pre>
|
||||
@ -516,9 +525,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2544633"></a><h3>
|
||||
<a name="id2582613"></a><h3>
|
||||
<a name="wire-flush"></a>wire_flush ()</h3>
|
||||
<a class="indexterm" name="id2574472"></a><pre class="programlisting">gboolean wire_flush (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2582624"></a><pre class="programlisting">gboolean wire_flush (GIOChannel *channel,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
|
||||
@ -551,9 +560,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2574541"></a><h3>
|
||||
<a name="id2582693"></a><h3>
|
||||
<a name="wire-error"></a>wire_error ()</h3>
|
||||
<a class="indexterm" name="id2574549"></a><pre class="programlisting">gboolean wire_error (void);</pre>
|
||||
<a class="indexterm" name="id2582703"></a><pre class="programlisting">gboolean wire_error (void);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -571,18 +580,18 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2574581"></a><h3>
|
||||
<a name="id2582735"></a><h3>
|
||||
<a name="wire-clear-error"></a>wire_clear_error ()</h3>
|
||||
<a class="indexterm" name="id2574590"></a><pre class="programlisting">void wire_clear_error (void);</pre>
|
||||
<a class="indexterm" name="id2582746"></a><pre class="programlisting">void wire_clear_error (void);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2574608"></a><h3>
|
||||
<a name="id2582764"></a><h3>
|
||||
<a name="wire-read-msg"></a>wire_read_msg ()</h3>
|
||||
<a class="indexterm" name="id2574617"></a><pre class="programlisting">gboolean wire_read_msg (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2582775"></a><pre class="programlisting">gboolean wire_read_msg (GIOChannel *channel,
|
||||
<a href="libgimpbase-gimpwire.html#WireMessage">WireMessage</a> *msg,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
@ -622,9 +631,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2574705"></a><h3>
|
||||
<a name="id2582863"></a><h3>
|
||||
<a name="wire-write-msg"></a>wire_write_msg ()</h3>
|
||||
<a class="indexterm" name="id2574713"></a><pre class="programlisting">gboolean wire_write_msg (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2582873"></a><pre class="programlisting">gboolean wire_write_msg (GIOChannel *channel,
|
||||
<a href="libgimpbase-gimpwire.html#WireMessage">WireMessage</a> *msg,
|
||||
gpointer user_data);</pre>
|
||||
<p>
|
||||
@ -664,9 +673,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2574801"></a><h3>
|
||||
<a name="id2582961"></a><h3>
|
||||
<a name="wire-destroy"></a>wire_destroy ()</h3>
|
||||
<a class="indexterm" name="id2574810"></a><pre class="programlisting">void wire_destroy (<a href="libgimpbase-gimpwire.html#WireMessage">WireMessage</a> *msg);</pre>
|
||||
<a class="indexterm" name="id2582972"></a><pre class="programlisting">void wire_destroy (<a href="libgimpbase-gimpwire.html#WireMessage">WireMessage</a> *msg);</pre>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
@ -684,9 +693,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2574850"></a><h3>
|
||||
<a name="id2583012"></a><h3>
|
||||
<a name="wire-read-int32"></a>wire_read_int32 ()</h3>
|
||||
<a class="indexterm" name="id2574859"></a><pre class="programlisting">gboolean wire_read_int32 (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2583022"></a><pre class="programlisting">gboolean wire_read_int32 (GIOChannel *channel,
|
||||
guint32 *data,
|
||||
gint count,
|
||||
gpointer user_data);</pre>
|
||||
@ -733,9 +742,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2574966"></a><h3>
|
||||
<a name="id2583129"></a><h3>
|
||||
<a name="wire-read-int16"></a>wire_read_int16 ()</h3>
|
||||
<a class="indexterm" name="id2574974"></a><pre class="programlisting">gboolean wire_read_int16 (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2583140"></a><pre class="programlisting">gboolean wire_read_int16 (GIOChannel *channel,
|
||||
guint16 *data,
|
||||
gint count,
|
||||
gpointer user_data);</pre>
|
||||
@ -782,9 +791,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2575081"></a><h3>
|
||||
<a name="id2583247"></a><h3>
|
||||
<a name="wire-read-int8"></a>wire_read_int8 ()</h3>
|
||||
<a class="indexterm" name="id2575089"></a><pre class="programlisting">gboolean wire_read_int8 (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2583257"></a><pre class="programlisting">gboolean wire_read_int8 (GIOChannel *channel,
|
||||
guint8 *data,
|
||||
gint count,
|
||||
gpointer user_data);</pre>
|
||||
@ -831,9 +840,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2575196"></a><h3>
|
||||
<a name="id2583364"></a><h3>
|
||||
<a name="wire-read-double"></a>wire_read_double ()</h3>
|
||||
<a class="indexterm" name="id2575205"></a><pre class="programlisting">gboolean wire_read_double (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2583374"></a><pre class="programlisting">gboolean wire_read_double (GIOChannel *channel,
|
||||
gdouble *data,
|
||||
gint count,
|
||||
gpointer user_data);</pre>
|
||||
@ -880,9 +889,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2575312"></a><h3>
|
||||
<a name="id2583481"></a><h3>
|
||||
<a name="wire-read-string"></a>wire_read_string ()</h3>
|
||||
<a class="indexterm" name="id2575320"></a><pre class="programlisting">gboolean wire_read_string (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2583492"></a><pre class="programlisting">gboolean wire_read_string (GIOChannel *channel,
|
||||
gchar **data,
|
||||
gint count,
|
||||
gpointer user_data);</pre>
|
||||
@ -929,9 +938,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2575427"></a><h3>
|
||||
<a name="id2583599"></a><h3>
|
||||
<a name="wire-write-int32"></a>wire_write_int32 ()</h3>
|
||||
<a class="indexterm" name="id2575435"></a><pre class="programlisting">gboolean wire_write_int32 (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2583609"></a><pre class="programlisting">gboolean wire_write_int32 (GIOChannel *channel,
|
||||
guint32 *data,
|
||||
gint count,
|
||||
gpointer user_data);</pre>
|
||||
@ -978,9 +987,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2575542"></a><h3>
|
||||
<a name="id2583716"></a><h3>
|
||||
<a name="wire-write-int16"></a>wire_write_int16 ()</h3>
|
||||
<a class="indexterm" name="id2575551"></a><pre class="programlisting">gboolean wire_write_int16 (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2583726"></a><pre class="programlisting">gboolean wire_write_int16 (GIOChannel *channel,
|
||||
guint16 *data,
|
||||
gint count,
|
||||
gpointer user_data);</pre>
|
||||
@ -1027,9 +1036,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2575658"></a><h3>
|
||||
<a name="id2583833"></a><h3>
|
||||
<a name="wire-write-int8"></a>wire_write_int8 ()</h3>
|
||||
<a class="indexterm" name="id2575666"></a><pre class="programlisting">gboolean wire_write_int8 (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2583844"></a><pre class="programlisting">gboolean wire_write_int8 (GIOChannel *channel,
|
||||
guint8 *data,
|
||||
gint count,
|
||||
gpointer user_data);</pre>
|
||||
@ -1076,9 +1085,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2575773"></a><h3>
|
||||
<a name="id2583951"></a><h3>
|
||||
<a name="wire-write-double"></a>wire_write_double ()</h3>
|
||||
<a class="indexterm" name="id2575781"></a><pre class="programlisting">gboolean wire_write_double (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2583961"></a><pre class="programlisting">gboolean wire_write_double (GIOChannel *channel,
|
||||
gdouble *data,
|
||||
gint count,
|
||||
gpointer user_data);</pre>
|
||||
@ -1125,9 +1134,9 @@ it's plug-ins.
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2" lang="en">
|
||||
<a name="id2575888"></a><h3>
|
||||
<a name="id2584068"></a><h3>
|
||||
<a name="wire-write-string"></a>wire_write_string ()</h3>
|
||||
<a class="indexterm" name="id2575897"></a><pre class="programlisting">gboolean wire_write_string (GIOChannel *channel,
|
||||
<a class="indexterm" name="id2584078"></a><pre class="programlisting">gboolean wire_write_string (GIOChannel *channel,
|
||||
gchar **data,
|
||||
gint count,
|
||||
gpointer user_data);</pre>
|
||||
@ -1174,15 +1183,11 @@ it's plug-ins.
|
||||
</div>
|
||||
</div>
|
||||
<div class="refsect1" lang="en">
|
||||
<a name="id2576005"></a><h2>See Also</h2>
|
||||
<a name="id2584186"></a><h2>See Also</h2>
|
||||
<p>
|
||||
<span class="type">libgimp-gimpprotocol</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="libgimpbase-gimpprotocol.html"><b><< gimpprotocol</b></a></td>
|
||||
<td align="right"></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
|
||||
<book xmlns="http://www.devhelp.net/book" title="GIMP Base Library Reference Manual" link="index.html" author="" name="libgimpbase">
|
||||
<chapters>
|
||||
<sub name="GIMP Base Library" link="libgimpbase.html">
|
||||
|
||||
187
devel-docs/libgimpbase/html/libgimpbase.devhelp2
Normal file
187
devel-docs/libgimpbase/html/libgimpbase.devhelp2
Normal file
@ -0,0 +1,187 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
|
||||
<book xmlns="http://www.devhelp.net/book" title="GIMP Base Library Reference Manual" link="index.html" author="" name="libgimpbase" version="2">
|
||||
<chapters>
|
||||
<sub name="GIMP Base Library" link="libgimpbase.html">
|
||||
<sub name="gimpbaseenums" link="libgimpbase-gimpbaseenums.html"/>
|
||||
<sub name="gimpbasetypes" link="libgimpbase-gimpbasetypes.html"/>
|
||||
<sub name="gimpversion" link="libgimpbase-gimpversion.html"/>
|
||||
<sub name="gimplimits" link="libgimpbase-gimplimits.html"/>
|
||||
<sub name="gimpchecks" link="libgimpbase-gimpchecks.html"/>
|
||||
<sub name="gimpdatafiles" link="libgimpbase-gimpdatafiles.html"/>
|
||||
<sub name="gimpenv" link="libgimpbase-gimpenv.html"/>
|
||||
<sub name="gimpmemsize" link="libgimpbase-gimpmemsize.html"/>
|
||||
<sub name="gimpparasite" link="libgimpbase-gimpparasite.html"/>
|
||||
<sub name="gimpparasiteio" link="libgimpbase-gimpparasiteio.html"/>
|
||||
<sub name="gimpsignal" link="libgimpbase-gimpsignal.html"/>
|
||||
<sub name="gimpunit" link="libgimpbase-gimpunit.html"/>
|
||||
<sub name="gimputils" link="libgimpbase-gimputils.html"/>
|
||||
<sub name="gimpprotocol" link="libgimpbase-gimpprotocol.html"/>
|
||||
<sub name="gimpwire" link="libgimpbase-gimpwire.html"/>
|
||||
</sub>
|
||||
</chapters>
|
||||
<functions>
|
||||
<keyword type="enum" name="enum GimpCheckSize" link="libgimpbase-gimpbaseenums.html#GimpCheckSize"/>
|
||||
<keyword type="enum" name="enum GimpCheckType" link="libgimpbase-gimpbaseenums.html#GimpCheckType"/>
|
||||
<keyword type="enum" name="enum GimpImageBaseType" link="libgimpbase-gimpbaseenums.html#GimpImageBaseType"/>
|
||||
<keyword type="enum" name="enum GimpImageType" link="libgimpbase-gimpbaseenums.html#GimpImageType"/>
|
||||
<keyword type="enum" name="enum GimpMessageHandlerType" link="libgimpbase-gimpbaseenums.html#GimpMessageHandlerType"/>
|
||||
<keyword type="enum" name="enum GimpPDBArgType" link="libgimpbase-gimpbaseenums.html#GimpPDBArgType"/>
|
||||
<keyword type="enum" name="enum GimpPDBProcType" link="libgimpbase-gimpbaseenums.html#GimpPDBProcType"/>
|
||||
<keyword type="enum" name="enum GimpPDBStatusType" link="libgimpbase-gimpbaseenums.html#GimpPDBStatusType"/>
|
||||
<keyword type="enum" name="enum GimpProgressCommand" link="libgimpbase-gimpbaseenums.html#GimpProgressCommand"/>
|
||||
<keyword type="enum" name="enum GimpStackTraceMode" link="libgimpbase-gimpbaseenums.html#GimpStackTraceMode"/>
|
||||
<keyword type="struct" name="GimpEnumDesc" link="libgimpbase-gimpbasetypes.html#GimpEnumDesc"/>
|
||||
<keyword type="struct" name="GimpFlagsDesc" link="libgimpbase-gimpbasetypes.html#GimpFlagsDesc"/>
|
||||
<keyword type="function" name="gimp_type_set_translation_domain ()" link="libgimpbase-gimpbasetypes.html#gimp-type-set-translation-domain" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_type_get_translation_domain ()" link="libgimpbase-gimpbasetypes.html#gimp-type-get-translation-domain" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_enum_set_value_descriptions ()" link="libgimpbase-gimpbasetypes.html#gimp-enum-set-value-descriptions" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_enum_get_value_descriptions ()" link="libgimpbase-gimpbasetypes.html#gimp-enum-get-value-descriptions" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_flags_get_value_descriptions ()" link="libgimpbase-gimpbasetypes.html#gimp-flags-get-value-descriptions" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_flags_set_value_descriptions ()" link="libgimpbase-gimpbasetypes.html#gimp-flags-set-value-descriptions" since="GIMP 2.2"/>
|
||||
<keyword type="macro" name="GIMP_MAJOR_VERSION" link="libgimpbase-gimpversion.html#GIMP-MAJOR-VERSION:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_MINOR_VERSION" link="libgimpbase-gimpversion.html#GIMP-MINOR-VERSION:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_MICRO_VERSION" link="libgimpbase-gimpversion.html#GIMP-MICRO-VERSION:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_VERSION" link="libgimpbase-gimpversion.html#GIMP-VERSION:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_API_VERSION" link="libgimpbase-gimpversion.html#GIMP-API-VERSION:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_CHECK_VERSION()" link="libgimpbase-gimpversion.html#GIMP-CHECK-VERSION:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_MIN_IMAGE_SIZE" link="libgimpbase-gimplimits.html#GIMP-MIN-IMAGE-SIZE:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_MAX_IMAGE_SIZE" link="libgimpbase-gimplimits.html#GIMP-MAX-IMAGE-SIZE:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_MIN_RESOLUTION" link="libgimpbase-gimplimits.html#GIMP-MIN-RESOLUTION:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_MAX_RESOLUTION" link="libgimpbase-gimplimits.html#GIMP-MAX-RESOLUTION:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_MAX_MEMSIZE" link="libgimpbase-gimplimits.html#GIMP-MAX-MEMSIZE:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_CHECK_SIZE" link="libgimpbase-gimpchecks.html#GIMP-CHECK-SIZE:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_CHECK_SIZE_SM" link="libgimpbase-gimpchecks.html#GIMP-CHECK-SIZE-SM:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_CHECK_DARK" link="libgimpbase-gimpchecks.html#GIMP-CHECK-DARK:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_CHECK_LIGHT" link="libgimpbase-gimpchecks.html#GIMP-CHECK-LIGHT:CAPS"/>
|
||||
<keyword type="function" name="gimp_checks_get_shades ()" link="libgimpbase-gimpchecks.html#gimp-checks-get-shades" since="GIMP 2.2"/>
|
||||
<keyword type="struct" name="GimpDatafileData" link="libgimpbase-gimpdatafiles.html#GimpDatafileData"/>
|
||||
<keyword type="function" name="GimpDatafileLoaderFunc ()" link="libgimpbase-gimpdatafiles.html#GimpDatafileLoaderFunc"/>
|
||||
<keyword type="function" name="gimp_datafiles_check_extension ()" link="libgimpbase-gimpdatafiles.html#gimp-datafiles-check-extension"/>
|
||||
<keyword type="function" name="gimp_datafiles_read_directories ()" link="libgimpbase-gimpdatafiles.html#gimp-datafiles-read-directories"/>
|
||||
<keyword type="function" name="gimp_directory ()" link="libgimpbase-gimpenv.html#gimp-directory"/>
|
||||
<keyword type="function" name="gimp_personal_rc_file ()" link="libgimpbase-gimpenv.html#gimp-personal-rc-file"/>
|
||||
<keyword type="function" name="gimp_data_directory ()" link="libgimpbase-gimpenv.html#gimp-data-directory"/>
|
||||
<keyword type="function" name="gimp_locale_directory ()" link="libgimpbase-gimpenv.html#gimp-locale-directory"/>
|
||||
<keyword type="function" name="gimp_plug_in_directory ()" link="libgimpbase-gimpenv.html#gimp-plug-in-directory"/>
|
||||
<keyword type="function" name="gimp_sysconf_directory ()" link="libgimpbase-gimpenv.html#gimp-sysconf-directory"/>
|
||||
<keyword type="function" name="gimp_gtkrc ()" link="libgimpbase-gimpenv.html#gimp-gtkrc"/>
|
||||
<keyword type="function" name="gimp_path_parse ()" link="libgimpbase-gimpenv.html#gimp-path-parse"/>
|
||||
<keyword type="function" name="gimp_path_to_str ()" link="libgimpbase-gimpenv.html#gimp-path-to-str"/>
|
||||
<keyword type="function" name="gimp_path_free ()" link="libgimpbase-gimpenv.html#gimp-path-free"/>
|
||||
<keyword type="function" name="gimp_path_get_user_writable_dir ()" link="libgimpbase-gimpenv.html#gimp-path-get-user-writable-dir"/>
|
||||
<keyword type="function" name="gimp_memsize_serialize ()" link="libgimpbase-gimpmemsize.html#gimp-memsize-serialize" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_memsize_deserialize ()" link="libgimpbase-gimpmemsize.html#gimp-memsize-deserialize" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_memsize_to_string ()" link="libgimpbase-gimpmemsize.html#gimp-memsize-to-string"/>
|
||||
<keyword type="macro" name="GIMP_TYPE_MEMSIZE" link="libgimpbase-gimpmemsize.html#GIMP-TYPE-MEMSIZE:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_VALUE_HOLDS_MEMSIZE()" link="libgimpbase-gimpmemsize.html#GIMP-VALUE-HOLDS-MEMSIZE:CAPS"/>
|
||||
<keyword type="struct" name="GimpParasite" link="libgimpbase-gimpparasite.html#GimpParasite"/>
|
||||
<keyword type="function" name="gimp_parasite_new ()" link="libgimpbase-gimpparasite.html#gimp-parasite-new"/>
|
||||
<keyword type="function" name="gimp_parasite_free ()" link="libgimpbase-gimpparasite.html#gimp-parasite-free"/>
|
||||
<keyword type="function" name="gimp_parasite_copy ()" link="libgimpbase-gimpparasite.html#gimp-parasite-copy"/>
|
||||
<keyword type="function" name="gimp_parasite_compare ()" link="libgimpbase-gimpparasite.html#gimp-parasite-compare"/>
|
||||
<keyword type="function" name="gimp_parasite_is_type ()" link="libgimpbase-gimpparasite.html#gimp-parasite-is-type"/>
|
||||
<keyword type="function" name="gimp_parasite_is_persistent ()" link="libgimpbase-gimpparasite.html#gimp-parasite-is-persistent"/>
|
||||
<keyword type="function" name="gimp_parasite_is_undoable ()" link="libgimpbase-gimpparasite.html#gimp-parasite-is-undoable"/>
|
||||
<keyword type="function" name="gimp_parasite_has_flag ()" link="libgimpbase-gimpparasite.html#gimp-parasite-has-flag"/>
|
||||
<keyword type="function" name="gimp_parasite_flags ()" link="libgimpbase-gimpparasite.html#gimp-parasite-flags"/>
|
||||
<keyword type="function" name="gimp_parasite_name ()" link="libgimpbase-gimpparasite.html#gimp-parasite-name"/>
|
||||
<keyword type="function" name="gimp_parasite_data ()" link="libgimpbase-gimpparasite.html#gimp-parasite-data"/>
|
||||
<keyword type="function" name="gimp_parasite_data_size ()" link="libgimpbase-gimpparasite.html#gimp-parasite-data-size"/>
|
||||
<keyword type="macro" name="GIMP_PARASITE_PERSISTENT" link="libgimpbase-gimpparasite.html#GIMP-PARASITE-PERSISTENT:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_PARASITE_UNDOABLE" link="libgimpbase-gimpparasite.html#GIMP-PARASITE-UNDOABLE:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_PARASITE_ATTACH_PARENT" link="libgimpbase-gimpparasite.html#GIMP-PARASITE-ATTACH-PARENT:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_PARASITE_PARENT_PERSISTENT" link="libgimpbase-gimpparasite.html#GIMP-PARASITE-PARENT-PERSISTENT:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_PARASITE_PARENT_UNDOABLE" link="libgimpbase-gimpparasite.html#GIMP-PARASITE-PARENT-UNDOABLE:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_PARASITE_ATTACH_GRANDPARENT" link="libgimpbase-gimpparasite.html#GIMP-PARASITE-ATTACH-GRANDPARENT:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_PARASITE_GRANDPARENT_PERSISTENT" link="libgimpbase-gimpparasite.html#GIMP-PARASITE-GRANDPARENT-PERSISTENT:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_PARASITE_GRANDPARENT_UNDOABLE" link="libgimpbase-gimpparasite.html#GIMP-PARASITE-GRANDPARENT-UNDOABLE:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_PIXPIPE_MAXDIM" link="libgimpbase-gimpparasiteio.html#GIMP-PIXPIPE-MAXDIM:CAPS"/>
|
||||
<keyword type="function" name="gimp_pixpipe_params_init ()" link="libgimpbase-gimpparasiteio.html#gimp-pixpipe-params-init"/>
|
||||
<keyword type="function" name="gimp_pixpipe_params_parse ()" link="libgimpbase-gimpparasiteio.html#gimp-pixpipe-params-parse"/>
|
||||
<keyword type="function" name="gimp_pixpipe_params_build ()" link="libgimpbase-gimpparasiteio.html#gimp-pixpipe-params-build"/>
|
||||
<keyword type="function" name="GimpSignalHandlerFunc ()" link="libgimpbase-gimpsignal.html#GimpSignalHandlerFunc"/>
|
||||
<keyword type="function" name="gimp_signal_private ()" link="libgimpbase-gimpsignal.html#gimp-signal-private"/>
|
||||
<keyword type="enum" name="enum GimpUnit" link="libgimpbase-gimpunit.html#GimpUnit"/>
|
||||
<keyword type="function" name="gimp_unit_get_number_of_units ()" link="libgimpbase-gimpunit.html#gimp-unit-get-number-of-units"/>
|
||||
<keyword type="function" name="gimp_unit_get_number_of_built_in_units ()" link="libgimpbase-gimpunit.html#gimp-unit-get-number-of-built-in-units"/>
|
||||
<keyword type="function" name="gimp_unit_new ()" link="libgimpbase-gimpunit.html#gimp-unit-new"/>
|
||||
<keyword type="function" name="gimp_unit_get_deletion_flag ()" link="libgimpbase-gimpunit.html#gimp-unit-get-deletion-flag"/>
|
||||
<keyword type="function" name="gimp_unit_set_deletion_flag ()" link="libgimpbase-gimpunit.html#gimp-unit-set-deletion-flag"/>
|
||||
<keyword type="function" name="gimp_unit_get_factor ()" link="libgimpbase-gimpunit.html#gimp-unit-get-factor"/>
|
||||
<keyword type="function" name="gimp_unit_get_digits ()" link="libgimpbase-gimpunit.html#gimp-unit-get-digits"/>
|
||||
<keyword type="function" name="gimp_unit_get_identifier ()" link="libgimpbase-gimpunit.html#gimp-unit-get-identifier"/>
|
||||
<keyword type="function" name="gimp_unit_get_symbol ()" link="libgimpbase-gimpunit.html#gimp-unit-get-symbol"/>
|
||||
<keyword type="function" name="gimp_unit_get_abbreviation ()" link="libgimpbase-gimpunit.html#gimp-unit-get-abbreviation"/>
|
||||
<keyword type="function" name="gimp_unit_get_singular ()" link="libgimpbase-gimpunit.html#gimp-unit-get-singular"/>
|
||||
<keyword type="function" name="gimp_unit_get_plural ()" link="libgimpbase-gimpunit.html#gimp-unit-get-plural"/>
|
||||
<keyword type="macro" name="GIMP_TYPE_UNIT" link="libgimpbase-gimpunit.html#GIMP-TYPE-UNIT:CAPS"/>
|
||||
<keyword type="macro" name="GIMP_VALUE_HOLDS_UNIT()" link="libgimpbase-gimpunit.html#GIMP-VALUE-HOLDS-UNIT:CAPS"/>
|
||||
<keyword type="function" name="gimp_any_to_utf8 ()" link="libgimpbase-gimputils.html#gimp-any-to-utf8"/>
|
||||
<keyword type="function" name="gimp_filename_to_utf8 ()" link="libgimpbase-gimputils.html#gimp-filename-to-utf8"/>
|
||||
<keyword type="function" name="gimp_utf8_strtrim ()" link="libgimpbase-gimputils.html#gimp-utf8-strtrim"/>
|
||||
<keyword type="function" name="gimp_escape_uline ()" link="libgimpbase-gimputils.html#gimp-escape-uline" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_strip_uline ()" link="libgimpbase-gimputils.html#gimp-strip-uline"/>
|
||||
<keyword type="function" name="gimp_enum_get_desc ()" link="libgimpbase-gimputils.html#gimp-enum-get-desc" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_enum_get_value ()" link="libgimpbase-gimputils.html#gimp-enum-get-value" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_enum_value_get_desc ()" link="libgimpbase-gimputils.html#gimp-enum-value-get-desc" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_enum_value_get_help ()" link="libgimpbase-gimputils.html#gimp-enum-value-get-help" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_flags_get_first_desc ()" link="libgimpbase-gimputils.html#gimp-flags-get-first-desc" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_flags_get_first_value ()" link="libgimpbase-gimputils.html#gimp-flags-get-first-value" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_flags_value_get_desc ()" link="libgimpbase-gimputils.html#gimp-flags-value-get-desc" since="GIMP 2.2"/>
|
||||
<keyword type="function" name="gimp_flags_value_get_help ()" link="libgimpbase-gimputils.html#gimp-flags-value-get-help" since="GIMP 2.2"/>
|
||||
<keyword type="macro" name="GIMP_PROTOCOL_VERSION" link="libgimpbase-gimpprotocol.html#GIMP-PROTOCOL-VERSION:CAPS"/>
|
||||
<keyword type="struct" name="GPConfig" link="libgimpbase-gimpprotocol.html#GPConfig"/>
|
||||
<keyword type="struct" name="GPTileReq" link="libgimpbase-gimpprotocol.html#GPTileReq"/>
|
||||
<keyword type="struct" name="GPTileAck" link="libgimpbase-gimpprotocol.html#GPTileAck"/>
|
||||
<keyword type="struct" name="GPTileData" link="libgimpbase-gimpprotocol.html#GPTileData"/>
|
||||
<keyword type="struct" name="GPParam" link="libgimpbase-gimpprotocol.html#GPParam"/>
|
||||
<keyword type="struct" name="GPParamDef" link="libgimpbase-gimpprotocol.html#GPParamDef"/>
|
||||
<keyword type="struct" name="GPProcRun" link="libgimpbase-gimpprotocol.html#GPProcRun"/>
|
||||
<keyword type="struct" name="GPProcReturn" link="libgimpbase-gimpprotocol.html#GPProcReturn"/>
|
||||
<keyword type="struct" name="GPProcInstall" link="libgimpbase-gimpprotocol.html#GPProcInstall"/>
|
||||
<keyword type="struct" name="GPProcUninstall" link="libgimpbase-gimpprotocol.html#GPProcUninstall"/>
|
||||
<keyword type="function" name="gp_init ()" link="libgimpbase-gimpprotocol.html#gp-init"/>
|
||||
<keyword type="function" name="gp_has_init_write ()" link="libgimpbase-gimpprotocol.html#gp-has-init-write"/>
|
||||
<keyword type="function" name="gp_quit_write ()" link="libgimpbase-gimpprotocol.html#gp-quit-write"/>
|
||||
<keyword type="function" name="gp_config_write ()" link="libgimpbase-gimpprotocol.html#gp-config-write"/>
|
||||
<keyword type="function" name="gp_tile_req_write ()" link="libgimpbase-gimpprotocol.html#gp-tile-req-write"/>
|
||||
<keyword type="function" name="gp_tile_ack_write ()" link="libgimpbase-gimpprotocol.html#gp-tile-ack-write"/>
|
||||
<keyword type="function" name="gp_tile_data_write ()" link="libgimpbase-gimpprotocol.html#gp-tile-data-write"/>
|
||||
<keyword type="function" name="gp_proc_run_write ()" link="libgimpbase-gimpprotocol.html#gp-proc-run-write"/>
|
||||
<keyword type="function" name="gp_proc_return_write ()" link="libgimpbase-gimpprotocol.html#gp-proc-return-write"/>
|
||||
<keyword type="function" name="gp_temp_proc_run_write ()" link="libgimpbase-gimpprotocol.html#gp-temp-proc-run-write"/>
|
||||
<keyword type="function" name="gp_temp_proc_return_write ()" link="libgimpbase-gimpprotocol.html#gp-temp-proc-return-write"/>
|
||||
<keyword type="function" name="gp_proc_install_write ()" link="libgimpbase-gimpprotocol.html#gp-proc-install-write"/>
|
||||
<keyword type="function" name="gp_proc_uninstall_write ()" link="libgimpbase-gimpprotocol.html#gp-proc-uninstall-write"/>
|
||||
<keyword type="function" name="gp_extension_ack_write ()" link="libgimpbase-gimpprotocol.html#gp-extension-ack-write"/>
|
||||
<keyword type="struct" name="WireMessage" link="libgimpbase-gimpwire.html#WireMessage"/>
|
||||
<keyword type="function" name="WireReadFunc ()" link="libgimpbase-gimpwire.html#WireReadFunc"/>
|
||||
<keyword type="function" name="WireWriteFunc ()" link="libgimpbase-gimpwire.html#WireWriteFunc"/>
|
||||
<keyword type="function" name="WireDestroyFunc ()" link="libgimpbase-gimpwire.html#WireDestroyFunc"/>
|
||||
<keyword type="function" name="WireIOFunc ()" link="libgimpbase-gimpwire.html#WireIOFunc"/>
|
||||
<keyword type="function" name="WireFlushFunc ()" link="libgimpbase-gimpwire.html#WireFlushFunc"/>
|
||||
<keyword type="function" name="wire_register ()" link="libgimpbase-gimpwire.html#wire-register"/>
|
||||
<keyword type="function" name="wire_set_reader ()" link="libgimpbase-gimpwire.html#wire-set-reader"/>
|
||||
<keyword type="function" name="wire_set_writer ()" link="libgimpbase-gimpwire.html#wire-set-writer"/>
|
||||
<keyword type="function" name="wire_set_flusher ()" link="libgimpbase-gimpwire.html#wire-set-flusher"/>
|
||||
<keyword type="function" name="wire_read ()" link="libgimpbase-gimpwire.html#wire-read"/>
|
||||
<keyword type="function" name="wire_write ()" link="libgimpbase-gimpwire.html#wire-write"/>
|
||||
<keyword type="function" name="wire_flush ()" link="libgimpbase-gimpwire.html#wire-flush"/>
|
||||
<keyword type="function" name="wire_error ()" link="libgimpbase-gimpwire.html#wire-error"/>
|
||||
<keyword type="function" name="wire_clear_error ()" link="libgimpbase-gimpwire.html#wire-clear-error"/>
|
||||
<keyword type="function" name="wire_read_msg ()" link="libgimpbase-gimpwire.html#wire-read-msg"/>
|
||||
<keyword type="function" name="wire_write_msg ()" link="libgimpbase-gimpwire.html#wire-write-msg"/>
|
||||
<keyword type="function" name="wire_destroy ()" link="libgimpbase-gimpwire.html#wire-destroy"/>
|
||||
<keyword type="function" name="wire_read_int32 ()" link="libgimpbase-gimpwire.html#wire-read-int32"/>
|
||||
<keyword type="function" name="wire_read_int16 ()" link="libgimpbase-gimpwire.html#wire-read-int16"/>
|
||||
<keyword type="function" name="wire_read_int8 ()" link="libgimpbase-gimpwire.html#wire-read-int8"/>
|
||||
<keyword type="function" name="wire_read_double ()" link="libgimpbase-gimpwire.html#wire-read-double"/>
|
||||
<keyword type="function" name="wire_read_string ()" link="libgimpbase-gimpwire.html#wire-read-string"/>
|
||||
<keyword type="function" name="wire_write_int32 ()" link="libgimpbase-gimpwire.html#wire-write-int32"/>
|
||||
<keyword type="function" name="wire_write_int16 ()" link="libgimpbase-gimpwire.html#wire-write-int16"/>
|
||||
<keyword type="function" name="wire_write_int8 ()" link="libgimpbase-gimpwire.html#wire-write-int8"/>
|
||||
<keyword type="function" name="wire_write_double ()" link="libgimpbase-gimpwire.html#wire-write-double"/>
|
||||
<keyword type="function" name="wire_write_string ()" link="libgimpbase-gimpwire.html#wire-write-string"/>
|
||||
</functions>
|
||||
</book>
|
||||
@ -1,3 +1,4 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
|
||||
@ -7,22 +8,19 @@
|
||||
<link rel="up" href="index.html" title="GIMP Base Library Reference Manual">
|
||||
<link rel="prev" href="index.html" title="GIMP Base Library Reference Manual">
|
||||
<link rel="next" href="libgimpbase-gimpbaseenums.html" title="gimpbaseenums">
|
||||
<meta name="generator" content="GTK-Doc V1.4 (XML mode)">
|
||||
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
<link rel="part" href="libgimpbase.html" title="Part I. GIMP Base Library">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
||||
<td><a accesskey="p" href="index.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
||||
<td> </td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
||||
<th width="100%" align="center">GIMP Base Library Reference Manual</th>
|
||||
<td><a accesskey="n" href="libgimpbase-gimpbaseenums.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
<div class="part" lang="en"><div class="titlepage"><div><div><h1 class="title">
|
||||
<a name="libgimpbase"></a>GIMP Base Library</h1></div></div></div></div>
|
||||
<table class="navigation" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
|
||||
<td align="left"><a accesskey="p" href="index.html"><b><< GIMP Base Library Reference Manual</b></a></td>
|
||||
<td align="right"><a accesskey="n" href="libgimpbase-gimpbaseenums.html"><b>gimpbaseenums >></b></a></td>
|
||||
</tr></table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -19,12 +19,22 @@
|
||||
{
|
||||
vertical-align: top;
|
||||
}
|
||||
table.navigation
|
||||
div a[name]
|
||||
{
|
||||
position: relative;
|
||||
top: -4.5em;
|
||||
}
|
||||
table.navigation#top
|
||||
{
|
||||
background: #ffeeee;
|
||||
border: solid 1px #ffaaaa;
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 0.5em;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 2em;
|
||||
z-index: 1;
|
||||
}
|
||||
.navigation a
|
||||
{
|
||||
@ -38,6 +48,18 @@ table.navigation
|
||||
{
|
||||
font-size: 200%;
|
||||
}
|
||||
td.shortcuts
|
||||
{
|
||||
color: #770000;
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
div.refentry, div.chapter, div.part, div.book, div.index, div.glossary, div.sect1
|
||||
{
|
||||
position: relative;
|
||||
top: 3em;
|
||||
z-index: 0;
|
||||
}
|
||||
div.refnamediv
|
||||
{
|
||||
margin-top: 2em;
|
||||
|
||||
@ -4,16 +4,19 @@
|
||||
|
||||
<refentry id="libgimpbase-gimpbaseenums">
|
||||
<refmeta>
|
||||
<refentrytitle>gimpbaseenums</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimpbaseenums</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimpbaseenums</refname><refpurpose>Basic GIMP enumeration data types.</refpurpose>
|
||||
<refname>gimpbaseenums</refname>
|
||||
<refpurpose>Basic GIMP enumeration data types.</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -41,17 +44,17 @@ enum <link linkend="GimpStackTraceMode">GimpStackTraceMode</link>;
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
Basic GIMP enumeration data types.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpCheckSize"/>enum GimpCheckSize</title>
|
||||
<title><anchor id="GimpCheckSize" role="enum"/>enum GimpCheckSize</title>
|
||||
<indexterm><primary>GimpCheckSize</primary></indexterm><programlisting>typedef enum /*< pdb-skip >*/
|
||||
{
|
||||
GIMP_CHECK_SIZE_SMALL_CHECKS = 0, /*< desc="Small" >*/
|
||||
@ -63,7 +66,7 @@ Basic GIMP enumeration data types.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpCheckType"/>enum GimpCheckType</title>
|
||||
<title><anchor id="GimpCheckType" role="enum"/>enum GimpCheckType</title>
|
||||
<indexterm><primary>GimpCheckType</primary></indexterm><programlisting>typedef enum /*< pdb-skip >*/
|
||||
{
|
||||
GIMP_CHECK_TYPE_LIGHT_CHECKS = 0, /*< desc="Light Checks" >*/
|
||||
@ -78,7 +81,7 @@ Basic GIMP enumeration data types.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpImageBaseType"/>enum GimpImageBaseType</title>
|
||||
<title><anchor id="GimpImageBaseType" role="enum"/>enum GimpImageBaseType</title>
|
||||
<indexterm><primary>GimpImageBaseType</primary></indexterm><programlisting>typedef enum
|
||||
{
|
||||
GIMP_RGB, /*< desc="RGB color" >*/
|
||||
@ -90,7 +93,7 @@ Basic GIMP enumeration data types.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpImageType"/>enum GimpImageType</title>
|
||||
<title><anchor id="GimpImageType" role="enum"/>enum GimpImageType</title>
|
||||
<indexterm><primary>GimpImageType</primary></indexterm><programlisting>typedef enum
|
||||
{
|
||||
GIMP_RGB_IMAGE, /*< desc="RGB" >*/
|
||||
@ -105,7 +108,7 @@ Basic GIMP enumeration data types.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpMessageHandlerType"/>enum GimpMessageHandlerType</title>
|
||||
<title><anchor id="GimpMessageHandlerType" role="enum"/>enum GimpMessageHandlerType</title>
|
||||
<indexterm><primary>GimpMessageHandlerType</primary></indexterm><programlisting>typedef enum
|
||||
{
|
||||
GIMP_MESSAGE_BOX,
|
||||
@ -117,7 +120,7 @@ Basic GIMP enumeration data types.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpPDBArgType"/>enum GimpPDBArgType</title>
|
||||
<title><anchor id="GimpPDBArgType" role="enum"/>enum GimpPDBArgType</title>
|
||||
<indexterm><primary>GimpPDBArgType</primary></indexterm><programlisting>typedef enum
|
||||
{
|
||||
GIMP_PDB_INT32,
|
||||
@ -149,7 +152,7 @@ Basic GIMP enumeration data types.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpPDBProcType"/>enum GimpPDBProcType</title>
|
||||
<title><anchor id="GimpPDBProcType" role="enum"/>enum GimpPDBProcType</title>
|
||||
<indexterm><primary>GimpPDBProcType</primary></indexterm><programlisting>typedef enum
|
||||
{
|
||||
GIMP_INTERNAL,
|
||||
@ -162,7 +165,7 @@ Basic GIMP enumeration data types.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpPDBStatusType"/>enum GimpPDBStatusType</title>
|
||||
<title><anchor id="GimpPDBStatusType" role="enum"/>enum GimpPDBStatusType</title>
|
||||
<indexterm><primary>GimpPDBStatusType</primary></indexterm><programlisting>typedef enum
|
||||
{
|
||||
GIMP_PDB_EXECUTION_ERROR,
|
||||
@ -176,7 +179,7 @@ Basic GIMP enumeration data types.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpProgressCommand"/>enum GimpProgressCommand</title>
|
||||
<title><anchor id="GimpProgressCommand" role="enum"/>enum GimpProgressCommand</title>
|
||||
<indexterm><primary>GimpProgressCommand</primary></indexterm><programlisting>typedef enum
|
||||
{
|
||||
GIMP_PROGRESS_COMMAND_START,
|
||||
@ -189,7 +192,7 @@ Basic GIMP enumeration data types.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpStackTraceMode"/>enum GimpStackTraceMode</title>
|
||||
<title><anchor id="GimpStackTraceMode" role="enum"/>enum GimpStackTraceMode</title>
|
||||
<indexterm><primary>GimpStackTraceMode</primary></indexterm><programlisting>typedef enum
|
||||
{
|
||||
GIMP_STACK_TRACE_NEVER,
|
||||
|
||||
@ -4,16 +4,19 @@
|
||||
|
||||
<refentry id="libgimpbase-gimpbasetypes">
|
||||
<refmeta>
|
||||
<refentrytitle>gimpbasetypes</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimpbasetypes</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimpbasetypes</refname><refpurpose>Translation between gettext translation domain identifier and GType.</refpurpose>
|
||||
<refname>gimpbasetypes</refname>
|
||||
<refpurpose>Translation between gettext translation domain identifier and GType.</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -47,17 +50,17 @@ const <link linkend="GimpFlagsDesc">GimpFlagsDesc</link>* <link linkend="gimp-fl
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
Translation between gettext translation domain identifier and GType.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpEnumDesc"/>GimpEnumDesc</title>
|
||||
<title><anchor id="GimpEnumDesc" role="struct"/>GimpEnumDesc</title>
|
||||
<indexterm><primary>GimpEnumDesc</primary></indexterm><programlisting>typedef struct {
|
||||
gint value;
|
||||
gchar *value_desc;
|
||||
@ -68,7 +71,7 @@ Translation between gettext translation domain identifier and GType.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpFlagsDesc"/>GimpFlagsDesc</title>
|
||||
<title><anchor id="GimpFlagsDesc" role="struct"/>GimpFlagsDesc</title>
|
||||
<indexterm><primary>GimpFlagsDesc</primary></indexterm><programlisting>typedef struct {
|
||||
guint value;
|
||||
gchar *value_desc;
|
||||
@ -79,7 +82,7 @@ Translation between gettext translation domain identifier and GType.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-type-set-translation-domain"/>gimp_type_set_translation_domain ()</title>
|
||||
<title><anchor id="gimp-type-set-translation-domain" role="function" condition="since:GIMP 2.2"/>gimp_type_set_translation_domain ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_type_set_translation_domain</primary></indexterm><programlisting><link linkend="void">void</link> gimp_type_set_translation_domain
|
||||
(<link linkend="GType">GType</link> type,
|
||||
const <link linkend="gchar">gchar</link> *domain);</programlisting>
|
||||
@ -95,12 +98,12 @@ names.</para>
|
||||
<listitem><simpara> a <link linkend="GType"><type>GType</type></link>
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><parameter>domain</parameter> :</term>
|
||||
<listitem><simpara> a constant string that identifies a translation domain or <literal>NULL</literal>
|
||||
<listitem><simpara> a constant string that identifies a translation domain or <link linkend="NULL:CAPS"><literal>NULL</literal></link>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-type-get-translation-domain"/>gimp_type_get_translation_domain ()</title>
|
||||
<title><anchor id="gimp-type-get-translation-domain" role="function" condition="since:GIMP 2.2"/>gimp_type_get_translation_domain ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_type_get_translation_domain</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_type_get_translation_domain
|
||||
(<link linkend="GType">GType</link> type);</programlisting>
|
||||
<para>
|
||||
@ -115,13 +118,13 @@ or <link linkend="gimp-enum-value-get-name"><function>gimp_enum_value_get_name()
|
||||
<listitem><simpara> a <link linkend="GType"><type>GType</type></link>
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><emphasis>Returns</emphasis> :</term><listitem><simpara> the translation domain associated with <parameter>type</parameter>
|
||||
or <literal>NULL</literal> if no domain was set
|
||||
or <link linkend="NULL:CAPS"><literal>NULL</literal></link> if no domain was set
|
||||
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-enum-set-value-descriptions"/>gimp_enum_set_value_descriptions ()</title>
|
||||
<title><anchor id="gimp-enum-set-value-descriptions" role="function" condition="since:GIMP 2.2"/>gimp_enum_set_value_descriptions ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_enum_set_value_descriptions</primary></indexterm><programlisting><link linkend="void">void</link> gimp_enum_set_value_descriptions
|
||||
(<link linkend="GType">GType</link> enum_type,
|
||||
const <link linkend="GimpEnumDesc">GimpEnumDesc</link> *descriptions);</programlisting>
|
||||
@ -135,12 +138,12 @@ and help texts for enum values.</para>
|
||||
<listitem><simpara> a <link linkend="GType"><type>GType</type></link>
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><parameter>descriptions</parameter> :</term>
|
||||
<listitem><simpara> a <literal>NULL</literal> terminated constant static array of <link linkend="GimpEnumDesc"><type>GimpEnumDesc</type></link>
|
||||
<listitem><simpara> a <link linkend="NULL:CAPS"><literal>NULL</literal></link> terminated constant static array of <link linkend="GimpEnumDesc"><type>GimpEnumDesc</type></link>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-enum-get-value-descriptions"/>gimp_enum_get_value_descriptions ()</title>
|
||||
<title><anchor id="gimp-enum-get-value-descriptions" role="function" condition="since:GIMP 2.2"/>gimp_enum_get_value_descriptions ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_enum_get_value_descriptions</primary></indexterm><programlisting>const <link linkend="GimpEnumDesc">GimpEnumDesc</link>* gimp_enum_get_value_descriptions
|
||||
(<link linkend="GType">GType</link> enum_type);</programlisting>
|
||||
<para>
|
||||
@ -152,13 +155,13 @@ and help texts for enum values.</para>
|
||||
<varlistentry><term><parameter>enum_type</parameter> :</term>
|
||||
<listitem><simpara> a <link linkend="GType"><type>GType</type></link>
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><emphasis>Returns</emphasis> :</term><listitem><simpara> a <literal>NULL</literal> terminated constant array of <link linkend="GimpEnumDesc"><type>GimpEnumDesc</type></link>
|
||||
<varlistentry><term><emphasis>Returns</emphasis> :</term><listitem><simpara> a <link linkend="NULL:CAPS"><literal>NULL</literal></link> terminated constant array of <link linkend="GimpEnumDesc"><type>GimpEnumDesc</type></link>
|
||||
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-flags-get-value-descriptions"/>gimp_flags_get_value_descriptions ()</title>
|
||||
<title><anchor id="gimp-flags-get-value-descriptions" role="function" condition="since:GIMP 2.2"/>gimp_flags_get_value_descriptions ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_flags_get_value_descriptions</primary></indexterm><programlisting>const <link linkend="GimpFlagsDesc">GimpFlagsDesc</link>* gimp_flags_get_value_descriptions
|
||||
(<link linkend="GType">GType</link> flags_type);</programlisting>
|
||||
<para>
|
||||
@ -170,13 +173,13 @@ and help texts for flags values.</para>
|
||||
<varlistentry><term><parameter>flags_type</parameter> :</term>
|
||||
<listitem><simpara> a <link linkend="GType"><type>GType</type></link>
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><emphasis>Returns</emphasis> :</term><listitem><simpara> a <literal>NULL</literal> terminated constant array of <link linkend="GimpFlagsDesc"><type>GimpFlagsDesc</type></link>
|
||||
<varlistentry><term><emphasis>Returns</emphasis> :</term><listitem><simpara> a <link linkend="NULL:CAPS"><literal>NULL</literal></link> terminated constant array of <link linkend="GimpFlagsDesc"><type>GimpFlagsDesc</type></link>
|
||||
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-flags-set-value-descriptions"/>gimp_flags_set_value_descriptions ()</title>
|
||||
<title><anchor id="gimp-flags-set-value-descriptions" role="function" condition="since:GIMP 2.2"/>gimp_flags_set_value_descriptions ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_flags_set_value_descriptions</primary></indexterm><programlisting><link linkend="void">void</link> gimp_flags_set_value_descriptions
|
||||
(<link linkend="GType">GType</link> flags_type,
|
||||
const <link linkend="GimpFlagsDesc">GimpFlagsDesc</link> *descriptions);</programlisting>
|
||||
@ -190,7 +193,7 @@ and help texts for flags values.</para>
|
||||
<listitem><simpara> a <link linkend="GType"><type>GType</type></link>
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><parameter>descriptions</parameter> :</term>
|
||||
<listitem><simpara> a <literal>NULL</literal> terminated constant static array of <link linkend="GimpFlagsDesc"><type>GimpFlagsDesc</type></link>
|
||||
<listitem><simpara> a <link linkend="NULL:CAPS"><literal>NULL</literal></link> terminated constant static array of <link linkend="GimpFlagsDesc"><type>GimpFlagsDesc</type></link>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
|
||||
@ -4,16 +4,19 @@
|
||||
|
||||
<refentry id="libgimpbase-gimpchecks">
|
||||
<refmeta>
|
||||
<refentrytitle>gimpchecks</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimpchecks</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimpchecks</refname><refpurpose>Constants and functions related to rendering checkerboards.</refpurpose>
|
||||
<refname>gimpchecks</refname>
|
||||
<refpurpose>Constants and functions related to rendering checkerboards.</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -37,17 +40,17 @@
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
Constants and functions related to rendering checkerboards.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-CHECK-SIZE:CAPS"/>GIMP_CHECK_SIZE</title>
|
||||
<title><anchor id="GIMP-CHECK-SIZE:CAPS" role="macro"/>GIMP_CHECK_SIZE</title>
|
||||
<indexterm><primary>GIMP_CHECK_SIZE</primary></indexterm><programlisting>#define GIMP_CHECK_SIZE 8
|
||||
</programlisting>
|
||||
<para>
|
||||
@ -56,28 +59,28 @@ core but GIMP plug-ins can't access the user preference and should use
|
||||
this constant instead.
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-CHECK-SIZE-SM:CAPS"/>GIMP_CHECK_SIZE_SM</title>
|
||||
<title><anchor id="GIMP-CHECK-SIZE-SM:CAPS" role="macro"/>GIMP_CHECK_SIZE_SM</title>
|
||||
<indexterm><primary>GIMP_CHECK_SIZE_SM</primary></indexterm><programlisting>#define GIMP_CHECK_SIZE_SM 4
|
||||
</programlisting>
|
||||
<para>
|
||||
The default small checkerboard size in pixels.
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-CHECK-DARK:CAPS"/>GIMP_CHECK_DARK</title>
|
||||
<title><anchor id="GIMP-CHECK-DARK:CAPS" role="macro"/>GIMP_CHECK_DARK</title>
|
||||
<indexterm><primary>GIMP_CHECK_DARK</primary></indexterm><programlisting>#define GIMP_CHECK_DARK 0.4
|
||||
</programlisting>
|
||||
<para>
|
||||
The dark gray value for the default checkerboard pattern.
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-CHECK-LIGHT:CAPS"/>GIMP_CHECK_LIGHT</title>
|
||||
<title><anchor id="GIMP-CHECK-LIGHT:CAPS" role="macro"/>GIMP_CHECK_LIGHT</title>
|
||||
<indexterm><primary>GIMP_CHECK_LIGHT</primary></indexterm><programlisting>#define GIMP_CHECK_LIGHT 0.6
|
||||
</programlisting>
|
||||
<para>
|
||||
The light gray value for the default checkerboard pattern.
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-checks-get-shades"/>gimp_checks_get_shades ()</title>
|
||||
<title><anchor id="gimp-checks-get-shades" role="function" condition="since:GIMP 2.2"/>gimp_checks_get_shades ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_checks_get_shades</primary></indexterm><programlisting><link linkend="void">void</link> gimp_checks_get_shades (<link linkend="GimpCheckType">GimpCheckType</link> type,
|
||||
<link linkend="guchar">guchar</link> *light,
|
||||
<link linkend="guchar">guchar</link> *dark);</programlisting>
|
||||
|
||||
@ -4,16 +4,19 @@
|
||||
|
||||
<refentry id="libgimpbase-gimpdatafiles">
|
||||
<refmeta>
|
||||
<refentrytitle>gimpdatafiles</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimpdatafiles</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimpdatafiles</refname><refpurpose>Functions to handle GIMP data files.</refpurpose>
|
||||
<refname>gimpdatafiles</refname>
|
||||
<refpurpose>Functions to handle GIMP data files.</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -39,17 +42,17 @@
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
Functions to handle GIMP data files.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpDatafileData"/>GimpDatafileData</title>
|
||||
<title><anchor id="GimpDatafileData" role="struct"/>GimpDatafileData</title>
|
||||
<indexterm><primary>GimpDatafileData</primary></indexterm><programlisting>typedef struct {
|
||||
const gchar *filename;
|
||||
const gchar *dirname;
|
||||
@ -64,7 +67,7 @@ Functions to handle GIMP data files.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpDatafileLoaderFunc"/>GimpDatafileLoaderFunc ()</title>
|
||||
<title><anchor id="GimpDatafileLoaderFunc" role="function"/>GimpDatafileLoaderFunc ()</title>
|
||||
<indexterm><primary>GimpDatafileLoaderFunc</primary></indexterm><programlisting><link linkend="void">void</link> (*GimpDatafileLoaderFunc) (const <link linkend="GimpDatafileData">GimpDatafileData</link> *file_data,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
<para>
|
||||
@ -80,7 +83,7 @@ Functions to handle GIMP data files.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-datafiles-check-extension"/>gimp_datafiles_check_extension ()</title>
|
||||
<title><anchor id="gimp-datafiles-check-extension" role="function"/>gimp_datafiles_check_extension ()</title>
|
||||
<indexterm><primary>gimp_datafiles_check_extension</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gimp_datafiles_check_extension (const <link linkend="gchar">gchar</link> *filename,
|
||||
const <link linkend="gchar">gchar</link> *extension);</programlisting>
|
||||
<para>
|
||||
@ -98,7 +101,7 @@ Functions to handle GIMP data files.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-datafiles-read-directories"/>gimp_datafiles_read_directories ()</title>
|
||||
<title><anchor id="gimp-datafiles-read-directories" role="function"/>gimp_datafiles_read_directories ()</title>
|
||||
<indexterm><primary>gimp_datafiles_read_directories</primary></indexterm><programlisting><link linkend="void">void</link> gimp_datafiles_read_directories (const <link linkend="gchar">gchar</link> *path_str,
|
||||
<link linkend="GFileTest">GFileTest</link> flags,
|
||||
<link linkend="GimpDatafileLoaderFunc">GimpDatafileLoaderFunc</link> loader_func,
|
||||
|
||||
@ -4,16 +4,19 @@
|
||||
|
||||
<refentry id="libgimpbase-gimpenv">
|
||||
<refmeta>
|
||||
<refentrytitle>gimpenv</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimpenv</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimpenv</refname><refpurpose>Functions to access the GIMP environment.</refpurpose>
|
||||
<refname>gimpenv</refname>
|
||||
<refpurpose>Functions to access the GIMP environment.</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -44,18 +47,18 @@ const <link linkend="gchar">gchar</link>* <link linkend="gimp-gtkrc">gimp_gtkrc<
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
A set of functions to find the locations of GIMP's data directories and
|
||||
configuration files.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-directory"/>gimp_directory ()</title>
|
||||
<title><anchor id="gimp-directory" role="function"/>gimp_directory ()</title>
|
||||
<indexterm><primary>gimp_directory</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_directory (void);</programlisting>
|
||||
<para>
|
||||
Returns the user-specific GIMP settings directory. If the
|
||||
@ -85,7 +88,7 @@ is on Windows).</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-personal-rc-file"/>gimp_personal_rc_file ()</title>
|
||||
<title><anchor id="gimp-personal-rc-file" role="function"/>gimp_personal_rc_file ()</title>
|
||||
<indexterm><primary>gimp_personal_rc_file</primary></indexterm><programlisting><link linkend="gchar">gchar</link>* gimp_personal_rc_file (const <link linkend="gchar">gchar</link> *basename);</programlisting>
|
||||
<para>
|
||||
Returns the name of a file in the user-specific GIMP settings directory.
|
||||
@ -105,7 +108,7 @@ is on Windows).</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-data-directory"/>gimp_data_directory ()</title>
|
||||
<title><anchor id="gimp-data-directory" role="function"/>gimp_data_directory ()</title>
|
||||
<indexterm><primary>gimp_data_directory</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_data_directory (void);</programlisting>
|
||||
<para>
|
||||
Returns the top directory for GIMP data. If the environment
|
||||
@ -126,7 +129,7 @@ is on Windows).</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-locale-directory"/>gimp_locale_directory ()</title>
|
||||
<title><anchor id="gimp-locale-directory" role="function"/>gimp_locale_directory ()</title>
|
||||
<indexterm><primary>gimp_locale_directory</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_locale_directory (void);</programlisting>
|
||||
<para>
|
||||
Returns the top directory for GIMP locale files. If the environment
|
||||
@ -147,7 +150,7 @@ is on Windows).</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-plug-in-directory"/>gimp_plug_in_directory ()</title>
|
||||
<title><anchor id="gimp-plug-in-directory" role="function"/>gimp_plug_in_directory ()</title>
|
||||
<indexterm><primary>gimp_plug_in_directory</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_plug_in_directory (void);</programlisting>
|
||||
<para>
|
||||
Returns the top directory for GIMP plug_ins and modules. If the
|
||||
@ -168,7 +171,7 @@ is on Windows).</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-sysconf-directory"/>gimp_sysconf_directory ()</title>
|
||||
<title><anchor id="gimp-sysconf-directory" role="function"/>gimp_sysconf_directory ()</title>
|
||||
<indexterm><primary>gimp_sysconf_directory</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_sysconf_directory (void);</programlisting>
|
||||
<para>
|
||||
Returns the top directory for GIMP config files. If the environment
|
||||
@ -189,7 +192,7 @@ is on Windows).</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-gtkrc"/>gimp_gtkrc ()</title>
|
||||
<title><anchor id="gimp-gtkrc" role="function"/>gimp_gtkrc ()</title>
|
||||
<indexterm><primary>gimp_gtkrc</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_gtkrc (void);</programlisting>
|
||||
<para>
|
||||
Returns the name of the GIMP's application-specific gtkrc file.
|
||||
@ -206,7 +209,7 @@ is on Windows).</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-path-parse"/>gimp_path_parse ()</title>
|
||||
<title><anchor id="gimp-path-parse" role="function"/>gimp_path_parse ()</title>
|
||||
<indexterm><primary>gimp_path_parse</primary></indexterm><programlisting><link linkend="GList">GList</link>* gimp_path_parse (const <link linkend="gchar">gchar</link> *path,
|
||||
<link linkend="gint">gint</link> max_paths,
|
||||
<link linkend="gboolean">gboolean</link> check,
|
||||
@ -223,7 +226,7 @@ is on Windows).</para>
|
||||
<listitem><simpara> The maximum number of directories to return.
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><parameter>check</parameter> :</term>
|
||||
<listitem><simpara> <literal>TRUE</literal> if you want the directories to be checked.
|
||||
<listitem><simpara> <link linkend="TRUE:CAPS"><literal>TRUE</literal></link> if you want the directories to be checked.
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><parameter>check_failed</parameter> :</term>
|
||||
<listitem><simpara> Returns a <link linkend="GList"><type>GList</type></link> of path elements for which the
|
||||
@ -233,7 +236,7 @@ is on Windows).</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-path-to-str"/>gimp_path_to_str ()</title>
|
||||
<title><anchor id="gimp-path-to-str" role="function"/>gimp_path_to_str ()</title>
|
||||
<indexterm><primary>gimp_path_to_str</primary></indexterm><programlisting><link linkend="gchar">gchar</link>* gimp_path_to_str (<link linkend="GList">GList</link> *path);</programlisting>
|
||||
<para>
|
||||
</para>
|
||||
@ -247,7 +250,7 @@ is on Windows).</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-path-free"/>gimp_path_free ()</title>
|
||||
<title><anchor id="gimp-path-free" role="function"/>gimp_path_free ()</title>
|
||||
<indexterm><primary>gimp_path_free</primary></indexterm><programlisting><link linkend="void">void</link> gimp_path_free (<link linkend="GList">GList</link> *path);</programlisting>
|
||||
<para>
|
||||
This function frees the memory allocated for the list and the strings
|
||||
@ -260,7 +263,7 @@ it contains.</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-path-get-user-writable-dir"/>gimp_path_get_user_writable_dir ()</title>
|
||||
<title><anchor id="gimp-path-get-user-writable-dir" role="function"/>gimp_path_get_user_writable_dir ()</title>
|
||||
<indexterm><primary>gimp_path_get_user_writable_dir</primary></indexterm><programlisting><link linkend="gchar">gchar</link>* gimp_path_get_user_writable_dir (<link linkend="GList">GList</link> *path);</programlisting>
|
||||
<para>
|
||||
Note that you have to <link linkend="g-free"><function>g_free()</function></link> the returned string.</para>
|
||||
|
||||
@ -4,16 +4,19 @@
|
||||
|
||||
<refentry id="libgimpbase-gimplimits">
|
||||
<refmeta>
|
||||
<refentrytitle>gimplimits</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimplimits</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimplimits</refname><refpurpose>Boundaries of some GIMP data types and some global constants.</refpurpose>
|
||||
<refname>gimplimits</refname>
|
||||
<refpurpose>Boundaries of some GIMP data types and some global constants.</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -35,25 +38,25 @@
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
Boundaries of some GIMP data types and some global constants.
|
||||
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-MIN-IMAGE-SIZE:CAPS"/>GIMP_MIN_IMAGE_SIZE</title>
|
||||
<title><anchor id="GIMP-MIN-IMAGE-SIZE:CAPS" role="macro"/>GIMP_MIN_IMAGE_SIZE</title>
|
||||
<indexterm><primary>GIMP_MIN_IMAGE_SIZE</primary></indexterm><programlisting>#define GIMP_MIN_IMAGE_SIZE 1
|
||||
</programlisting>
|
||||
<para>
|
||||
The minimum width and height of a GIMP image in pixels.
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-MAX-IMAGE-SIZE:CAPS"/>GIMP_MAX_IMAGE_SIZE</title>
|
||||
<title><anchor id="GIMP-MAX-IMAGE-SIZE:CAPS" role="macro"/>GIMP_MAX_IMAGE_SIZE</title>
|
||||
<indexterm><primary>GIMP_MAX_IMAGE_SIZE</primary></indexterm><programlisting>#define GIMP_MAX_IMAGE_SIZE 262144 /* 2^18 */
|
||||
</programlisting>
|
||||
<para>
|
||||
@ -62,7 +65,7 @@ somewhat arbitray value that can be used when an upper value for pixel
|
||||
sizes is needed; for example to give a spin button an upper limit.
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-MIN-RESOLUTION:CAPS"/>GIMP_MIN_RESOLUTION</title>
|
||||
<title><anchor id="GIMP-MIN-RESOLUTION:CAPS" role="macro"/>GIMP_MIN_RESOLUTION</title>
|
||||
<indexterm><primary>GIMP_MIN_RESOLUTION</primary></indexterm><programlisting>#define GIMP_MIN_RESOLUTION 5e-3 /* shouldn't display as 0.000 */
|
||||
</programlisting>
|
||||
<para>
|
||||
@ -72,7 +75,7 @@ resolution is needed. GIMP will not accept resolutions smaller than
|
||||
this value.
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-MAX-RESOLUTION:CAPS"/>GIMP_MAX_RESOLUTION</title>
|
||||
<title><anchor id="GIMP-MAX-RESOLUTION:CAPS" role="macro"/>GIMP_MAX_RESOLUTION</title>
|
||||
<indexterm><primary>GIMP_MAX_RESOLUTION</primary></indexterm><programlisting>#define GIMP_MAX_RESOLUTION 65536.0
|
||||
</programlisting>
|
||||
<para>
|
||||
@ -82,12 +85,12 @@ resolution is needed. GIMP will not accept resolutions larger than
|
||||
this value.
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-MAX-MEMSIZE:CAPS"/>GIMP_MAX_MEMSIZE</title>
|
||||
<title><anchor id="GIMP-MAX-MEMSIZE:CAPS" role="macro"/>GIMP_MAX_MEMSIZE</title>
|
||||
<indexterm><primary>GIMP_MAX_MEMSIZE</primary></indexterm><programlisting>#define GIMP_MAX_MEMSIZE ((guint64) 1 << 42) /* 4 terabyte;
|
||||
</programlisting>
|
||||
<para>
|
||||
A large but arbitrary value that can be used when an upper limit for a
|
||||
memory size (in bytes) is needed. It is smaller than <literal>G_MAXDOUBLE</literal> since
|
||||
memory size (in bytes) is needed. It is smaller than <link linkend="G-MAXDOUBLE:CAPS"><literal>G_MAXDOUBLE</literal></link> since
|
||||
the <link linkend="GimpMemsizeEntry"><type>GimpMemsizeEntry</type></link> doesn't handle larger values.
|
||||
</para></refsect2>
|
||||
|
||||
|
||||
@ -4,16 +4,19 @@
|
||||
|
||||
<refentry id="libgimpbase-gimpmemsize">
|
||||
<refmeta>
|
||||
<refentrytitle>gimpmemsize</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimpmemsize</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimpmemsize</refname><refpurpose>Functions to (de)serialize a given memory size.</refpurpose>
|
||||
<refname>gimpmemsize</refname>
|
||||
<refpurpose>Functions to (de)serialize a given memory size.</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -37,17 +40,17 @@
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
Functions to (de)serialize a given memory size.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-memsize-serialize"/>gimp_memsize_serialize ()</title>
|
||||
<title><anchor id="gimp-memsize-serialize" role="function" condition="since:GIMP 2.2"/>gimp_memsize_serialize ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_memsize_serialize</primary></indexterm><programlisting><link linkend="gchar">gchar</link>* gimp_memsize_serialize (<link linkend="guint64">guint64</link> memsize);</programlisting>
|
||||
<para>
|
||||
Creates a string representation of a given memory size. This string
|
||||
@ -66,7 +69,7 @@ nice human-readable string please use <link linkend="gimp-memsize-to-string"><fu
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-memsize-deserialize"/>gimp_memsize_deserialize ()</title>
|
||||
<title><anchor id="gimp-memsize-deserialize" role="function" condition="since:GIMP 2.2"/>gimp_memsize_deserialize ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_memsize_deserialize</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gimp_memsize_deserialize (const <link linkend="gchar">gchar</link> *string,
|
||||
<link linkend="guint64">guint64</link> *memsize);</programlisting>
|
||||
<para>
|
||||
@ -81,14 +84,14 @@ Parses a string representation of a memory size as returned by
|
||||
<varlistentry><term><parameter>memsize</parameter> :</term>
|
||||
<listitem><simpara> return location for memory size in bytes
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><emphasis>Returns</emphasis> :</term><listitem><simpara> <literal>TRUE</literal> if the <parameter>string</parameter> was successfully parsed and
|
||||
<parameter>memsize</parameter> has been set, <literal>FALSE</literal> otherwise.
|
||||
<varlistentry><term><emphasis>Returns</emphasis> :</term><listitem><simpara> <link linkend="TRUE:CAPS"><literal>TRUE</literal></link> if the <parameter>string</parameter> was successfully parsed and
|
||||
<parameter>memsize</parameter> has been set, <link linkend="FALSE:CAPS"><literal>FALSE</literal></link> otherwise.
|
||||
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-memsize-to-string"/>gimp_memsize_to_string ()</title>
|
||||
<title><anchor id="gimp-memsize-to-string" role="function"/>gimp_memsize_to_string ()</title>
|
||||
<indexterm><primary>gimp_memsize_to_string</primary></indexterm><programlisting><link linkend="gchar">gchar</link>* gimp_memsize_to_string (<link linkend="guint64">guint64</link> memsize);</programlisting>
|
||||
<para>
|
||||
This function returns a human readable, translated representation
|
||||
@ -105,14 +108,14 @@ becomes "4.4 KB" and so on.</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-TYPE-MEMSIZE:CAPS"/>GIMP_TYPE_MEMSIZE</title>
|
||||
<title><anchor id="GIMP-TYPE-MEMSIZE:CAPS" role="macro"/>GIMP_TYPE_MEMSIZE</title>
|
||||
<indexterm><primary>GIMP_TYPE_MEMSIZE</primary></indexterm><programlisting>#define GIMP_TYPE_MEMSIZE (gimp_memsize_get_type ())
|
||||
</programlisting>
|
||||
<para>
|
||||
<link linkend="GIMP-TYPE-MEMSIZE:CAPS"><type>GIMP_TYPE_MEMSIZE</type></link> is a <link linkend="GType"><type>GType</type></link> derived from <link linkend="G-TYPE-UINT64:CAPS"><type>G_TYPE_UINT64</type></link>.
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-VALUE-HOLDS-MEMSIZE:CAPS"/>GIMP_VALUE_HOLDS_MEMSIZE()</title>
|
||||
<title><anchor id="GIMP-VALUE-HOLDS-MEMSIZE:CAPS" role="macro"/>GIMP_VALUE_HOLDS_MEMSIZE()</title>
|
||||
<indexterm><primary>GIMP_VALUE_HOLDS_MEMSIZE</primary></indexterm><programlisting>#define GIMP_VALUE_HOLDS_MEMSIZE(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_MEMSIZE))
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
@ -4,16 +4,19 @@
|
||||
|
||||
<refentry id="libgimpbase-gimpparasite">
|
||||
<refmeta>
|
||||
<refentrytitle>gimpparasite</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimpparasite</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimpparasite</refname><refpurpose>Arbitrary pieces of data which can be attached to various GIMP objects.</refpurpose>
|
||||
<refname>gimpparasite</refname>
|
||||
<refpurpose>Arbitrary pieces of data which can be attached to various GIMP objects.</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -57,18 +60,18 @@ const <link linkend="gchar">gchar</link>* <link linkend="gimp-parasite-name">gim
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpParasite"/>GimpParasite</title>
|
||||
<title><anchor id="GimpParasite" role="struct"/>GimpParasite</title>
|
||||
<indexterm><primary>GimpParasite</primary></indexterm><programlisting>typedef struct {
|
||||
gchar *name; /* The name of the parasite. USE A UNIQUE PREFIX! */
|
||||
guint32 flags; /* save Parasite in XCF file, etc. */
|
||||
@ -81,7 +84,7 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-parasite-new"/>gimp_parasite_new ()</title>
|
||||
<title><anchor id="gimp-parasite-new" role="function"/>gimp_parasite_new ()</title>
|
||||
<indexterm><primary>gimp_parasite_new</primary></indexterm><programlisting><link linkend="GimpParasite">GimpParasite</link>* gimp_parasite_new (const <link linkend="gchar">gchar</link> *name,
|
||||
<link linkend="guint32">guint32</link> flags,
|
||||
<link linkend="guint32">guint32</link> size,
|
||||
@ -107,7 +110,7 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-parasite-free"/>gimp_parasite_free ()</title>
|
||||
<title><anchor id="gimp-parasite-free" role="function"/>gimp_parasite_free ()</title>
|
||||
<indexterm><primary>gimp_parasite_free</primary></indexterm><programlisting><link linkend="void">void</link> gimp_parasite_free (<link linkend="GimpParasite">GimpParasite</link> *parasite);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -119,7 +122,7 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-parasite-copy"/>gimp_parasite_copy ()</title>
|
||||
<title><anchor id="gimp-parasite-copy" role="function"/>gimp_parasite_copy ()</title>
|
||||
<indexterm><primary>gimp_parasite_copy</primary></indexterm><programlisting><link linkend="GimpParasite">GimpParasite</link>* gimp_parasite_copy (const <link linkend="GimpParasite">GimpParasite</link> *parasite);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -133,7 +136,7 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-parasite-compare"/>gimp_parasite_compare ()</title>
|
||||
<title><anchor id="gimp-parasite-compare" role="function"/>gimp_parasite_compare ()</title>
|
||||
<indexterm><primary>gimp_parasite_compare</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gimp_parasite_compare (const <link linkend="GimpParasite">GimpParasite</link> *a,
|
||||
const <link linkend="GimpParasite">GimpParasite</link> *b);</programlisting>
|
||||
<para>
|
||||
@ -151,7 +154,7 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-parasite-is-type"/>gimp_parasite_is_type ()</title>
|
||||
<title><anchor id="gimp-parasite-is-type" role="function"/>gimp_parasite_is_type ()</title>
|
||||
<indexterm><primary>gimp_parasite_is_type</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gimp_parasite_is_type (const <link linkend="GimpParasite">GimpParasite</link> *parasite,
|
||||
const <link linkend="gchar">gchar</link> *name);</programlisting>
|
||||
<para>
|
||||
@ -169,7 +172,7 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-parasite-is-persistent"/>gimp_parasite_is_persistent ()</title>
|
||||
<title><anchor id="gimp-parasite-is-persistent" role="function"/>gimp_parasite_is_persistent ()</title>
|
||||
<indexterm><primary>gimp_parasite_is_persistent</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gimp_parasite_is_persistent (const <link linkend="GimpParasite">GimpParasite</link> *parasite);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -183,7 +186,7 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-parasite-is-undoable"/>gimp_parasite_is_undoable ()</title>
|
||||
<title><anchor id="gimp-parasite-is-undoable" role="function"/>gimp_parasite_is_undoable ()</title>
|
||||
<indexterm><primary>gimp_parasite_is_undoable</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gimp_parasite_is_undoable (const <link linkend="GimpParasite">GimpParasite</link> *parasite);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -197,7 +200,7 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-parasite-has-flag"/>gimp_parasite_has_flag ()</title>
|
||||
<title><anchor id="gimp-parasite-has-flag" role="function"/>gimp_parasite_has_flag ()</title>
|
||||
<indexterm><primary>gimp_parasite_has_flag</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gimp_parasite_has_flag (const <link linkend="GimpParasite">GimpParasite</link> *parasite,
|
||||
<link linkend="gulong">gulong</link> flag);</programlisting>
|
||||
<para>
|
||||
@ -215,7 +218,7 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-parasite-flags"/>gimp_parasite_flags ()</title>
|
||||
<title><anchor id="gimp-parasite-flags" role="function"/>gimp_parasite_flags ()</title>
|
||||
<indexterm><primary>gimp_parasite_flags</primary></indexterm><programlisting><link linkend="gulong">gulong</link> gimp_parasite_flags (const <link linkend="GimpParasite">GimpParasite</link> *parasite);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -229,7 +232,7 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-parasite-name"/>gimp_parasite_name ()</title>
|
||||
<title><anchor id="gimp-parasite-name" role="function"/>gimp_parasite_name ()</title>
|
||||
<indexterm><primary>gimp_parasite_name</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_parasite_name (const <link linkend="GimpParasite">GimpParasite</link> *parasite);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -243,7 +246,7 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-parasite-data"/>gimp_parasite_data ()</title>
|
||||
<title><anchor id="gimp-parasite-data" role="function"/>gimp_parasite_data ()</title>
|
||||
<indexterm><primary>gimp_parasite_data</primary></indexterm><programlisting><link linkend="gconstpointer">gconstpointer</link> gimp_parasite_data (const <link linkend="GimpParasite">GimpParasite</link> *parasite);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -257,7 +260,7 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-parasite-data-size"/>gimp_parasite_data_size ()</title>
|
||||
<title><anchor id="gimp-parasite-data-size" role="function"/>gimp_parasite_data_size ()</title>
|
||||
<indexterm><primary>gimp_parasite_data_size</primary></indexterm><programlisting><link linkend="glong">glong</link> gimp_parasite_data_size (const <link linkend="GimpParasite">GimpParasite</link> *parasite);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -271,56 +274,56 @@ Arbitrary pieces of data which can be attached to various GIMP objects.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-PARASITE-PERSISTENT:CAPS"/>GIMP_PARASITE_PERSISTENT</title>
|
||||
<title><anchor id="GIMP-PARASITE-PERSISTENT:CAPS" role="macro"/>GIMP_PARASITE_PERSISTENT</title>
|
||||
<indexterm><primary>GIMP_PARASITE_PERSISTENT</primary></indexterm><programlisting>#define GIMP_PARASITE_PERSISTENT 1
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-PARASITE-UNDOABLE:CAPS"/>GIMP_PARASITE_UNDOABLE</title>
|
||||
<title><anchor id="GIMP-PARASITE-UNDOABLE:CAPS" role="macro"/>GIMP_PARASITE_UNDOABLE</title>
|
||||
<indexterm><primary>GIMP_PARASITE_UNDOABLE</primary></indexterm><programlisting>#define GIMP_PARASITE_UNDOABLE 2
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-PARASITE-ATTACH-PARENT:CAPS"/>GIMP_PARASITE_ATTACH_PARENT</title>
|
||||
<title><anchor id="GIMP-PARASITE-ATTACH-PARENT:CAPS" role="macro"/>GIMP_PARASITE_ATTACH_PARENT</title>
|
||||
<indexterm><primary>GIMP_PARASITE_ATTACH_PARENT</primary></indexterm><programlisting>#define GIMP_PARASITE_ATTACH_PARENT (0x80 << 8)
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-PARASITE-PARENT-PERSISTENT:CAPS"/>GIMP_PARASITE_PARENT_PERSISTENT</title>
|
||||
<title><anchor id="GIMP-PARASITE-PARENT-PERSISTENT:CAPS" role="macro"/>GIMP_PARASITE_PARENT_PERSISTENT</title>
|
||||
<indexterm><primary>GIMP_PARASITE_PARENT_PERSISTENT</primary></indexterm><programlisting>#define GIMP_PARASITE_PARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 8)
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-PARASITE-PARENT-UNDOABLE:CAPS"/>GIMP_PARASITE_PARENT_UNDOABLE</title>
|
||||
<title><anchor id="GIMP-PARASITE-PARENT-UNDOABLE:CAPS" role="macro"/>GIMP_PARASITE_PARENT_UNDOABLE</title>
|
||||
<indexterm><primary>GIMP_PARASITE_PARENT_UNDOABLE</primary></indexterm><programlisting>#define GIMP_PARASITE_PARENT_UNDOABLE (GIMP_PARASITE_UNDOABLE << 8)
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-PARASITE-ATTACH-GRANDPARENT:CAPS"/>GIMP_PARASITE_ATTACH_GRANDPARENT</title>
|
||||
<title><anchor id="GIMP-PARASITE-ATTACH-GRANDPARENT:CAPS" role="macro"/>GIMP_PARASITE_ATTACH_GRANDPARENT</title>
|
||||
<indexterm><primary>GIMP_PARASITE_ATTACH_GRANDPARENT</primary></indexterm><programlisting>#define GIMP_PARASITE_ATTACH_GRANDPARENT (0x80 << 16)
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-PARASITE-GRANDPARENT-PERSISTENT:CAPS"/>GIMP_PARASITE_GRANDPARENT_PERSISTENT</title>
|
||||
<title><anchor id="GIMP-PARASITE-GRANDPARENT-PERSISTENT:CAPS" role="macro"/>GIMP_PARASITE_GRANDPARENT_PERSISTENT</title>
|
||||
<indexterm><primary>GIMP_PARASITE_GRANDPARENT_PERSISTENT</primary></indexterm><programlisting>#define GIMP_PARASITE_GRANDPARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 16)
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-PARASITE-GRANDPARENT-UNDOABLE:CAPS"/>GIMP_PARASITE_GRANDPARENT_UNDOABLE</title>
|
||||
<title><anchor id="GIMP-PARASITE-GRANDPARENT-UNDOABLE:CAPS" role="macro"/>GIMP_PARASITE_GRANDPARENT_UNDOABLE</title>
|
||||
<indexterm><primary>GIMP_PARASITE_GRANDPARENT_UNDOABLE</primary></indexterm><programlisting>#define GIMP_PARASITE_GRANDPARENT_UNDOABLE (GIMP_PARASITE_UNDOABLE << 16)
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
@ -4,16 +4,19 @@
|
||||
|
||||
<refentry id="libgimpbase-gimpparasiteio">
|
||||
<refmeta>
|
||||
<refentrytitle>gimpparasiteio</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimpparasiteio</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimpparasiteio</refname><refpurpose>Utility functions to (de)serialize certain C structures to/from <link linkend="GimpParasite"><type>GimpParasite</type></link>'s.</refpurpose>
|
||||
<refname>gimpparasiteio</refname>
|
||||
<refpurpose>Utility functions to (de)serialize certain C structures to/from <link linkend="GimpParasite"><type>GimpParasite</type></link>'s.</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -35,25 +38,25 @@
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
Utility functions to (de)serialize certain C structures to/from <link linkend="GimpParasite"><type>GimpParasite</type></link>'s.
|
||||
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-PIXPIPE-MAXDIM:CAPS"/>GIMP_PIXPIPE_MAXDIM</title>
|
||||
<title><anchor id="GIMP-PIXPIPE-MAXDIM:CAPS" role="macro"/>GIMP_PIXPIPE_MAXDIM</title>
|
||||
<indexterm><primary>GIMP_PIXPIPE_MAXDIM</primary></indexterm><programlisting>#define GIMP_PIXPIPE_MAXDIM 4
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-pixpipe-params-init"/>gimp_pixpipe_params_init ()</title>
|
||||
<title><anchor id="gimp-pixpipe-params-init" role="function"/>gimp_pixpipe_params_init ()</title>
|
||||
<indexterm><primary>gimp_pixpipe_params_init</primary></indexterm><programlisting><link linkend="void">void</link> gimp_pixpipe_params_init (<link linkend="GimpPixPipeParams">GimpPixPipeParams</link> *params);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -65,7 +68,7 @@ Utility functions to (de)serialize certain C structures to/from <link linkend="G
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-pixpipe-params-parse"/>gimp_pixpipe_params_parse ()</title>
|
||||
<title><anchor id="gimp-pixpipe-params-parse" role="function"/>gimp_pixpipe_params_parse ()</title>
|
||||
<indexterm><primary>gimp_pixpipe_params_parse</primary></indexterm><programlisting><link linkend="void">void</link> gimp_pixpipe_params_parse (const <link linkend="gchar">gchar</link> *parameters,
|
||||
<link linkend="GimpPixPipeParams">GimpPixPipeParams</link> *params);</programlisting>
|
||||
<para>
|
||||
@ -81,7 +84,7 @@ Utility functions to (de)serialize certain C structures to/from <link linkend="G
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-pixpipe-params-build"/>gimp_pixpipe_params_build ()</title>
|
||||
<title><anchor id="gimp-pixpipe-params-build" role="function"/>gimp_pixpipe_params_build ()</title>
|
||||
<indexterm><primary>gimp_pixpipe_params_build</primary></indexterm><programlisting><link linkend="gchar">gchar</link>* gimp_pixpipe_params_build (<link linkend="GimpPixPipeParams">GimpPixPipeParams</link> *params);</programlisting>
|
||||
<para>
|
||||
|
||||
|
||||
@ -4,16 +4,19 @@
|
||||
|
||||
<refentry id="libgimpbase-gimpprotocol">
|
||||
<refmeta>
|
||||
<refentrytitle>gimpprotocol</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimpprotocol</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimpprotocol</refname><refpurpose>The communication protocol between GIMP and it's plug-ins.</refpurpose>
|
||||
<refname>gimpprotocol</refname>
|
||||
<refpurpose>The communication protocol between GIMP and it's plug-ins.</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -77,25 +80,25 @@
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
The communication protocol between GIMP and it's plug-ins.
|
||||
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-PROTOCOL-VERSION:CAPS"/>GIMP_PROTOCOL_VERSION</title>
|
||||
<title><anchor id="GIMP-PROTOCOL-VERSION:CAPS" role="macro"/>GIMP_PROTOCOL_VERSION</title>
|
||||
<indexterm><primary>GIMP_PROTOCOL_VERSION</primary></indexterm><programlisting>#define GIMP_PROTOCOL_VERSION 0x0011
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GPConfig"/>GPConfig</title>
|
||||
<title><anchor id="GPConfig" role="struct"/>GPConfig</title>
|
||||
<indexterm><primary>GPConfig</primary></indexterm><programlisting>typedef struct {
|
||||
guint32 version;
|
||||
guint32 tile_width;
|
||||
@ -123,7 +126,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GPTileReq"/>GPTileReq</title>
|
||||
<title><anchor id="GPTileReq" role="struct"/>GPTileReq</title>
|
||||
<indexterm><primary>GPTileReq</primary></indexterm><programlisting>typedef struct {
|
||||
gint32 drawable_ID;
|
||||
guint32 tile_num;
|
||||
@ -134,13 +137,13 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GPTileAck"/>GPTileAck</title>
|
||||
<title><anchor id="GPTileAck" role="struct"/>GPTileAck</title>
|
||||
<indexterm><primary>GPTileAck</primary></indexterm><programlisting>typedef struct _GPTileAck GPTileAck;</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GPTileData"/>GPTileData</title>
|
||||
<title><anchor id="GPTileData" role="struct"/>GPTileData</title>
|
||||
<indexterm><primary>GPTileData</primary></indexterm><programlisting>typedef struct {
|
||||
gint32 drawable_ID;
|
||||
guint32 tile_num;
|
||||
@ -156,7 +159,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GPParam"/>GPParam</title>
|
||||
<title><anchor id="GPParam" role="struct"/>GPParam</title>
|
||||
<indexterm><primary>GPParam</primary></indexterm><programlisting>typedef struct {
|
||||
guint32 type;
|
||||
|
||||
@ -203,7 +206,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GPParamDef"/>GPParamDef</title>
|
||||
<title><anchor id="GPParamDef" role="struct"/>GPParamDef</title>
|
||||
<indexterm><primary>GPParamDef</primary></indexterm><programlisting>typedef struct {
|
||||
guint32 type;
|
||||
gchar *name;
|
||||
@ -214,7 +217,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GPProcRun"/>GPProcRun</title>
|
||||
<title><anchor id="GPProcRun" role="struct"/>GPProcRun</title>
|
||||
<indexterm><primary>GPProcRun</primary></indexterm><programlisting>typedef struct {
|
||||
gchar *name;
|
||||
guint32 nparams;
|
||||
@ -225,7 +228,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GPProcReturn"/>GPProcReturn</title>
|
||||
<title><anchor id="GPProcReturn" role="struct"/>GPProcReturn</title>
|
||||
<indexterm><primary>GPProcReturn</primary></indexterm><programlisting>typedef struct {
|
||||
gchar *name;
|
||||
guint32 nparams;
|
||||
@ -236,7 +239,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GPProcInstall"/>GPProcInstall</title>
|
||||
<title><anchor id="GPProcInstall" role="struct"/>GPProcInstall</title>
|
||||
<indexterm><primary>GPProcInstall</primary></indexterm><programlisting>typedef struct {
|
||||
gchar *name;
|
||||
gchar *blurb;
|
||||
@ -257,7 +260,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GPProcUninstall"/>GPProcUninstall</title>
|
||||
<title><anchor id="GPProcUninstall" role="struct"/>GPProcUninstall</title>
|
||||
<indexterm><primary>GPProcUninstall</primary></indexterm><programlisting>typedef struct {
|
||||
gchar *name;
|
||||
} GPProcUninstall;
|
||||
@ -266,13 +269,13 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gp-init"/>gp_init ()</title>
|
||||
<title><anchor id="gp-init" role="function"/>gp_init ()</title>
|
||||
<indexterm><primary>gp_init</primary></indexterm><programlisting><link linkend="void">void</link> gp_init (void);</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gp-has-init-write"/>gp_has_init_write ()</title>
|
||||
<title><anchor id="gp-has-init-write" role="function"/>gp_has_init_write ()</title>
|
||||
<indexterm><primary>gp_has_init_write</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gp_has_init_write (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
<para>
|
||||
@ -290,7 +293,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gp-quit-write"/>gp_quit_write ()</title>
|
||||
<title><anchor id="gp-quit-write" role="function"/>gp_quit_write ()</title>
|
||||
<indexterm><primary>gp_quit_write</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gp_quit_write (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
<para>
|
||||
@ -308,7 +311,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gp-config-write"/>gp_config_write ()</title>
|
||||
<title><anchor id="gp-config-write" role="function"/>gp_config_write ()</title>
|
||||
<indexterm><primary>gp_config_write</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gp_config_write (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="GPConfig">GPConfig</link> *config,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
@ -330,7 +333,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gp-tile-req-write"/>gp_tile_req_write ()</title>
|
||||
<title><anchor id="gp-tile-req-write" role="function"/>gp_tile_req_write ()</title>
|
||||
<indexterm><primary>gp_tile_req_write</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gp_tile_req_write (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="GPTileReq">GPTileReq</link> *tile_req,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
@ -352,7 +355,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gp-tile-ack-write"/>gp_tile_ack_write ()</title>
|
||||
<title><anchor id="gp-tile-ack-write" role="function"/>gp_tile_ack_write ()</title>
|
||||
<indexterm><primary>gp_tile_ack_write</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gp_tile_ack_write (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
<para>
|
||||
@ -370,7 +373,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gp-tile-data-write"/>gp_tile_data_write ()</title>
|
||||
<title><anchor id="gp-tile-data-write" role="function"/>gp_tile_data_write ()</title>
|
||||
<indexterm><primary>gp_tile_data_write</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gp_tile_data_write (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="GPTileData">GPTileData</link> *tile_data,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
@ -392,7 +395,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gp-proc-run-write"/>gp_proc_run_write ()</title>
|
||||
<title><anchor id="gp-proc-run-write" role="function"/>gp_proc_run_write ()</title>
|
||||
<indexterm><primary>gp_proc_run_write</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gp_proc_run_write (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="GPProcRun">GPProcRun</link> *proc_run,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
@ -414,7 +417,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gp-proc-return-write"/>gp_proc_return_write ()</title>
|
||||
<title><anchor id="gp-proc-return-write" role="function"/>gp_proc_return_write ()</title>
|
||||
<indexterm><primary>gp_proc_return_write</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gp_proc_return_write (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="GPProcReturn">GPProcReturn</link> *proc_return,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
@ -436,7 +439,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gp-temp-proc-run-write"/>gp_temp_proc_run_write ()</title>
|
||||
<title><anchor id="gp-temp-proc-run-write" role="function"/>gp_temp_proc_run_write ()</title>
|
||||
<indexterm><primary>gp_temp_proc_run_write</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gp_temp_proc_run_write (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="GPProcRun">GPProcRun</link> *proc_run,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
@ -458,7 +461,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gp-temp-proc-return-write"/>gp_temp_proc_return_write ()</title>
|
||||
<title><anchor id="gp-temp-proc-return-write" role="function"/>gp_temp_proc_return_write ()</title>
|
||||
<indexterm><primary>gp_temp_proc_return_write</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gp_temp_proc_return_write (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="GPProcReturn">GPProcReturn</link> *proc_return,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
@ -480,7 +483,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gp-proc-install-write"/>gp_proc_install_write ()</title>
|
||||
<title><anchor id="gp-proc-install-write" role="function"/>gp_proc_install_write ()</title>
|
||||
<indexterm><primary>gp_proc_install_write</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gp_proc_install_write (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="GPProcInstall">GPProcInstall</link> *proc_install,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
@ -502,7 +505,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gp-proc-uninstall-write"/>gp_proc_uninstall_write ()</title>
|
||||
<title><anchor id="gp-proc-uninstall-write" role="function"/>gp_proc_uninstall_write ()</title>
|
||||
<indexterm><primary>gp_proc_uninstall_write</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gp_proc_uninstall_write (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="GPProcUninstall">GPProcUninstall</link> *proc_uninstall,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
@ -524,7 +527,7 @@ The communication protocol between GIMP and it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gp-extension-ack-write"/>gp_extension_ack_write ()</title>
|
||||
<title><anchor id="gp-extension-ack-write" role="function"/>gp_extension_ack_write ()</title>
|
||||
<indexterm><primary>gp_extension_ack_write</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gp_extension_ack_write (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -4,16 +4,19 @@
|
||||
|
||||
<refentry id="libgimpbase-gimpsignal">
|
||||
<refmeta>
|
||||
<refentrytitle>gimpsignal</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimpsignal</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimpsignal</refname><refpurpose>Portable signal handling.</refpurpose>
|
||||
<refname>gimpsignal</refname>
|
||||
<refpurpose>Portable signal handling.</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -34,18 +37,18 @@
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
Portable signal handling.
|
||||
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpSignalHandlerFunc"/>GimpSignalHandlerFunc ()</title>
|
||||
<title><anchor id="GimpSignalHandlerFunc" role="function"/>GimpSignalHandlerFunc ()</title>
|
||||
<indexterm><primary>GimpSignalHandlerFunc</primary></indexterm><programlisting><link linkend="void">void</link> (*GimpSignalHandlerFunc) (<link linkend="gint">gint</link> signum);</programlisting>
|
||||
<para>
|
||||
A prototype for signal handler functions. Note that each function which
|
||||
@ -61,7 +64,7 @@ special values defined by your system's signal.h header file (like
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-signal-private"/>gimp_signal_private ()</title>
|
||||
<title><anchor id="gimp-signal-private" role="function"/>gimp_signal_private ()</title>
|
||||
<indexterm><primary>gimp_signal_private</primary></indexterm><programlisting><link linkend="GimpSignalHandlerFunc">GimpSignalHandlerFunc</link> gimp_signal_private (<link linkend="gint">gint</link> signum,
|
||||
<link linkend="GimpSignalHandlerFunc">GimpSignalHandlerFunc</link> handler,
|
||||
<link linkend="gint">gint</link> flags);</programlisting>
|
||||
|
||||
@ -4,17 +4,20 @@
|
||||
|
||||
<refentry id="libgimpbase-gimpunit">
|
||||
<refmeta>
|
||||
<refentrytitle>gimpunit</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimpunit</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimpunit</refname><refpurpose>Provides a collection of predefined units and functions for creating
|
||||
<refname>gimpunit</refname>
|
||||
<refpurpose>Provides a collection of predefined units and functions for creating
|
||||
user-defined units.</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -55,8 +58,8 @@ const <link linkend="gchar">gchar</link>* <link linkend="gimp-unit-get-plural">g
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
Provides a collection of predefined units and functions for creating
|
||||
user-defined units.
|
||||
@ -64,10 +67,10 @@ user-defined units.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="GimpUnit"/>enum GimpUnit</title>
|
||||
<title><anchor id="GimpUnit" role="enum"/>enum GimpUnit</title>
|
||||
<indexterm><primary>GimpUnit</primary></indexterm><programlisting>typedef enum /*< skip >*/
|
||||
{
|
||||
GIMP_UNIT_PIXEL = 0,
|
||||
@ -86,7 +89,7 @@ user-defined units.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-unit-get-number-of-units"/>gimp_unit_get_number_of_units ()</title>
|
||||
<title><anchor id="gimp-unit-get-number-of-units" role="function"/>gimp_unit_get_number_of_units ()</title>
|
||||
<indexterm><primary>gimp_unit_get_number_of_units</primary></indexterm><programlisting><link linkend="gint">gint</link> gimp_unit_get_number_of_units (void);</programlisting>
|
||||
<para>
|
||||
Returns the number of units which are known to the <link linkend="GimpUnit"><type>GimpUnit</type></link> system.</para>
|
||||
@ -97,7 +100,7 @@ Returns the number of units which are known to the <link linkend="GimpUnit"><typ
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-unit-get-number-of-built-in-units"/>gimp_unit_get_number_of_built_in_units ()</title>
|
||||
<title><anchor id="gimp-unit-get-number-of-built-in-units" role="function"/>gimp_unit_get_number_of_built_in_units ()</title>
|
||||
<indexterm><primary>gimp_unit_get_number_of_built_in_units</primary></indexterm><programlisting><link linkend="gint">gint</link> gimp_unit_get_number_of_built_in_units
|
||||
(void);</programlisting>
|
||||
<para>
|
||||
@ -111,7 +114,7 @@ Returns the number of <link linkend="GimpUnit"><type>GimpUnit</type></link>'s wh
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-unit-new"/>gimp_unit_new ()</title>
|
||||
<title><anchor id="gimp-unit-new" role="function"/>gimp_unit_new ()</title>
|
||||
<indexterm><primary>gimp_unit_new</primary></indexterm><programlisting><link linkend="GimpUnit">GimpUnit</link> gimp_unit_new (<link linkend="gchar">gchar</link> *identifier,
|
||||
<link linkend="gdouble">gdouble</link> factor,
|
||||
<link linkend="gint">gint</link> digits,
|
||||
@ -124,7 +127,7 @@ Returns the integer ID of the new <link linkend="GimpUnit"><type>GimpUnit</type>
|
||||
</para>
|
||||
<para>
|
||||
Note that a new unit is always created with it's deletion flag
|
||||
set to <literal>TRUE</literal>. You will have to set it to <literal>FALSE</literal> with
|
||||
set to <link linkend="TRUE:CAPS"><literal>TRUE</literal></link>. You will have to set it to <link linkend="FALSE:CAPS"><literal>FALSE</literal></link> with
|
||||
<link linkend="gimp-unit-set-deletion-flag"><function>gimp_unit_set_deletion_flag()</function></link> to make the unit definition persistent.</para>
|
||||
<para>
|
||||
|
||||
@ -154,7 +157,7 @@ set to <literal>TRUE</literal>. You will have to set it to <literal>FALSE</liter
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-unit-get-deletion-flag"/>gimp_unit_get_deletion_flag ()</title>
|
||||
<title><anchor id="gimp-unit-get-deletion-flag" role="function"/>gimp_unit_get_deletion_flag ()</title>
|
||||
<indexterm><primary>gimp_unit_get_deletion_flag</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gimp_unit_get_deletion_flag (<link linkend="GimpUnit">GimpUnit</link> unit);</programlisting>
|
||||
<para>
|
||||
</para>
|
||||
@ -168,12 +171,12 @@ set to <literal>TRUE</literal>. You will have to set it to <literal>FALSE</liter
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-unit-set-deletion-flag"/>gimp_unit_set_deletion_flag ()</title>
|
||||
<title><anchor id="gimp-unit-set-deletion-flag" role="function"/>gimp_unit_set_deletion_flag ()</title>
|
||||
<indexterm><primary>gimp_unit_set_deletion_flag</primary></indexterm><programlisting><link linkend="void">void</link> gimp_unit_set_deletion_flag (<link linkend="GimpUnit">GimpUnit</link> unit,
|
||||
<link linkend="gboolean">gboolean</link> deletion_flag);</programlisting>
|
||||
<para>
|
||||
Sets a <link linkend="GimpUnit"><type>GimpUnit</type></link>'s <parameter>deletion_flag</parameter>. If the <parameter>deletion_flag</parameter> of a unit is
|
||||
<literal>TRUE</literal> when GIMP exits, this unit will not be saved in the users's
|
||||
<link linkend="TRUE:CAPS"><literal>TRUE</literal></link> when GIMP exits, this unit will not be saved in the users's
|
||||
"unitrc" file.
|
||||
</para>
|
||||
<para>
|
||||
@ -190,7 +193,7 @@ ignored.</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-unit-get-factor"/>gimp_unit_get_factor ()</title>
|
||||
<title><anchor id="gimp-unit-get-factor" role="function"/>gimp_unit_get_factor ()</title>
|
||||
<indexterm><primary>gimp_unit_get_factor</primary></indexterm><programlisting><link linkend="gdouble">gdouble</link> gimp_unit_get_factor (<link linkend="GimpUnit">GimpUnit</link> unit);</programlisting>
|
||||
<para>
|
||||
A <link linkend="GimpUnit"><type>GimpUnit</type></link>'s <parameter>factor</parameter> is defined to be:
|
||||
@ -210,7 +213,7 @@ Returns 0 for <parameter>unit</parameter> == GIMP_UNIT_PIXEL.</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-unit-get-digits"/>gimp_unit_get_digits ()</title>
|
||||
<title><anchor id="gimp-unit-get-digits" role="function"/>gimp_unit_get_digits ()</title>
|
||||
<indexterm><primary>gimp_unit_get_digits</primary></indexterm><programlisting><link linkend="gint">gint</link> gimp_unit_get_digits (<link linkend="GimpUnit">GimpUnit</link> unit);</programlisting>
|
||||
<para>
|
||||
Returns the number of digits an entry field should provide to get
|
||||
@ -228,7 +231,7 @@ Returns 0 for <parameter>unit</parameter> == GIMP_UNIT_PIXEL.</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-unit-get-identifier"/>gimp_unit_get_identifier ()</title>
|
||||
<title><anchor id="gimp-unit-get-identifier" role="function"/>gimp_unit_get_identifier ()</title>
|
||||
<indexterm><primary>gimp_unit_get_identifier</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_unit_get_identifier (<link linkend="GimpUnit">GimpUnit</link> unit);</programlisting>
|
||||
<para>
|
||||
This is an unstranslated string and must not be changed or freed.</para>
|
||||
@ -242,7 +245,7 @@ This is an unstranslated string and must not be changed or freed.</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-unit-get-symbol"/>gimp_unit_get_symbol ()</title>
|
||||
<title><anchor id="gimp-unit-get-symbol" role="function"/>gimp_unit_get_symbol ()</title>
|
||||
<indexterm><primary>gimp_unit_get_symbol</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_unit_get_symbol (<link linkend="GimpUnit">GimpUnit</link> unit);</programlisting>
|
||||
<para>
|
||||
This is e.g. "''" for UNIT_INCH.
|
||||
@ -259,7 +262,7 @@ NOTE: This string must not be changed or freed.</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-unit-get-abbreviation"/>gimp_unit_get_abbreviation ()</title>
|
||||
<title><anchor id="gimp-unit-get-abbreviation" role="function"/>gimp_unit_get_abbreviation ()</title>
|
||||
<indexterm><primary>gimp_unit_get_abbreviation</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_unit_get_abbreviation (<link linkend="GimpUnit">GimpUnit</link> unit);</programlisting>
|
||||
<para>
|
||||
For built-in units, this function returns the translated abbreviation
|
||||
@ -277,7 +280,7 @@ NOTE: This string must not be changed or freed.</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-unit-get-singular"/>gimp_unit_get_singular ()</title>
|
||||
<title><anchor id="gimp-unit-get-singular" role="function"/>gimp_unit_get_singular ()</title>
|
||||
<indexterm><primary>gimp_unit_get_singular</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_unit_get_singular (<link linkend="GimpUnit">GimpUnit</link> unit);</programlisting>
|
||||
<para>
|
||||
For built-in units, this function returns the translated singular form
|
||||
@ -295,7 +298,7 @@ NOTE: This string must not be changed or freed.</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-unit-get-plural"/>gimp_unit_get_plural ()</title>
|
||||
<title><anchor id="gimp-unit-get-plural" role="function"/>gimp_unit_get_plural ()</title>
|
||||
<indexterm><primary>gimp_unit_get_plural</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_unit_get_plural (<link linkend="GimpUnit">GimpUnit</link> unit);</programlisting>
|
||||
<para>
|
||||
For built-in units, this function returns the translated plural form
|
||||
@ -313,14 +316,14 @@ NOTE: This string must not be changed or freed.</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-TYPE-UNIT:CAPS"/>GIMP_TYPE_UNIT</title>
|
||||
<title><anchor id="GIMP-TYPE-UNIT:CAPS" role="macro"/>GIMP_TYPE_UNIT</title>
|
||||
<indexterm><primary>GIMP_TYPE_UNIT</primary></indexterm><programlisting>#define GIMP_TYPE_UNIT (gimp_unit_get_type ())
|
||||
</programlisting>
|
||||
<para>
|
||||
<link linkend="GIMP-TYPE-UNIT:CAPS"><type>GIMP_TYPE_UNIT</type></link> is a <link linkend="GType"><type>GType</type></link> derived from <link linkend="G-TYPE-INT:CAPS"><type>G_TYPE_INT</type></link>.
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-VALUE-HOLDS-UNIT:CAPS"/>GIMP_VALUE_HOLDS_UNIT()</title>
|
||||
<title><anchor id="GIMP-VALUE-HOLDS-UNIT:CAPS" role="macro"/>GIMP_VALUE_HOLDS_UNIT()</title>
|
||||
<indexterm><primary>GIMP_VALUE_HOLDS_UNIT</primary></indexterm><programlisting>#define GIMP_VALUE_HOLDS_UNIT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_UNIT))
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
@ -4,16 +4,19 @@
|
||||
|
||||
<refentry id="libgimpbase-gimputils">
|
||||
<refmeta>
|
||||
<refentrytitle>gimputils</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimputils</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimputils</refname><refpurpose>Utilities of general interest</refpurpose>
|
||||
<refname>gimputils</refname>
|
||||
<refpurpose>Utilities of general interest</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -63,17 +66,17 @@ const <link linkend="gchar">gchar</link>* <link linkend="gimp-flags-value-get-he
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-any-to-utf8"/>gimp_any_to_utf8 ()</title>
|
||||
<title><anchor id="gimp-any-to-utf8" role="function"/>gimp_any_to_utf8 ()</title>
|
||||
<indexterm><primary>gimp_any_to_utf8</primary></indexterm><programlisting><link linkend="gchar">gchar</link>* gimp_any_to_utf8 (const <link linkend="gchar">gchar</link> *str,
|
||||
<link linkend="gssize">gssize</link> len,
|
||||
const <link linkend="gchar">gchar</link> *warning_format,
|
||||
@ -115,7 +118,7 @@ of <parameter>str</parameter> is valid UTF-8, only "(invalid UTF-8 string)" is r
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-filename-to-utf8"/>gimp_filename_to_utf8 ()</title>
|
||||
<title><anchor id="gimp-filename-to-utf8" role="function"/>gimp_filename_to_utf8 ()</title>
|
||||
<indexterm><primary>gimp_filename_to_utf8</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_filename_to_utf8 (const <link linkend="gchar">gchar</link> *filename);</programlisting>
|
||||
<para>
|
||||
Convert a filename in the filesystem's encoding to UTF-8
|
||||
@ -138,7 +141,7 @@ UTF-8 encoded filename.</para>
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-utf8-strtrim"/>gimp_utf8_strtrim ()</title>
|
||||
<title><anchor id="gimp-utf8-strtrim" role="function"/>gimp_utf8_strtrim ()</title>
|
||||
<indexterm><primary>gimp_utf8_strtrim</primary></indexterm><programlisting><link linkend="gchar">gchar</link>* gimp_utf8_strtrim (const <link linkend="gchar">gchar</link> *str,
|
||||
<link linkend="gint">gint</link> max_chars);</programlisting>
|
||||
<para>
|
||||
@ -149,7 +152,7 @@ that the string was trimmed is indicated by appending an ellipsis.</para>
|
||||
|
||||
</para><variablelist role="params">
|
||||
<varlistentry><term><parameter>str</parameter> :</term>
|
||||
<listitem><simpara> an UTF-8 encoded string (or <literal>NULL</literal>)
|
||||
<listitem><simpara> an UTF-8 encoded string (or <link linkend="NULL:CAPS"><literal>NULL</literal></link>)
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><parameter>max_chars</parameter> :</term>
|
||||
<listitem><simpara> the maximum number of characters before the string get
|
||||
@ -160,7 +163,7 @@ using <link linkend="g-free"><function>g_free()</function></link> when it is not
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-escape-uline"/>gimp_escape_uline ()</title>
|
||||
<title><anchor id="gimp-escape-uline" role="function" condition="since:GIMP 2.2"/>gimp_escape_uline ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_escape_uline</primary></indexterm><programlisting><link linkend="gchar">gchar</link>* gimp_escape_uline (const <link linkend="gchar">gchar</link> *str);</programlisting>
|
||||
<para>
|
||||
This function returns a copy of <parameter>str</parameter> with all underline converted
|
||||
@ -171,7 +174,7 @@ them to mnemonics.</para>
|
||||
|
||||
</para><variablelist role="params">
|
||||
<varlistentry><term><parameter>str</parameter> :</term>
|
||||
<listitem><simpara> Underline infested string (or <literal>NULL</literal>)
|
||||
<listitem><simpara> Underline infested string (or <link linkend="NULL:CAPS"><literal>NULL</literal></link>)
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><emphasis>Returns</emphasis> :</term><listitem><simpara> A (possibly escaped) copy of <parameter>str</parameter> which should be
|
||||
freed using <link linkend="g-free"><function>g_free()</function></link> when it is not needed any longer.
|
||||
@ -180,7 +183,7 @@ freed using <link linkend="g-free"><function>g_free()</function></link> when it
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-strip-uline"/>gimp_strip_uline ()</title>
|
||||
<title><anchor id="gimp-strip-uline" role="function"/>gimp_strip_uline ()</title>
|
||||
<indexterm><primary>gimp_strip_uline</primary></indexterm><programlisting><link linkend="gchar">gchar</link>* gimp_strip_uline (const <link linkend="gchar">gchar</link> *str);</programlisting>
|
||||
<para>
|
||||
This function returns a copy of <parameter>str</parameter> stripped of underline
|
||||
@ -196,18 +199,18 @@ rid of the mnemonic (see bug <link linkend="157561:CAPS"><type>157561</type></li
|
||||
|
||||
</para><variablelist role="params">
|
||||
<varlistentry><term><parameter>str</parameter> :</term>
|
||||
<listitem><simpara> underline infested string (or <literal>NULL</literal>)
|
||||
<listitem><simpara> underline infested string (or <link linkend="NULL:CAPS"><literal>NULL</literal></link>)
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><emphasis>Returns</emphasis> :</term><listitem><simpara> A (possibly stripped) copy of <parameter>str</parameter> which should be
|
||||
freed using <link linkend="g-free"><function>g_free()</function></link> when it is not needed any longer.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-enum-get-desc"/>gimp_enum_get_desc ()</title>
|
||||
<title><anchor id="gimp-enum-get-desc" role="function" condition="since:GIMP 2.2"/>gimp_enum_get_desc ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_enum_get_desc</primary></indexterm><programlisting><link linkend="GimpEnumDesc">GimpEnumDesc</link>* gimp_enum_get_desc (<link linkend="GEnumClass">GEnumClass</link> *enum_class,
|
||||
<link linkend="gint">gint</link> value);</programlisting>
|
||||
<para>
|
||||
Retrieves <link linkend="GimpEnumDesc"><type>GimpEnumDesc</type></link> associated with the given value, or <literal>NULL</literal>.</para>
|
||||
Retrieves <link linkend="GimpEnumDesc"><type>GimpEnumDesc</type></link> associated with the given value, or <link linkend="NULL:CAPS"><literal>NULL</literal></link>.</para>
|
||||
<para>
|
||||
|
||||
</para><variablelist role="params">
|
||||
@ -223,7 +226,7 @@ Retrieves <link linkend="GimpEnumDesc"><type>GimpEnumDesc</type></link> associat
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-enum-get-value"/>gimp_enum_get_value ()</title>
|
||||
<title><anchor id="gimp-enum-get-value" role="function" condition="since:GIMP 2.2"/>gimp_enum_get_value ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_enum_get_value</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gimp_enum_get_value (<link linkend="GType">GType</link> enum_type,
|
||||
<link linkend="gint">gint</link> value,
|
||||
const <link linkend="gchar">gchar</link> **value_name,
|
||||
@ -234,7 +237,7 @@ Retrieves <link linkend="GimpEnumDesc"><type>GimpEnumDesc</type></link> associat
|
||||
Checks if <parameter>value</parameter> is valid for the enum registered as <parameter>enum_type</parameter>.
|
||||
If the value exists in that enum, its name, nick and its translated
|
||||
desc and help are returned (if <parameter>value_name</parameter>, <parameter>value_nick</parameter>, <parameter>value_desc</parameter>
|
||||
and <parameter>value_help</parameter> are not <literal>NULL</literal>).</para>
|
||||
and <parameter>value_help</parameter> are not <link linkend="NULL:CAPS"><literal>NULL</literal></link>).</para>
|
||||
<para>
|
||||
|
||||
</para><variablelist role="params">
|
||||
@ -245,25 +248,25 @@ and <parameter>value_help</parameter> are not <literal>NULL</literal>).</para>
|
||||
<listitem><simpara> an integer value
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><parameter>value_name</parameter> :</term>
|
||||
<listitem><simpara> return location for the value's name (or <literal>NULL</literal>)
|
||||
<listitem><simpara> return location for the value's name (or <link linkend="NULL:CAPS"><literal>NULL</literal></link>)
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><parameter>value_nick</parameter> :</term>
|
||||
<listitem><simpara> return location for the value's nick (or <literal>NULL</literal>)
|
||||
<listitem><simpara> return location for the value's nick (or <link linkend="NULL:CAPS"><literal>NULL</literal></link>)
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><parameter>value_desc</parameter> :</term>
|
||||
<listitem><simpara> return location for the value's translated desc (or <literal>NULL</literal>)
|
||||
<listitem><simpara> return location for the value's translated desc (or <link linkend="NULL:CAPS"><literal>NULL</literal></link>)
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><parameter>value_help</parameter> :</term>
|
||||
<listitem><simpara> return location for the value's translated help (or <literal>NULL</literal>)
|
||||
<listitem><simpara> return location for the value's translated help (or <link linkend="NULL:CAPS"><literal>NULL</literal></link>)
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><emphasis>Returns</emphasis> :</term><listitem><simpara> <literal>TRUE</literal> if <parameter>value</parameter> is valid for the <parameter>enum_type</parameter>,
|
||||
<literal>FALSE</literal> otherwise
|
||||
<varlistentry><term><emphasis>Returns</emphasis> :</term><listitem><simpara> <link linkend="TRUE:CAPS"><literal>TRUE</literal></link> if <parameter>value</parameter> is valid for the <parameter>enum_type</parameter>,
|
||||
<link linkend="FALSE:CAPS"><literal>FALSE</literal></link> otherwise
|
||||
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-enum-value-get-desc"/>gimp_enum_value_get_desc ()</title>
|
||||
<title><anchor id="gimp-enum-value-get-desc" role="function" condition="since:GIMP 2.2"/>gimp_enum_value_get_desc ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_enum_value_get_desc</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_enum_value_get_desc (<link linkend="GEnumClass">GEnumClass</link> *enum_class,
|
||||
<link linkend="GEnumValue">GEnumValue</link> *enum_value);</programlisting>
|
||||
<para>
|
||||
@ -283,7 +286,7 @@ Retrieves the translated desc for a given <parameter>enum_value</parameter>.</pa
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-enum-value-get-help"/>gimp_enum_value_get_help ()</title>
|
||||
<title><anchor id="gimp-enum-value-get-help" role="function" condition="since:GIMP 2.2"/>gimp_enum_value_get_help ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_enum_value_get_help</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_enum_value_get_help (<link linkend="GEnumClass">GEnumClass</link> *enum_class,
|
||||
<link linkend="GEnumValue">GEnumValue</link> *enum_value);</programlisting>
|
||||
<para>
|
||||
@ -303,11 +306,11 @@ Retrieves the translated help for a given <parameter>enum_value</parameter>.</pa
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-flags-get-first-desc"/>gimp_flags_get_first_desc ()</title>
|
||||
<title><anchor id="gimp-flags-get-first-desc" role="function" condition="since:GIMP 2.2"/>gimp_flags_get_first_desc ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_flags_get_first_desc</primary></indexterm><programlisting><link linkend="GimpFlagsDesc">GimpFlagsDesc</link>* gimp_flags_get_first_desc (<link linkend="GFlagsClass">GFlagsClass</link> *flags_class,
|
||||
<link linkend="guint">guint</link> value);</programlisting>
|
||||
<para>
|
||||
Retrieves the first <link linkend="GimpFlagsDesc"><type>GimpFlagsDesc</type></link> that matches the given value, or <literal>NULL</literal>.</para>
|
||||
Retrieves the first <link linkend="GimpFlagsDesc"><type>GimpFlagsDesc</type></link> that matches the given value, or <link linkend="NULL:CAPS"><literal>NULL</literal></link>.</para>
|
||||
<para>
|
||||
|
||||
</para><variablelist role="params">
|
||||
@ -323,7 +326,7 @@ Retrieves the first <link linkend="GimpFlagsDesc"><type>GimpFlagsDesc</type></li
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-flags-get-first-value"/>gimp_flags_get_first_value ()</title>
|
||||
<title><anchor id="gimp-flags-get-first-value" role="function" condition="since:GIMP 2.2"/>gimp_flags_get_first_value ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_flags_get_first_value</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> gimp_flags_get_first_value (<link linkend="GType">GType</link> flags_type,
|
||||
<link linkend="guint">guint</link> value,
|
||||
const <link linkend="gchar">gchar</link> **value_name,
|
||||
@ -334,7 +337,7 @@ Retrieves the first <link linkend="GimpFlagsDesc"><type>GimpFlagsDesc</type></li
|
||||
Checks if <parameter>value</parameter> is valid for the flags registered as <parameter>flags_type</parameter>.
|
||||
If the value exists in that flags, its name, nick and its translated
|
||||
desc and help are returned (if <parameter>value_name</parameter>, <parameter>value_nick</parameter>, <parameter>value_desc</parameter>
|
||||
and <parameter>value_help</parameter> are not <literal>NULL</literal>).</para>
|
||||
and <parameter>value_help</parameter> are not <link linkend="NULL:CAPS"><literal>NULL</literal></link>).</para>
|
||||
<para>
|
||||
|
||||
</para><variablelist role="params">
|
||||
@ -345,25 +348,25 @@ and <parameter>value_help</parameter> are not <literal>NULL</literal>).</para>
|
||||
<listitem><simpara> an integer value
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><parameter>value_name</parameter> :</term>
|
||||
<listitem><simpara> return location for the value's name (or <literal>NULL</literal>)
|
||||
<listitem><simpara> return location for the value's name (or <link linkend="NULL:CAPS"><literal>NULL</literal></link>)
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><parameter>value_nick</parameter> :</term>
|
||||
<listitem><simpara> return location for the value's nick (or <literal>NULL</literal>)
|
||||
<listitem><simpara> return location for the value's nick (or <link linkend="NULL:CAPS"><literal>NULL</literal></link>)
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><parameter>value_desc</parameter> :</term>
|
||||
<listitem><simpara> return location for the value's translated desc (or <literal>NULL</literal>)
|
||||
<listitem><simpara> return location for the value's translated desc (or <link linkend="NULL:CAPS"><literal>NULL</literal></link>)
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><parameter>value_help</parameter> :</term>
|
||||
<listitem><simpara> return location for the value's translated help (or <literal>NULL</literal>)
|
||||
<listitem><simpara> return location for the value's translated help (or <link linkend="NULL:CAPS"><literal>NULL</literal></link>)
|
||||
</simpara></listitem></varlistentry>
|
||||
<varlistentry><term><emphasis>Returns</emphasis> :</term><listitem><simpara> <literal>TRUE</literal> if <parameter>value</parameter> is valid for the <parameter>flags_type</parameter>,
|
||||
<literal>FALSE</literal> otherwise
|
||||
<varlistentry><term><emphasis>Returns</emphasis> :</term><listitem><simpara> <link linkend="TRUE:CAPS"><literal>TRUE</literal></link> if <parameter>value</parameter> is valid for the <parameter>flags_type</parameter>,
|
||||
<link linkend="FALSE:CAPS"><literal>FALSE</literal></link> otherwise
|
||||
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-flags-value-get-desc"/>gimp_flags_value_get_desc ()</title>
|
||||
<title><anchor id="gimp-flags-value-get-desc" role="function" condition="since:GIMP 2.2"/>gimp_flags_value_get_desc ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_flags_value_get_desc</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_flags_value_get_desc (<link linkend="GFlagsClass">GFlagsClass</link> *flags_class,
|
||||
<link linkend="GFlagsValue">GFlagsValue</link> *flags_value);</programlisting>
|
||||
<para>
|
||||
@ -383,7 +386,7 @@ Retrieves the translated desc for a given <parameter>flags_value</parameter>.</p
|
||||
</variablelist><para>Since GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="gimp-flags-value-get-help"/>gimp_flags_value_get_help ()</title>
|
||||
<title><anchor id="gimp-flags-value-get-help" role="function" condition="since:GIMP 2.2"/>gimp_flags_value_get_help ()</title>
|
||||
<indexterm role="GIMP 2.2"><primary>gimp_flags_value_get_help</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>* gimp_flags_value_get_help (<link linkend="GFlagsClass">GFlagsClass</link> *flags_class,
|
||||
<link linkend="GFlagsValue">GFlagsValue</link> *flags_value);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -4,17 +4,20 @@
|
||||
|
||||
<refentry id="libgimpbase-gimpversion">
|
||||
<refmeta>
|
||||
<refentrytitle>gimpversion</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimpversion</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimpversion</refname><refpurpose>Macros and constants useful for determining GIMP's version number and
|
||||
<refname>gimpversion</refname>
|
||||
<refpurpose>Macros and constants useful for determining GIMP's version number and
|
||||
capabilities.</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -37,8 +40,8 @@ capabilities.</refpurpose>
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
Macros and constants useful for determining GIMP's version number and
|
||||
capabilities.
|
||||
@ -46,45 +49,45 @@ capabilities.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-MAJOR-VERSION:CAPS"/>GIMP_MAJOR_VERSION</title>
|
||||
<title><anchor id="GIMP-MAJOR-VERSION:CAPS" role="macro"/>GIMP_MAJOR_VERSION</title>
|
||||
<indexterm><primary>GIMP_MAJOR_VERSION</primary></indexterm><programlisting>#define GIMP_MAJOR_VERSION (2)
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-MINOR-VERSION:CAPS"/>GIMP_MINOR_VERSION</title>
|
||||
<title><anchor id="GIMP-MINOR-VERSION:CAPS" role="macro"/>GIMP_MINOR_VERSION</title>
|
||||
<indexterm><primary>GIMP_MINOR_VERSION</primary></indexterm><programlisting>#define GIMP_MINOR_VERSION (2)
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-MICRO-VERSION:CAPS"/>GIMP_MICRO_VERSION</title>
|
||||
<indexterm><primary>GIMP_MICRO_VERSION</primary></indexterm><programlisting>#define GIMP_MICRO_VERSION (11)
|
||||
<title><anchor id="GIMP-MICRO-VERSION:CAPS" role="macro"/>GIMP_MICRO_VERSION</title>
|
||||
<indexterm><primary>GIMP_MICRO_VERSION</primary></indexterm><programlisting>#define GIMP_MICRO_VERSION (13)
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-VERSION:CAPS"/>GIMP_VERSION</title>
|
||||
<indexterm><primary>GIMP_VERSION</primary></indexterm><programlisting>#define GIMP_VERSION "2.2.11"
|
||||
<title><anchor id="GIMP-VERSION:CAPS" role="macro"/>GIMP_VERSION</title>
|
||||
<indexterm><primary>GIMP_VERSION</primary></indexterm><programlisting>#define GIMP_VERSION "2.2.13"
|
||||
</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-API-VERSION:CAPS"/>GIMP_API_VERSION</title>
|
||||
<title><anchor id="GIMP-API-VERSION:CAPS" role="macro"/>GIMP_API_VERSION</title>
|
||||
<indexterm><primary>GIMP_API_VERSION</primary></indexterm><programlisting>#define GIMP_API_VERSION "2.0"
|
||||
</programlisting>
|
||||
<para>
|
||||
Since: GIMP 2.2
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="GIMP-CHECK-VERSION:CAPS"/>GIMP_CHECK_VERSION()</title>
|
||||
<title><anchor id="GIMP-CHECK-VERSION:CAPS" role="macro"/>GIMP_CHECK_VERSION()</title>
|
||||
<indexterm><primary>GIMP_CHECK_VERSION</primary></indexterm><programlisting>#define GIMP_CHECK_VERSION(major, minor, micro)</programlisting>
|
||||
<para>
|
||||
|
||||
|
||||
@ -4,17 +4,20 @@
|
||||
|
||||
<refentry id="libgimpbase-gimpwire">
|
||||
<refmeta>
|
||||
<refentrytitle>gimpwire</refentrytitle>
|
||||
<refentrytitle role="top_of_page">gimpwire</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
<refmiscinfo>LIBGIMPBASE Library</refmiscinfo>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>gimpwire</refname><refpurpose>The lowlevel I/O protocol used for communication between GIMP and
|
||||
<refname>gimpwire</refname>
|
||||
<refpurpose>The lowlevel I/O protocol used for communication between GIMP and
|
||||
it's plug-ins.</refpurpose>
|
||||
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv><title>Synopsis</title>
|
||||
<refsynopsisdiv role="synopsis">
|
||||
<title role="synopsis.title">Synopsis</title>
|
||||
|
||||
<synopsis>
|
||||
|
||||
@ -111,8 +114,8 @@ it's plug-ins.</refpurpose>
|
||||
|
||||
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<refsect1 role="desc">
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
The lowlevel I/O protocol used for communication between GIMP and
|
||||
it's plug-ins.
|
||||
@ -120,10 +123,10 @@ it's plug-ins.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
<title>Details</title>
|
||||
<refsect1 role="details">
|
||||
<title role="details.title">Details</title>
|
||||
<refsect2>
|
||||
<title><anchor id="WireMessage"/>WireMessage</title>
|
||||
<title><anchor id="WireMessage" role="struct"/>WireMessage</title>
|
||||
<indexterm><primary>WireMessage</primary></indexterm><programlisting>typedef struct {
|
||||
guint32 type;
|
||||
gpointer data;
|
||||
@ -133,7 +136,7 @@ it's plug-ins.
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="WireReadFunc"/>WireReadFunc ()</title>
|
||||
<title><anchor id="WireReadFunc" role="function"/>WireReadFunc ()</title>
|
||||
<indexterm><primary>WireReadFunc</primary></indexterm><programlisting><link linkend="void">void</link> (*WireReadFunc) (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="WireMessage">WireMessage</link> *msg,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
@ -153,7 +156,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="WireWriteFunc"/>WireWriteFunc ()</title>
|
||||
<title><anchor id="WireWriteFunc" role="function"/>WireWriteFunc ()</title>
|
||||
<indexterm><primary>WireWriteFunc</primary></indexterm><programlisting><link linkend="void">void</link> (*WireWriteFunc) (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="WireMessage">WireMessage</link> *msg,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
@ -173,7 +176,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="WireDestroyFunc"/>WireDestroyFunc ()</title>
|
||||
<title><anchor id="WireDestroyFunc" role="function"/>WireDestroyFunc ()</title>
|
||||
<indexterm><primary>WireDestroyFunc</primary></indexterm><programlisting><link linkend="void">void</link> (*WireDestroyFunc) (<link linkend="WireMessage">WireMessage</link> *msg);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -185,7 +188,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="WireIOFunc"/>WireIOFunc ()</title>
|
||||
<title><anchor id="WireIOFunc" role="function"/>WireIOFunc ()</title>
|
||||
<indexterm><primary>WireIOFunc</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> (*WireIOFunc) (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="guint8">guint8</link> *buf,
|
||||
<link linkend="gulong">gulong</link> count,
|
||||
@ -211,7 +214,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="WireFlushFunc"/>WireFlushFunc ()</title>
|
||||
<title><anchor id="WireFlushFunc" role="function"/>WireFlushFunc ()</title>
|
||||
<indexterm><primary>WireFlushFunc</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> (*WireFlushFunc) (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
<para>
|
||||
@ -229,7 +232,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-register"/>wire_register ()</title>
|
||||
<title><anchor id="wire-register" role="function"/>wire_register ()</title>
|
||||
<indexterm><primary>wire_register</primary></indexterm><programlisting><link linkend="void">void</link> wire_register (<link linkend="guint32">guint32</link> type,
|
||||
<link linkend="WireReadFunc">WireReadFunc</link> read_func,
|
||||
<link linkend="WireWriteFunc">WireWriteFunc</link> write_func,
|
||||
@ -253,7 +256,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-set-reader"/>wire_set_reader ()</title>
|
||||
<title><anchor id="wire-set-reader" role="function"/>wire_set_reader ()</title>
|
||||
<indexterm><primary>wire_set_reader</primary></indexterm><programlisting><link linkend="void">void</link> wire_set_reader (<link linkend="WireIOFunc">WireIOFunc</link> read_func);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -265,7 +268,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-set-writer"/>wire_set_writer ()</title>
|
||||
<title><anchor id="wire-set-writer" role="function"/>wire_set_writer ()</title>
|
||||
<indexterm><primary>wire_set_writer</primary></indexterm><programlisting><link linkend="void">void</link> wire_set_writer (<link linkend="WireIOFunc">WireIOFunc</link> write_func);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -277,7 +280,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-set-flusher"/>wire_set_flusher ()</title>
|
||||
<title><anchor id="wire-set-flusher" role="function"/>wire_set_flusher ()</title>
|
||||
<indexterm><primary>wire_set_flusher</primary></indexterm><programlisting><link linkend="void">void</link> wire_set_flusher (<link linkend="WireFlushFunc">WireFlushFunc</link> flush_func);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -289,7 +292,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-read"/>wire_read ()</title>
|
||||
<title><anchor id="wire-read" role="function"/>wire_read ()</title>
|
||||
<indexterm><primary>wire_read</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_read (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="guint8">guint8</link> *buf,
|
||||
<link linkend="gsize">gsize</link> count,
|
||||
@ -315,7 +318,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-write"/>wire_write ()</title>
|
||||
<title><anchor id="wire-write" role="function"/>wire_write ()</title>
|
||||
<indexterm><primary>wire_write</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_write (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="guint8">guint8</link> *buf,
|
||||
<link linkend="gsize">gsize</link> count,
|
||||
@ -341,7 +344,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-flush"/>wire_flush ()</title>
|
||||
<title><anchor id="wire-flush" role="function"/>wire_flush ()</title>
|
||||
<indexterm><primary>wire_flush</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_flush (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
<para>
|
||||
@ -359,7 +362,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-error"/>wire_error ()</title>
|
||||
<title><anchor id="wire-error" role="function"/>wire_error ()</title>
|
||||
<indexterm><primary>wire_error</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_error (void);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -370,13 +373,13 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-clear-error"/>wire_clear_error ()</title>
|
||||
<title><anchor id="wire-clear-error" role="function"/>wire_clear_error ()</title>
|
||||
<indexterm><primary>wire_clear_error</primary></indexterm><programlisting><link linkend="void">void</link> wire_clear_error (void);</programlisting>
|
||||
<para>
|
||||
|
||||
</para></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-read-msg"/>wire_read_msg ()</title>
|
||||
<title><anchor id="wire-read-msg" role="function"/>wire_read_msg ()</title>
|
||||
<indexterm><primary>wire_read_msg</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_read_msg (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="WireMessage">WireMessage</link> *msg,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
@ -398,7 +401,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-write-msg"/>wire_write_msg ()</title>
|
||||
<title><anchor id="wire-write-msg" role="function"/>wire_write_msg ()</title>
|
||||
<indexterm><primary>wire_write_msg</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_write_msg (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="WireMessage">WireMessage</link> *msg,
|
||||
<link linkend="gpointer">gpointer</link> user_data);</programlisting>
|
||||
@ -420,7 +423,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-destroy"/>wire_destroy ()</title>
|
||||
<title><anchor id="wire-destroy" role="function"/>wire_destroy ()</title>
|
||||
<indexterm><primary>wire_destroy</primary></indexterm><programlisting><link linkend="void">void</link> wire_destroy (<link linkend="WireMessage">WireMessage</link> *msg);</programlisting>
|
||||
<para>
|
||||
|
||||
@ -432,7 +435,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-read-int32"/>wire_read_int32 ()</title>
|
||||
<title><anchor id="wire-read-int32" role="function"/>wire_read_int32 ()</title>
|
||||
<indexterm><primary>wire_read_int32</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_read_int32 (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="guint32">guint32</link> *data,
|
||||
<link linkend="gint">gint</link> count,
|
||||
@ -458,7 +461,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-read-int16"/>wire_read_int16 ()</title>
|
||||
<title><anchor id="wire-read-int16" role="function"/>wire_read_int16 ()</title>
|
||||
<indexterm><primary>wire_read_int16</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_read_int16 (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="guint16">guint16</link> *data,
|
||||
<link linkend="gint">gint</link> count,
|
||||
@ -484,7 +487,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-read-int8"/>wire_read_int8 ()</title>
|
||||
<title><anchor id="wire-read-int8" role="function"/>wire_read_int8 ()</title>
|
||||
<indexterm><primary>wire_read_int8</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_read_int8 (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="guint8">guint8</link> *data,
|
||||
<link linkend="gint">gint</link> count,
|
||||
@ -510,7 +513,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-read-double"/>wire_read_double ()</title>
|
||||
<title><anchor id="wire-read-double" role="function"/>wire_read_double ()</title>
|
||||
<indexterm><primary>wire_read_double</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_read_double (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="gdouble">gdouble</link> *data,
|
||||
<link linkend="gint">gint</link> count,
|
||||
@ -536,7 +539,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-read-string"/>wire_read_string ()</title>
|
||||
<title><anchor id="wire-read-string" role="function"/>wire_read_string ()</title>
|
||||
<indexterm><primary>wire_read_string</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_read_string (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="gchar">gchar</link> **data,
|
||||
<link linkend="gint">gint</link> count,
|
||||
@ -562,7 +565,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-write-int32"/>wire_write_int32 ()</title>
|
||||
<title><anchor id="wire-write-int32" role="function"/>wire_write_int32 ()</title>
|
||||
<indexterm><primary>wire_write_int32</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_write_int32 (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="guint32">guint32</link> *data,
|
||||
<link linkend="gint">gint</link> count,
|
||||
@ -588,7 +591,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-write-int16"/>wire_write_int16 ()</title>
|
||||
<title><anchor id="wire-write-int16" role="function"/>wire_write_int16 ()</title>
|
||||
<indexterm><primary>wire_write_int16</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_write_int16 (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="guint16">guint16</link> *data,
|
||||
<link linkend="gint">gint</link> count,
|
||||
@ -614,7 +617,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-write-int8"/>wire_write_int8 ()</title>
|
||||
<title><anchor id="wire-write-int8" role="function"/>wire_write_int8 ()</title>
|
||||
<indexterm><primary>wire_write_int8</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_write_int8 (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="guint8">guint8</link> *data,
|
||||
<link linkend="gint">gint</link> count,
|
||||
@ -640,7 +643,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-write-double"/>wire_write_double ()</title>
|
||||
<title><anchor id="wire-write-double" role="function"/>wire_write_double ()</title>
|
||||
<indexterm><primary>wire_write_double</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_write_double (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="gdouble">gdouble</link> *data,
|
||||
<link linkend="gint">gint</link> count,
|
||||
@ -666,7 +669,7 @@ it's plug-ins.
|
||||
</simpara></listitem></varlistentry>
|
||||
</variablelist></refsect2>
|
||||
<refsect2>
|
||||
<title><anchor id="wire-write-string"/>wire_write_string ()</title>
|
||||
<title><anchor id="wire-write-string" role="function"/>wire_write_string ()</title>
|
||||
<indexterm><primary>wire_write_string</primary></indexterm><programlisting><link linkend="gboolean">gboolean</link> wire_write_string (<link linkend="GIOChannel">GIOChannel</link> *channel,
|
||||
<link linkend="gchar">gchar</link> **data,
|
||||
<link linkend="gint">gint</link> count,
|
||||
|
||||
Reference in New Issue
Block a user