File indexing completed on 2025-03-13 08:35:39
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024 #ifndef _ATSPI_DEVICE_LEGACY_H_
0025 #define _ATSPI_DEVICE_LEGACY_H_
0026
0027 #include "glib-object.h"
0028
0029 #include "atspi-device.h"
0030 #include "atspi-types.h"
0031
0032 G_BEGIN_DECLS
0033
0034 #define ATSPI_TYPE_DEVICE_LEGACY (atspi_device_legacy_get_type ())
0035 #define ATSPI_DEVICE_LEGACY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_DEVICE_LEGACY, AtspiDeviceLegacy))
0036 #define ATSPI_DEVICE_LEGACY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ATSPI_TYPE_DEVICE_LEGACY, AtspiDeviceLegacyClass))
0037 #define ATSPI_IS_DEVICE_LEGACY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_DEVICE_LEGACY))
0038 #define ATSPI_IS_DEVICE_LEGACY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ATSPI_TYPE_DEVICE_LEGACY))
0039 #define ATSPI_DEVICE_LEGACY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ATSPI_TYPE_DEVICE_LEGACY, AtspiDeviceLegacyClass))
0040
0041 typedef struct _AtspiDeviceLegacy AtspiDeviceLegacy;
0042 struct _AtspiDeviceLegacy
0043 {
0044 AtspiDevice parent;
0045 };
0046
0047 typedef struct _AtspiDeviceLegacyClass AtspiDeviceLegacyClass;
0048 struct _AtspiDeviceLegacyClass
0049 {
0050 AtspiDeviceClass parent_class;
0051 };
0052
0053 GType atspi_device_legacy_get_type (void);
0054
0055 AtspiDeviceLegacy *atspi_device_legacy_new ();
0056
0057 G_END_DECLS
0058
0059 #endif