]> Pileus Git - ~andy/gtk/blobdiff - gtk/a11y/gailutil.h
GtkImageCellAccessible: add a private struct
[~andy/gtk] / gtk / a11y / gailutil.h
index 0e533c2da55a2bb8f850dabd85770c523830a961..f89d1d672f9d6e83e78cd8c5a925c9cb3aba7888 100644 (file)
@@ -12,9 +12,7 @@
  * Library 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., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifndef __GAIL_UTIL_H__
 
 G_BEGIN_DECLS
 
-#define GAIL_TYPE_UTIL                           (gail_util_get_type ())
-#define GAIL_UTIL(obj)                           (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAIL_TYPE_UTIL, GailUtil))
-#define GAIL_UTIL_CLASS(klass)                   (G_TYPE_CHECK_CLASS_CAST ((klass), GAIL_TYPE_UTIL, GailUtilClass))
-#define GAIL_IS_UTIL(obj)                        (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAIL_TYPE_UTIL))
-#define GAIL_IS_UTIL_CLASS(klass)                (G_TYPE_CHECK_CLASS_TYPE ((klass), GAIL_TYPE_UTIL))
-#define GAIL_UTIL_GET_CLASS(obj)                 (G_TYPE_INSTANCE_GET_CLASS ((obj), GAIL_TYPE_UTIL, GailUtilClass))
+void _gail_util_install (void);
+void _gail_util_uninstall (void);
 
-typedef struct _GailUtil                  GailUtil;
-typedef struct _GailUtilClass             GailUtilClass;
-  
-struct _GailUtil
-{
-  AtkUtil parent;
-  GList *listener_list;
-};
-
-struct _GailUtilClass
-{
-  AtkUtilClass parent_class;
-};
-
-GType gail_util_get_type (void);
+gboolean  _gail_util_key_snooper (GtkWidget   *the_widget,
+                                  GdkEventKey *event);
 
 G_END_DECLS