Fixed 'make dist', and added:
[platform/core/uifw/at-spi2-atk.git] / libspi / application.h
index ef8b9b9..110cdda 100644 (file)
@@ -1,4 +1,25 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * AT-SPI - Assistive Technology Service Provider Interface
+ * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
+ *
+ * Copyright 2001 Sun Microsystems Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library 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.
+ *
+ * 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.
+ */
+
 #ifndef APPLICATION_H_
 #define APPLICATION_H_
 
@@ -9,7 +30,7 @@ extern "C" {
 #include <atk/atkobject.h>
 #include <accessible.h>
 #include <application.h>
-#include <Application.h>
+#include <libspi/Accessibility.h>
 
 #define APPLICATION_TYPE        (application_get_type ())
 #define APPLICATION(o)          (G_TYPE_CHECK_INSTANCE_CAST ((o), APPLICATION_TYPE, Application))
@@ -19,7 +40,7 @@ extern "C" {
 
 typedef struct {
         Accessible parent;
-        char *id;
+        long id;
 } Application;
 
 typedef struct {
@@ -28,7 +49,9 @@ typedef struct {
 } ApplicationClass;
 
 GType               application_get_type           (void);
-Application         *application_new               (char *name, char *desc, char *id);
+gboolean            *application_set_id            (AtkObject *app, long id);
+Application         *application_new               (AtkObject *app_root);
+
 
 #ifdef __cplusplus
 }