]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtktipsquery.h
Ignore files added by make check
[~andy/gtk] / gtk / gtktipsquery.h
index 06033c2ca433d65c8edfe9ba8d59e0a3f056cd81..2a09baed14bc24044f77bb80398ee9622687904b 100644 (file)
@@ -5,36 +5,46 @@
  * Copyright (C) 1998 Tim Janik
  *
  * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
+ * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2 of the License, or (at your option) any later version.
  *
  * This library is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
+ * Lesser General Public License for more details.
  *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the Free
- * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
  */
-#ifndef __GTKTIPSQUERY_H__
-#define __GTKTIPSQUERY_H__
 
+/*
+ * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
+ * file for a list of people on the GTK+ Team.  See the ChangeLog
+ * files for a list of changes.  These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
+ */
 
-#include <gtk/gtklabel.h>
+#ifndef GTK_DISABLE_DEPRECATED
+
+#ifndef __GTK_TIPS_QUERY_H__
+#define __GTK_TIPS_QUERY_H__
 
 
-#ifdef __cplusplus
-extern "C" {
-#pragma }
-#endif /* __cplusplus */
+#include <gtk/gtklabel.h>
+
 
+G_BEGIN_DECLS
 
 /* --- type macros --- */
-#define GTK_TIPS_QUERY(obj)            (GTK_CHECK_CAST (obj, gtk_tips_query_get_type (), GtkTipsQuery))
-#define GTK_TIPS_QUERY_CLASS(klass)    (GTK_CHECK_CLASS_CAST (klass, gtk_tips_query_get_type (), GtkTipsQueryClass))
-#define GTK_IS_TIPS_QUERY(obj)         (GTK_CHECK_TYPE (obj, gtk_tips_query_get_type ()))
+#define        GTK_TYPE_TIPS_QUERY             (gtk_tips_query_get_type ())
+#define GTK_TIPS_QUERY(obj)            (GTK_CHECK_CAST ((obj), GTK_TYPE_TIPS_QUERY, GtkTipsQuery))
+#define GTK_TIPS_QUERY_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_TIPS_QUERY, GtkTipsQueryClass))
+#define GTK_IS_TIPS_QUERY(obj)         (GTK_CHECK_TYPE ((obj), GTK_TYPE_TIPS_QUERY))
+#define GTK_IS_TIPS_QUERY_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TIPS_QUERY))
+#define GTK_TIPS_QUERY_GET_CLASS(obj)   (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_TIPS_QUERY, GtkTipsQueryClass))
 
 
 /* --- typedefs --- */
@@ -54,7 +64,8 @@ struct        _GtkTipsQuery
 
   GtkWidget    *caller;
   GtkWidget    *last_crossed;
-  GSList       *event_restore_list;
+
+  GdkCursor    *query_cursor;
 };
 
 struct _GtkTipsQueryClass
@@ -72,11 +83,17 @@ struct      _GtkTipsQueryClass
                                 const gchar    *tip_text,
                                 const gchar    *tip_private,
                                 GdkEventButton *event);
+
+  /* Padding for future expansion */
+  void (*_gtk_reserved1) (void);
+  void (*_gtk_reserved2) (void);
+  void (*_gtk_reserved3) (void);
+  void (*_gtk_reserved4) (void);
 };
 
 
 /* --- prototypes --- */
-GtkType                gtk_tips_query_get_type         (void);
+GtkType                gtk_tips_query_get_type         (void) G_GNUC_CONST;
 GtkWidget*     gtk_tips_query_new              (void);
 void           gtk_tips_query_start_query      (GtkTipsQuery   *tips_query);
 void           gtk_tips_query_stop_query       (GtkTipsQuery   *tips_query);
@@ -86,12 +103,8 @@ void                gtk_tips_query_set_labels       (GtkTipsQuery   *tips_query,
                                                 const gchar    *label_inactive,
                                                 const gchar    *label_no_tip);
      
+G_END_DECLS
 
+#endif /* __GTK_TIPS_QUERY_H__ */
 
-#ifdef __cplusplus
-#pragma {
-}
-#endif /* __cplusplus */
-
-
-#endif /* __GTKTIPSQUERY_H__ */
+#endif /* GTK_DISABLE_DEPRECATED */