File indexing completed on 2025-01-18 09:28:16
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_X11_H_
0025 #define _ATSPI_DEVICE_X11_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_X11 (atspi_device_x11_get_type ())
0035 #define ATSPI_DEVICE_X11(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_DEVICE_X11, AtspiDeviceX11))
0036 #define ATSPI_DEVICE_X11_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ATSPI_TYPE_DEVICE_X11, AtspiDeviceX11Class))
0037 #define ATSPI_IS_DEVICE_X11(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_DEVICE_X11))
0038 #define ATSPI_IS_DEVICE_X11_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ATSPI_TYPE_DEVICE_X11))
0039 #define ATSPI_DEVICE_X11_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ATSPI_TYPE_DEVICE_X11, AtspiDeviceX11Class))
0040
0041 typedef struct _AtspiDeviceX11 AtspiDeviceX11;
0042 struct _AtspiDeviceX11
0043 {
0044 AtspiDevice parent;
0045 };
0046
0047 typedef struct _AtspiDeviceX11Class AtspiDeviceX11Class;
0048 struct _AtspiDeviceX11Class
0049 {
0050 AtspiDeviceClass parent_class;
0051 };
0052
0053 GType atspi_device_x11_get_type (void);
0054
0055 AtspiDeviceX11 *atspi_device_x11_new ();
0056
0057 G_END_DECLS
0058
0059 #endif