]> Pileus Git - ~andy/gtk/blob - gtk/gtktipsquery.h
Revert name change
[~andy/gtk] / gtk / gtktipsquery.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * GtkQueryTips: Query onscreen widgets for their tooltips
5  * Copyright (C) 1998 Tim Janik
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /*
24  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
25  * file for a list of people on the GTK+ Team.  See the ChangeLog
26  * files for a list of changes.  These files are distributed with
27  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
28  */
29
30 #ifndef GTK_DISABLE_DEPRECATED
31
32 #ifndef __GTK_TIPS_QUERY_H__
33 #define __GTK_TIPS_QUERY_H__
34
35 #include <gtk/gtk.h>
36
37
38 G_BEGIN_DECLS
39
40 /* --- type macros --- */
41 #define GTK_TYPE_TIPS_QUERY             (gtk_tips_query_get_type ())
42 #define GTK_TIPS_QUERY(obj)             (GTK_CHECK_CAST ((obj), GTK_TYPE_TIPS_QUERY, GtkTipsQuery))
43 #define GTK_TIPS_QUERY_CLASS(klass)     (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_TIPS_QUERY, GtkTipsQueryClass))
44 #define GTK_IS_TIPS_QUERY(obj)          (GTK_CHECK_TYPE ((obj), GTK_TYPE_TIPS_QUERY))
45 #define GTK_IS_TIPS_QUERY_CLASS(klass)  (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TIPS_QUERY))
46 #define GTK_TIPS_QUERY_GET_CLASS(obj)   (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_TIPS_QUERY, GtkTipsQueryClass))
47
48
49 /* --- typedefs --- */
50 typedef struct  _GtkTipsQuery           GtkTipsQuery;
51 typedef struct  _GtkTipsQueryClass      GtkTipsQueryClass;
52
53
54 /* --- structures --- */
55 struct  _GtkTipsQuery
56 {
57   GtkLabel      label;
58
59   guint         emit_always : 1;
60   guint         in_query : 1;
61   gchar         *label_inactive;
62   gchar         *label_no_tip;
63
64   GtkWidget     *caller;
65   GtkWidget     *last_crossed;
66
67   GdkCursor     *query_cursor;
68 };
69
70 struct  _GtkTipsQueryClass
71 {
72   GtkLabelClass                 parent_class;
73
74   void  (*start_query)          (GtkTipsQuery   *tips_query);
75   void  (*stop_query)           (GtkTipsQuery   *tips_query);
76   void  (*widget_entered)       (GtkTipsQuery   *tips_query,
77                                  GtkWidget      *widget,
78                                  const gchar    *tip_text,
79                                  const gchar    *tip_private);
80   gint  (*widget_selected)      (GtkTipsQuery   *tips_query,
81                                  GtkWidget      *widget,
82                                  const gchar    *tip_text,
83                                  const gchar    *tip_private,
84                                  GdkEventButton *event);
85
86   /* Padding for future expansion */
87   void (*_gtk_reserved1) (void);
88   void (*_gtk_reserved2) (void);
89   void (*_gtk_reserved3) (void);
90   void (*_gtk_reserved4) (void);
91 };
92
93
94 /* --- prototypes --- */
95 GtkType         gtk_tips_query_get_type         (void) G_GNUC_CONST;
96 GtkWidget*      gtk_tips_query_new              (void);
97 void            gtk_tips_query_start_query      (GtkTipsQuery   *tips_query);
98 void            gtk_tips_query_stop_query       (GtkTipsQuery   *tips_query);
99 void            gtk_tips_query_set_caller       (GtkTipsQuery   *tips_query,
100                                                  GtkWidget      *caller);
101 void            gtk_tips_query_set_labels       (GtkTipsQuery   *tips_query,
102                                                  const gchar    *label_inactive,
103                                                  const gchar    *label_no_tip);
104      
105 G_END_DECLS
106
107 #endif  /* __GTK_TIPS_QUERY_H__ */
108
109 #endif /* GTK_DISABLE_DEPRECATED */