| atspi-application.h | | atspi-application.h | |
| | | | |
| skipping to change at line 31 | | skipping to change at line 31 | |
| * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| * Boston, MA 02111-1307, USA. | | * Boston, MA 02111-1307, USA. | |
| */ | | */ | |
| | | | |
| #ifndef _ATSPI_APPLICATION_H_ | | #ifndef _ATSPI_APPLICATION_H_ | |
| #define _ATSPI_APPLICATION_H_ | | #define _ATSPI_APPLICATION_H_ | |
| | | | |
| #include <dbus/dbus.h> | | #include <dbus/dbus.h> | |
| | | | |
| #include "atspi-accessible.h" | | #include "atspi-accessible.h" | |
|
| | | #include <sys/time.h> | |
| | | | |
| #define ATSPI_TYPE_APPLICATION (atspi_application_ge
t_type ()) | | #define ATSPI_TYPE_APPLICATION (atspi_application_ge
t_type ()) | |
| #define ATSPI_APPLICATION(obj) (G_TYPE_CHECK_INSTANC
E_CAST ((obj), ATSPI_TYPE_APPLICATION, AtspiApplication)) | | #define ATSPI_APPLICATION(obj) (G_TYPE_CHECK_INSTANC
E_CAST ((obj), ATSPI_TYPE_APPLICATION, AtspiApplication)) | |
| #define ATSPI_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_C
AST ((klass), ATSPI_TYPE_APPLICATION, AtspiAccessibleClass)) | | #define ATSPI_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_C
AST ((klass), ATSPI_TYPE_APPLICATION, AtspiAccessibleClass)) | |
| #define ATSPI_IS_APPLICATION(obj) (G_TYPE_CHECK_INSTANC
E_TYPE ((obj), ATSPI_TYPE_APPLICATION)) | | #define ATSPI_IS_APPLICATION(obj) (G_TYPE_CHECK_INSTANC
E_TYPE ((obj), ATSPI_TYPE_APPLICATION)) | |
| #define ATSPI_IS_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_T
YPE ((klass), ATSPI_TYPE_APPLICATION)) | | #define ATSPI_IS_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_T
YPE ((klass), ATSPI_TYPE_APPLICATION)) | |
| #define ATSPI_APPLICATION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_
CLASS ((obj), ATSPI_TYPE_APPLICATION, AtspiAccessibleClass)) | | #define ATSPI_APPLICATION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_
CLASS ((obj), ATSPI_TYPE_APPLICATION, AtspiAccessibleClass)) | |
| | | | |
| typedef struct _AtspiApplication AtspiApplication; | | typedef struct _AtspiApplication AtspiApplication; | |
| struct _AtspiApplication | | struct _AtspiApplication | |
| { | | { | |
| GObject parent; | | GObject parent; | |
| GHashTable *hash; | | GHashTable *hash; | |
| char *bus_name; | | char *bus_name; | |
| DBusConnection *bus; | | DBusConnection *bus; | |
| struct _AtspiAccessible *root; | | struct _AtspiAccessible *root; | |
| AtspiCache cache; | | AtspiCache cache; | |
| gchar *toolkit_name; | | gchar *toolkit_name; | |
| gchar *toolkit_version; | | gchar *toolkit_version; | |
| gchar *atspi_version; | | gchar *atspi_version; | |
|
| | | struct timeval time_added; | |
| }; | | }; | |
| | | | |
| typedef struct _AtspiApplicationClass AtspiApplicationClass; | | typedef struct _AtspiApplicationClass AtspiApplicationClass; | |
| struct _AtspiApplicationClass | | struct _AtspiApplicationClass | |
| { | | { | |
| GObjectClass parent_class; | | GObjectClass parent_class; | |
| }; | | }; | |
| | | | |
| AtspiApplication * | | AtspiApplication * | |
| _atspi_application_new (const char *bus_name); | | _atspi_application_new (const char *bus_name); | |
| | | | |
End of changes. 2 change blocks. |
| 0 lines changed or deleted | | 2 lines changed or added | |
|