Added README.
[irreco.git] / irreco / src / core / irreco_internal_dlg.h
blobf6e78c01224d7a72212ac3076f46414e3188a035
1 /*
2 * irreco - Ir Remote Control
3 * Copyright (C) 2007,2008 Arto Karppinen (arto.karppinen@iki.fi)
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 /**
21 * @addtogroup IrrecoInternalDlg
22 * @{
25 /**
26 * @file
27 * Header file of @ref IrrecoInternalDlg.
32 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
33 /* Typedef */
34 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
36 * Make sure that typedefs are available before we include anything elese.
38 * This makes sure that whatever other structures that depend on structures
39 * defined in this file will compile OK recardles of header inclusion order.
41 #ifndef __IRRECO_INTERNAL_DLG_H_TYPEDEF__
42 #define __IRRECO_INTERNAL_DLG_H_TYPEDEF__
44 #define IRRECO_TYPE_INTERNAL_DLG (irreco_internal_dlg_get_type ())
45 #define IRRECO_INTERNAL_DLG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), IRRECO_TYPE_INTERNAL_DLG, IrrecoInternalDlg))
46 #define IRRECO_INTERNAL_DLG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), IRRECO_TYPE_INTERNAL_DLG, IrrecoInternalDlgClass))
47 #define IRRECO_IS_INTERNAL_DLG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), IRRECO_TYPE_INTERNAL_DLG))
48 #define IRRECO_IS_INTERNAL_DLG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), IRRECO_TYPE_INTERNAL_DLG))
49 #define IRRECO_INTERNAL_DLG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), IRRECO_TYPE_INTERNAL_DLG, IrrecoInternalDlgClass))
51 typedef struct _IrrecoInternalDlgClass IrrecoInternalDlgClass;
52 typedef struct _IrrecoInternalDlg IrrecoInternalDlg;
54 #endif /* __IRRECO_INTERNAL_DLG_H_TYPEDEF__ */
58 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
59 /* Include */
60 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
61 #ifndef __IRRECO_INTERNAL_DLG_H__
62 #define __IRRECO_INTERNAL_DLG_H__
63 #include "irreco_dlg.h"
64 #include "irreco_data.h"
68 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
69 /* Datatypes */
70 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
72 struct _IrrecoInternalDlgClass
74 IrrecoDlgClass parent_class;
77 struct _IrrecoInternalDlg
79 IrrecoDlg parent_instance;
84 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
85 /* Macro */
86 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
90 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
91 /* Prototypes */
92 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
94 GType irreco_internal_dlg_get_type(void) G_GNUC_CONST;
95 IrrecoData *irreco_internal_dlg_get_irreco_data(IrrecoInternalDlg *self);
97 #endif /* __IRRECO_INTERNAL_DLG_H__ */
99 /** @} */