Imported Upstream version 2.3.12

This commit is contained in:
Ari Pollak
2010-08-11 01:20:17 -04:00
parent 79785b4adf
commit a028e0b309
1105 changed files with 114178 additions and 65152 deletions

View File

@ -3,7 +3,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>GimpQueryBox</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.70.1">
<meta name="generator" content="DocBook XSL Stylesheets V1.71.0">
<link rel="start" href="index.html" title="GIMP Widgets Library Reference Manual">
<link rel="up" href="libgimpwidgets-utils.html" title="Part&#160;V.&#160;GIMP Widgets Utilities">
<link rel="prev" href="libgimpwidgets-GimpHelpUI.html" title="GimpHelpUI">
@ -33,16 +33,16 @@
<th width="100%" align="center">GIMP Widgets Library Reference Manual</th>
<td><a accesskey="n" href="GimpSizeEntry.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr>
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2594563" class="shortcut">Top</a>
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2568350" class="shortcut">Top</a>
&#160;|&#160;
<a href="#id2642786" class="shortcut">Description</a></nobr></td></tr>
<a href="#id2634808" class="shortcut">Description</a></nobr></td></tr>
</table>
<div class="refentry" lang="en">
<a name="libgimpwidgets-GimpQueryBox"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2>
<a name="id2594563"></a><span class="refentrytitle">GimpQueryBox</span>
<a name="id2568350"></a><span class="refentrytitle">GimpQueryBox</span>
</h2>
<p>GimpQueryBox &#8212; Some simple dialogs to enter a single int, double, string or boolean value.</p>
</td>
@ -141,7 +141,7 @@ GtkWidget* <a href="libgimpwidgets-GimpQueryBox.html#gimp-query-boolean-box">gi
</pre>
</div>
<div class="refsect1" lang="en">
<a name="id2642786"></a><h2>Description</h2>
<a name="id2634808"></a><h2>Description</h2>
<p>
These functions provide simple dialogs for entering a single string,
integer, double, boolean or pixel size value.
@ -158,11 +158,11 @@ callback function is called and returns the entered value.
</p>
</div>
<div class="refsect1" lang="en">
<a name="id2642831"></a><h2>Details</h2>
<a name="id2634854"></a><h2>Details</h2>
<div class="refsect2" lang="en">
<a name="id2642842"></a><h3>
<a name="id2634864"></a><h3>
<a name="GimpQueryStringCallback"></a>GimpQueryStringCallback ()</h3>
<a class="indexterm" name="id2642853"></a><pre class="programlisting">void (*GimpQueryStringCallback) (GtkWidget *query_box,
<a class="indexterm" name="id2634876"></a><pre class="programlisting">void (*GimpQueryStringCallback) (GtkWidget *query_box,
const gchar *string,
gpointer data);</pre>
<p>
@ -196,9 +196,9 @@ Note that you have to <code class="function">g_free()</code> the returned string
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2642949"></a><h3>
<a name="id2634971"></a><h3>
<a name="GimpQueryIntCallback"></a>GimpQueryIntCallback ()</h3>
<a class="indexterm" name="id2642960"></a><pre class="programlisting">void (*GimpQueryIntCallback) (GtkWidget *query_box,
<a class="indexterm" name="id2634982"></a><pre class="programlisting">void (*GimpQueryIntCallback) (GtkWidget *query_box,
gint value,
gpointer data);</pre>
<p>
@ -232,9 +232,9 @@ Note that you have to <code class="function">g_free()</code> the returned string
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2647640"></a><h3>
<a name="id2640512"></a><h3>
<a name="GimpQueryDoubleCallback"></a>GimpQueryDoubleCallback ()</h3>
<a class="indexterm" name="id2647650"></a><pre class="programlisting">void (*GimpQueryDoubleCallback) (GtkWidget *query_box,
<a class="indexterm" name="id2640522"></a><pre class="programlisting">void (*GimpQueryDoubleCallback) (GtkWidget *query_box,
gdouble value,
gpointer data);</pre>
<p>
@ -268,9 +268,9 @@ Note that you have to <code class="function">g_free()</code> the returned string
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2647728"></a><h3>
<a name="id2640600"></a><h3>
<a name="GimpQuerySizeCallback"></a>GimpQuerySizeCallback ()</h3>
<a class="indexterm" name="id2647738"></a><pre class="programlisting">void (*GimpQuerySizeCallback) (GtkWidget *query_box,
<a class="indexterm" name="id2640610"></a><pre class="programlisting">void (*GimpQuerySizeCallback) (GtkWidget *query_box,
gdouble size,
<a
href="../libgimpbase/libgimpbase-gimpunit.html#GimpUnit"
@ -313,9 +313,9 @@ href="../libgimpbase/libgimpbase-gimpunit.html#GimpUnit"
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2647848"></a><h3>
<a name="id2640722"></a><h3>
<a name="GimpQueryBooleanCallback"></a>GimpQueryBooleanCallback ()</h3>
<a class="indexterm" name="id2647859"></a><pre class="programlisting">void (*GimpQueryBooleanCallback) (GtkWidget *query_box,
<a class="indexterm" name="id2640733"></a><pre class="programlisting">void (*GimpQueryBooleanCallback) (GtkWidget *query_box,
gboolean value,
gpointer data);</pre>
<p>
@ -349,9 +349,9 @@ href="../libgimpbase/libgimpbase-gimpunit.html#GimpUnit"
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2647947"></a><h3>
<a name="id2640821"></a><h3>
<a name="gimp-query-string-box"></a>gimp_query_string_box ()</h3>
<a class="indexterm" name="id2647958"></a><pre class="programlisting">GtkWidget* gimp_query_string_box (const gchar *title,
<a class="indexterm" name="id2640832"></a><pre class="programlisting">GtkWidget* gimp_query_string_box (const gchar *title,
GtkWidget *parent,
<a href="libgimpwidgets-GimpHelpUI.html#GimpHelpFunc">GimpHelpFunc</a> help_func,
const gchar *help_id,
@ -440,9 +440,9 @@ Creates a new <span class="type">GtkDialog</span> that queries the user for a st
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2648226"></a><h3>
<a name="id2641100"></a><h3>
<a name="gimp-query-int-box"></a>gimp_query_int_box ()</h3>
<a class="indexterm" name="id2648239"></a><pre class="programlisting">GtkWidget* gimp_query_int_box (const gchar *title,
<a class="indexterm" name="id2641112"></a><pre class="programlisting">GtkWidget* gimp_query_int_box (const gchar *title,
GtkWidget *parent,
<a href="libgimpwidgets-GimpHelpUI.html#GimpHelpFunc">GimpHelpFunc</a> help_func,
const gchar *help_id,
@ -545,9 +545,9 @@ Creates a new <span class="type">GtkDialog</span> that queries the user for an i
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2648513"></a><h3>
<a name="id2641392"></a><h3>
<a name="gimp-query-double-box"></a>gimp_query_double_box ()</h3>
<a class="indexterm" name="id2648523"></a><pre class="programlisting">GtkWidget* gimp_query_double_box (const gchar *title,
<a class="indexterm" name="id2641403"></a><pre class="programlisting">GtkWidget* gimp_query_double_box (const gchar *title,
GtkWidget *parent,
<a href="libgimpwidgets-GimpHelpUI.html#GimpHelpFunc">GimpHelpFunc</a> help_func,
const gchar *help_id,
@ -657,9 +657,9 @@ Creates a new <span class="type">GtkDialog</span> that queries the user for a do
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2648834"></a><h3>
<a name="id2641713"></a><h3>
<a name="gimp-query-size-box"></a>gimp_query_size_box ()</h3>
<a class="indexterm" name="id2648844"></a><pre class="programlisting">GtkWidget* gimp_query_size_box (const gchar *title,
<a class="indexterm" name="id2641723"></a><pre class="programlisting">GtkWidget* gimp_query_size_box (const gchar *title,
GtkWidget *parent,
<a href="libgimpwidgets-GimpHelpUI.html#GimpHelpFunc">GimpHelpFunc</a> help_func,
const gchar *help_id,
@ -796,9 +796,9 @@ Creates a new <span class="type">GtkDialog</span> that queries the user for a si
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2649244"></a><h3>
<a name="id2642122"></a><h3>
<a name="gimp-query-boolean-box"></a>gimp_query_boolean_box ()</h3>
<a class="indexterm" name="id2649254"></a><pre class="programlisting">GtkWidget* gimp_query_boolean_box (const gchar *title,
<a class="indexterm" name="id2642133"></a><pre class="programlisting">GtkWidget* gimp_query_boolean_box (const gchar *title,
GtkWidget *parent,
<a href="libgimpwidgets-GimpHelpUI.html#GimpHelpFunc">GimpHelpFunc</a> help_func,
const gchar *help_id,
@ -904,9 +904,9 @@ Creates a new <span class="type">GtkDialog</span> that asks the user to do a boo
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2649544"></a><h3>
<a name="id2642421"></a><h3>
<a name="GIMP-QUERY-BOX-VBOX:CAPS"></a>GIMP_QUERY_BOX_VBOX()</h3>
<a class="indexterm" name="id2649554"></a><pre class="programlisting">#define GIMP_QUERY_BOX_VBOX(qbox)</pre>
<a class="indexterm" name="id2642432"></a><pre class="programlisting">#define GIMP_QUERY_BOX_VBOX(qbox)</pre>
<p>
A macro to access the <span class="type">GtkVBox</span> in a <span class="type">GimpQueryBox</span>. Useful if you want to add
more widgets.
@ -925,7 +925,7 @@ more widgets.
</div>
</div>
<div class="refsect1" lang="en">
<a name="id2649600"></a><h2>See Also</h2>
<a name="id2642477"></a><h2>See Also</h2>
<p>
GimpSizeEntry
</p>