Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:28:16

0001 /*
0002  * AT-SPI - Assistive Technology Service Provider Interface
0003  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
0004  *
0005  * Copyright 2020 SUSE LLC.
0006  *
0007  *
0008  * This library is free software; you can redistribute it and/or
0009  * modify it under the terms of the GNU Lesser General Public
0010  * License as published by the Free Software Foundation; either
0011  * version 2.1 of the License, or (at your option) any later version.
0012  *
0013  * This library is distributed in the hope that it will be useful,
0014  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0015  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0016  * Lesser General Public License for more details.
0017  *
0018  * You should have received a copy of the GNU Lesser General Public
0019  * License along with this library; if not, write to the
0020  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0021  * Boston, MA 02110-1301, USA.
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 /* _ATSPI_DEVICE_X11_H_ */