forked from AuroraMiddleware/gtk
Remove some dead templates
This commit is contained in:
parent
242c2a389d
commit
bcdfd15893
File diff suppressed because it is too large
Load Diff
@ -1,265 +0,0 @@
|
||||
<!-- ##### SECTION Title ##### -->
|
||||
GtkPreview
|
||||
|
||||
<!-- ##### SECTION Short_Description ##### -->
|
||||
A widget to display RGB or grayscale data
|
||||
|
||||
<!-- ##### SECTION Long_Description ##### -->
|
||||
<para>
|
||||
The #GtkPreview widget provides a simple interface
|
||||
used to display images as RGB or grayscale data.
|
||||
It's deprecated; just use a #GdkPixbuf displayed by a #GtkImage, or
|
||||
perhaps a #GtkDrawingArea. #GtkPreview has no advantage over those
|
||||
approaches.
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION See_Also ##### -->
|
||||
<para>
|
||||
<variablelist>
|
||||
|
||||
<varlistentry>
|
||||
<term>#GdkRGB</term>
|
||||
<listitem><para>the backend used by #GtkPreview.</para></listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GtkPreview ##### -->
|
||||
<para>
|
||||
The #GtkPreview-struct struct contains private data only, and
|
||||
should be accessed using the functions below.
|
||||
</para>
|
||||
|
||||
|
||||
<!-- ##### ARG GtkPreview:expand ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
<!-- ##### STRUCT GtkPreviewInfo ##### -->
|
||||
<para>
|
||||
Contains information about global properties
|
||||
of preview widgets.
|
||||
|
||||
The #GtkPreviewInfo struct contains the following fields.
|
||||
(These fields should be considered read-only. They should never be set by
|
||||
an application.)
|
||||
|
||||
<informaltable pgwide="1" frame="none" role="struct">
|
||||
<tgroup cols="2"><colspec colwidth="2*"/><colspec colwidth="8*"/>
|
||||
<tbody>
|
||||
|
||||
<row>
|
||||
<entry>#GdkVisual *visual;</entry>
|
||||
<entry>the visual used by all previews.</entry>
|
||||
</row>
|
||||
|
||||
<row>
|
||||
<entry>#GdkColormap *cmap;</entry>
|
||||
<entry>the colormap used by all previews.</entry>
|
||||
</row>
|
||||
|
||||
<row>
|
||||
<entry>gdouble gamma;</entry>
|
||||
<entry>the gamma correction value used by all previews (See gtk_preview_set_gamma()).</entry>
|
||||
</row>
|
||||
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</informaltable>
|
||||
|
||||
</para>
|
||||
|
||||
@lookup:
|
||||
@gamma:
|
||||
|
||||
<!-- ##### UNION GtkDitherInfo ##### -->
|
||||
<para>
|
||||
This union not used in GTK+.
|
||||
</para>
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_uninit ##### -->
|
||||
<para>
|
||||
This function is deprecated and does nothing.
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_new ##### -->
|
||||
<para>
|
||||
Create a new preview widget.
|
||||
</para>
|
||||
|
||||
@type: the type data contained by the widget.
|
||||
(Grayscale or RGB)
|
||||
@Returns: a new #GtkPreview
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_size ##### -->
|
||||
<para>
|
||||
Set the size that the preview widget will request
|
||||
in response to a "size_request" signal. The
|
||||
drawing area may actually be allocated a size
|
||||
larger than this depending on how it is packed
|
||||
within the enclosing containers. The effect
|
||||
of this is determined by whether the preview
|
||||
is set to expand or not (see gtk_preview_expand())
|
||||
</para>
|
||||
|
||||
@preview: a #GtkPreview.
|
||||
@width: the new width.
|
||||
@height: the new height.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_put ##### -->
|
||||
<para>
|
||||
Takes a portion of the contents of a preview widget
|
||||
and draws it onto the given drawable, @window.
|
||||
</para>
|
||||
|
||||
@preview: a #GtkPreview.
|
||||
@window: a window or pixmap.
|
||||
@gc: The graphics context for the operation. Only the
|
||||
clip mask for this GC matters.
|
||||
@srcx: the x coordinate of the upper left corner in the source image.
|
||||
@srcy: the y coordinate of the upper left corner in the source image.
|
||||
@destx: the x coordinate of the upper left corner in the destination image.
|
||||
@desty: the y coordinate of the upper left corner in the destination image.
|
||||
@width: the width of the rectangular portion to draw.
|
||||
@height: the height of the rectangular portion to draw.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_draw_row ##### -->
|
||||
<para>
|
||||
Sets the data for a portion of a row.
|
||||
</para>
|
||||
|
||||
@preview: a #GtkPreview.
|
||||
@data: the new data for the portion. It should contain
|
||||
@w bytes of data if the preview is of type
|
||||
GTK_TYPE_GRAYSCALE, and 3*@w bytes of data
|
||||
if the preview is of type GTK_TYPE_COLOR.
|
||||
@x: the starting value on the row to set.
|
||||
@y: the row to change.
|
||||
@w: the number of pixels in the row to change.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_set_expand ##### -->
|
||||
<para>
|
||||
Determines the way that the the preview widget behaves
|
||||
when the size it is allocated is larger than the requested
|
||||
size. If @expand is %FALSE, then the preview's window
|
||||
and buffer will be no larger than the size set with
|
||||
gtk_preview_size(), and the data set will be centered
|
||||
in the allocation if it is larger. If @expand is %TRUE
|
||||
then the window and buffer will expand with the allocation;
|
||||
the application is responsible for catching
|
||||
the "size_allocate" signal and providing the data
|
||||
appropriate for this size.
|
||||
</para>
|
||||
|
||||
@preview: a #GtkPreview.
|
||||
@expand: whether the preview's window should expand or not.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_set_gamma ##### -->
|
||||
<para>
|
||||
Set the gamma-correction value for all preview widgets.
|
||||
(This function will eventually be replaced with a
|
||||
function that sets a per-preview-widget gamma value).
|
||||
The resulting intensity is given by:
|
||||
<literal>destination_value * pow (source_value/255, 1/gamma)</literal>.
|
||||
The gamma value is applied when the data is
|
||||
set with gtk_preview_draw_row() so changing this
|
||||
value will not affect existing data in preview
|
||||
widgets.
|
||||
</para>
|
||||
|
||||
@gamma_: the new gamma value.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_set_color_cube ##### -->
|
||||
<para>
|
||||
This function is deprecated and does nothing. GdkRGB
|
||||
automatically picks an optimium color cube for the
|
||||
display.
|
||||
</para>
|
||||
|
||||
@nred_shades: ignored
|
||||
@ngreen_shades: ignored
|
||||
@nblue_shades: ignored
|
||||
@ngray_shades: ignored
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_set_install_cmap ##### -->
|
||||
<para>
|
||||
This function is deprecated
|
||||
and does nothing. GdkRGB will automatically pick
|
||||
a private colormap if it cannot allocate sufficient
|
||||
colors.
|
||||
</para>
|
||||
|
||||
@install_cmap: ignored.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_set_reserved ##### -->
|
||||
<para>
|
||||
This function is deprecated and does nothing.
|
||||
</para>
|
||||
|
||||
@nreserved: ignored.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_set_dither ##### -->
|
||||
<para>
|
||||
Set the dithering mode for the display.
|
||||
</para>
|
||||
|
||||
@preview: a #GtkPreview.
|
||||
@dither: the dithering mode.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_get_visual ##### -->
|
||||
<para>
|
||||
Returns the visual used by preview widgets. This
|
||||
function is deprecated, and you should use
|
||||
gdk_rgb_get_visual() instead.
|
||||
</para>
|
||||
|
||||
@Returns: the visual for previews.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_get_cmap ##### -->
|
||||
<para>
|
||||
Returns the colormap used by preview widgets. This
|
||||
function is deprecated, and you should use
|
||||
gdk_rgb_get_cmap() instead.
|
||||
</para>
|
||||
|
||||
@Returns: the colormap for previews.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_get_info ##### -->
|
||||
<para>
|
||||
Return a #GtkPreviewInfo structure containing
|
||||
global information about preview widgets.
|
||||
</para>
|
||||
|
||||
@Returns: a #GtkPreviewInfo structure. The return
|
||||
value belongs to GTK+ and must not be modified
|
||||
or freed.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_preview_reset ##### -->
|
||||
<para>
|
||||
This function is deprecated and does nothing. It was
|
||||
once used for changing the colormap and visual on the fly.
|
||||
</para>
|
||||
|
||||
|
||||
|
@ -1,215 +0,0 @@
|
||||
<!-- ##### SECTION Title ##### -->
|
||||
GtkProgress
|
||||
|
||||
<!-- ##### SECTION Short_Description ##### -->
|
||||
Base class for GtkProgressBar
|
||||
|
||||
<!-- ##### SECTION Long_Description ##### -->
|
||||
<para>
|
||||
A #GtkProgress is the abstract base class used to derive
|
||||
a #GtkProgressBar which provides a visual representation of
|
||||
the progress of a long running operation.
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION See_Also ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GtkProgress ##### -->
|
||||
<para>
|
||||
The #GtkProgress-struct struct contains private data only.
|
||||
and should be accessed using the functions below.
|
||||
</para>
|
||||
|
||||
|
||||
<!-- ##### ARG GtkProgress:activity-mode ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
<!-- ##### ARG GtkProgress:show-text ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
<!-- ##### ARG GtkProgress:text-xalign ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
<!-- ##### ARG GtkProgress:text-yalign ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
<!-- ##### FUNCTION gtk_progress_set_show_text ##### -->
|
||||
<para>
|
||||
Controls whether progress text is shown.
|
||||
</para>
|
||||
|
||||
@progress: a #GtkProgress.
|
||||
@show_text: a boolean indicating whether the progress text
|
||||
is shown.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_progress_set_text_alignment ##### -->
|
||||
<para>
|
||||
Controls the alignment of the text within the progress bar area.
|
||||
</para>
|
||||
|
||||
@progress: a #GtkProgress.
|
||||
@x_align: a number between 0.0 and 1.0 indicating the horizontal
|
||||
alignment of the progress text within the #GtkProgress.
|
||||
@y_align: a number between 0.0 and 1.0 indicating the vertical
|
||||
alignment of the progress text within the #GtkProgress.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_progress_set_format_string ##### -->
|
||||
<para>
|
||||
Sets a format string used to display text indicating the
|
||||
current progress. The string can contain the following substitution characters:
|
||||
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>
|
||||
%v - the current progress value.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
%l - the lower bound for the progress value.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
%u - the upper bound for the progress value.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
%p - the current progress percentage.
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</para>
|
||||
|
||||
@progress: a #GtkProgress.
|
||||
@format: a string used to display progress text, or %NULL
|
||||
to restore to the default format.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_progress_set_adjustment ##### -->
|
||||
<para>
|
||||
Associates a #GtkAdjustment with the #GtkProgress. A #GtkAdjustment
|
||||
is used to represent the upper and lower bounds and the step interval
|
||||
of the underlying value for which progress is shown.
|
||||
</para>
|
||||
|
||||
@progress: a #GtkProgress.
|
||||
@adjustment: the #GtkAdjustment to be associated with the #GtkProgress.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_progress_set_percentage ##### -->
|
||||
<para>
|
||||
Sets the current percentage completion for the #GtkProgress.
|
||||
</para>
|
||||
|
||||
@progress: a #GtkProgress.
|
||||
@percentage: the percentage complete which must be between 0.0
|
||||
and 1.0.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_progress_set_value ##### -->
|
||||
<para>
|
||||
Sets the value within the #GtkProgress to an absolute value.
|
||||
The value must be within the valid range of values for the
|
||||
underlying #GtkAdjustment.
|
||||
</para>
|
||||
|
||||
@progress: a #GtkProgress.
|
||||
@value: the value indicating the current completed amount.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_progress_get_value ##### -->
|
||||
<para>
|
||||
Returns the current progress complete value.
|
||||
</para>
|
||||
|
||||
@progress: a #GtkProgress.
|
||||
@Returns: the current progress complete value.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_progress_set_activity_mode ##### -->
|
||||
<para>
|
||||
A #GtkProgress can be in one of two different modes: percentage
|
||||
mode (the default) and activity mode. In activity mode, the
|
||||
progress is simply indicated as activity rather than as a percentage
|
||||
complete.
|
||||
</para>
|
||||
|
||||
@progress: a #GtkProgress.
|
||||
@activity_mode: a boolean, %TRUE for activity mode.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_progress_get_current_text ##### -->
|
||||
<para>
|
||||
Returns the current text associated with the #GtkProgress. This
|
||||
text is the based on the underlying format string after any substitutions
|
||||
are made.
|
||||
</para>
|
||||
|
||||
@progress: a #GtkProgress.
|
||||
@Returns: the text indicating the current progress.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_progress_get_text_from_value ##### -->
|
||||
<para>
|
||||
Returns the text indicating the progress based on the supplied value.
|
||||
The current value for the #GtkProgress remains unchanged.
|
||||
</para>
|
||||
|
||||
@progress: a #GtkProgress.
|
||||
@value: an absolute progress value to use when formatting the progress text.
|
||||
@Returns: a string indicating the progress.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_progress_get_current_percentage ##### -->
|
||||
<para>
|
||||
Returns the current progress as a percentage.
|
||||
</para>
|
||||
|
||||
@progress: a #GtkProgress.
|
||||
@Returns: a number between 0.0 and 1.0 indicating the percentage complete.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_progress_get_percentage_from_value ##### -->
|
||||
<para>
|
||||
Returns the progress as a percentage calculated from the supplied
|
||||
absolute progress value.
|
||||
</para>
|
||||
|
||||
@progress: a #GtkProgress.
|
||||
@value: an absolute progress value.
|
||||
@Returns: a number between 0.0 and 1.0 indicating the percentage complete
|
||||
represented by @value.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_progress_configure ##### -->
|
||||
<para>
|
||||
Allows the configuration of the minimum, maximum, and current values for
|
||||
the #GtkProgress.
|
||||
</para>
|
||||
|
||||
@progress: a #GtkProgress.
|
||||
@value: the current progress value.
|
||||
@min: the minimum progress value.
|
||||
@max: the maximum progress value.
|
||||
|
||||
|
@ -1,19 +0,0 @@
|
||||
<!-- ##### SECTION Title ##### -->
|
||||
Themes
|
||||
|
||||
<!-- ##### SECTION Short_Description ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Long_Description ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION See_Also ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
@ -1,163 +0,0 @@
|
||||
<!-- ##### SECTION Title ##### -->
|
||||
GtkTipsQuery
|
||||
|
||||
<!-- ##### SECTION Short_Description ##### -->
|
||||
Displays help about widgets in the user interface
|
||||
|
||||
<!-- ##### SECTION Long_Description ##### -->
|
||||
<para>
|
||||
The #GtkTipsQuery widget is a subclass of #GtkLabel which is used to display
|
||||
help about widgets in a user interface.
|
||||
</para>
|
||||
<para>
|
||||
A query is started with a call to gtk_tips_query_start_query(), usually
|
||||
when some kind of 'Help' button is pressed. The #GtkTipsQuery then grabs all
|
||||
events, stopping the user interface from functioning normally.
|
||||
Then as the user moves the mouse over the widgets, the #GtkTipsQuery displays
|
||||
each widget's tooltip text.
|
||||
</para>
|
||||
<para>
|
||||
By connecting to the "widget-entered" or "widget-selected" signals, it is
|
||||
possible to customize the #GtkTipsQuery to perform other actions when widgets
|
||||
are entered or selected. For example, a help browser could be opened with
|
||||
documentation on the widget selected.
|
||||
</para>
|
||||
<para>
|
||||
At some point a call to gtk_tips_query_stop_query() must be made in order to
|
||||
stop the query and return the interface to its normal state.
|
||||
The gtk_tips_query_set_caller() function can be used to specify a widget
|
||||
which the user can select to stop the query (often the same button used to
|
||||
start the query).
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION See_Also ##### -->
|
||||
<para>
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>#GtkTooltips</term>
|
||||
<listitem><para>the object which handles tooltips.</para></listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GtkTipsQuery ##### -->
|
||||
<para>
|
||||
The #GtkTipsQuery-struct struct contains private data only, and
|
||||
should be accessed using the functions below.
|
||||
</para>
|
||||
|
||||
|
||||
<!-- ##### SIGNAL GtkTipsQuery::start-query ##### -->
|
||||
<para>
|
||||
Emitted when the query is started.
|
||||
</para>
|
||||
|
||||
@tipsquery: the object which received the signal.
|
||||
|
||||
<!-- ##### SIGNAL GtkTipsQuery::stop-query ##### -->
|
||||
<para>
|
||||
Emitted when the query is stopped.
|
||||
</para>
|
||||
|
||||
@tipsquery: the object which received the signal.
|
||||
|
||||
<!-- ##### SIGNAL GtkTipsQuery::widget-entered ##### -->
|
||||
<para>
|
||||
Emitted when a widget is entered by the pointer while the query is in effect.
|
||||
</para>
|
||||
|
||||
@tipsquery: the object which received the signal.
|
||||
@widget: the widget that was entered by the pointer.
|
||||
@tip_text: the widget's tooltip.
|
||||
@tip_private: the widget's private tooltip (see gtk_tooltips_set_tip()).
|
||||
|
||||
<!-- ##### SIGNAL GtkTipsQuery::widget-selected ##### -->
|
||||
<para>
|
||||
Emitted when a widget is selected during a query.
|
||||
</para>
|
||||
|
||||
@tipsquery: the object which received the signal.
|
||||
@widget: the widget that was selected.
|
||||
@tip_text: the widget's tooltip.
|
||||
@tip_private: the widget's private tooltip (see gtk_tooltips_set_tip()).
|
||||
@event: the button press or button release event.
|
||||
@Returns: %TRUE if the query should be stopped.
|
||||
|
||||
<!-- ##### ARG GtkTipsQuery:caller ##### -->
|
||||
<para>
|
||||
The widget that starts the tips query, usually a button.
|
||||
If it is selected while the query is in effect the query is automatically
|
||||
stopped.
|
||||
</para>
|
||||
|
||||
<!-- ##### ARG GtkTipsQuery:emit-always ##### -->
|
||||
<para>
|
||||
%TRUE if the widget-entered and widget-selected signals are emitted even when
|
||||
the widget has no tooltip set.
|
||||
</para>
|
||||
|
||||
<!-- ##### ARG GtkTipsQuery:label-inactive ##### -->
|
||||
<para>
|
||||
The text to display in the #GtkTipsQuery widget when the query is not in
|
||||
effect.
|
||||
</para>
|
||||
|
||||
<!-- ##### ARG GtkTipsQuery:label-no-tip ##### -->
|
||||
<para>
|
||||
The text to display in the #GtkTipsQuery widget when the query is running
|
||||
and the widget that the pointer is over has no tooltip.
|
||||
</para>
|
||||
|
||||
<!-- ##### FUNCTION gtk_tips_query_new ##### -->
|
||||
<para>
|
||||
Creates a new #GtkTipsQuery.
|
||||
</para>
|
||||
|
||||
@Returns: a new #GtkTipsQuery.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_tips_query_start_query ##### -->
|
||||
<para>
|
||||
Starts a query.
|
||||
The #GtkTipsQuery widget will take control of the mouse and as the mouse
|
||||
moves it will display the tooltip of the widget beneath the mouse.
|
||||
</para>
|
||||
|
||||
@tips_query: a #GtkTipsQuery.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_tips_query_stop_query ##### -->
|
||||
<para>
|
||||
Stops a query.
|
||||
</para>
|
||||
|
||||
@tips_query: a #GtkTipsQuery.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_tips_query_set_caller ##### -->
|
||||
<para>
|
||||
Sets the widget which initiates the query, usually a button.
|
||||
If the @caller is selected while the query is running, the query is
|
||||
automatically stopped.
|
||||
</para>
|
||||
|
||||
@tips_query: a #GtkTipsQuery.
|
||||
@caller: the widget which initiates the query.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_tips_query_set_labels ##### -->
|
||||
<para>
|
||||
Sets the text to display when the query is not in effect,
|
||||
and the text to display when the query is in effect but the widget beneath
|
||||
the pointer has no tooltip.
|
||||
</para>
|
||||
|
||||
@tips_query: a #GtkTipsQuery.
|
||||
@label_inactive: the text to display when the query is not running.
|
||||
@label_no_tip: the text to display when the query is running but the widget
|
||||
beneath the pointer has no tooltip.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user