Doxygen documentation updated
[irreco.git] / irreco / src / core / irreco_webdb_register_dlg.h
blob16ff590836c92d4ba404e02624d70e76e051c0b2
1 /*
2 * irreco - Ir Remote Control
3 * Copyright (C) 2008 Harri Vattulainen (t5vaha01@students.oamk.fi)
4 *
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.
9 *
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 IrrecoWebdbRegisterDlg
22 * @{
25 /**
26 * @file
27 * Header file of @ref IrrecoWebdbRegisterDlg.
30 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
31 /* Typedef */
32 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
34 * Make sure that typedefs are available before we include anything elese.
36 * This makes sure that whatever other structures that depend on structures
37 * defined in this file will compile OK recardles of header inclusion order.
39 #ifndef _IRRECO_WEBDB_REGISTER_DLG
40 #define _IRRECO_WEBDB_REGISTER_DLG
42 #define IRRECO_TYPE_WEBDB_REGISTER_DLG irreco_webdb_register_dlg_get_type()
44 #define IRRECO_WEBDB_REGISTER_DLG(obj) \
45 (G_TYPE_CHECK_INSTANCE_CAST ((obj), IRRECO_TYPE_WEBDB_REGISTER_DLG, \
46 IrrecoWebdbRegisterDlg))
48 #define IRRECO_WEBDB_REGISTER_DLG_CLASS(klass) \
49 (G_TYPE_CHECK_CLASS_CAST ((klass), IRRECO_TYPE_WEBDB_REGISTER_DLG, \
50 IrrecoWebdbRegisterDlgClass))
52 #define IRRECO_IS_WEBDB_REGISTER_DLG(obj) \
53 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), IRRECO_TYPE_WEBDB_REGISTER_DLG))
55 #define IRRECO_IS_WEBDB_REGISTER_DLG_CLASS(klass) \
56 (G_TYPE_CHECK_CLASS_TYPE ((klass), IRRECO_TYPE_WEBDB_REGISTER_DLG))
58 #define IRRECO_WEBDB_REGISTER_DLG_GET_CLASS(obj) \
59 (G_TYPE_INSTANCE_GET_CLASS ((obj), IRRECO_TYPE_WEBDB_REGISTER_DLG, \
60 IrrecoWebdbRegisterDlgClass))
62 typedef struct _IrrecoWebdbRegisterDlg IrrecoWebdbRegisterDlg;
63 typedef struct _IrrecoWebdbRegisterDlgClass IrrecoWebdbRegisterDlgClass;
65 #endif /* _IRRECO_WEBDB_REGISTER_DLG */
69 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
70 /* Include */
71 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
72 #ifndef __HEADER_NAME_H__
73 #define __HEADER_NAME_H__
74 #include "irreco.h"
75 #include "irreco_dlg.h"
76 #include "irreco_data.h"
79 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
80 /* Datatypes */
81 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
83 struct _IrrecoWebdbRegisterDlg {
84 IrrecoDlg parent;
85 IrrecoData *irreco_data;
87 const gchar *name;
88 const gchar *email;
89 const gchar *passwd;
90 const gchar *repasswd;
93 struct _IrrecoWebdbRegisterDlgClass {
94 IrrecoDlgClass parent_class;
98 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
99 /* Macro */
100 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
104 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
105 /* Prototypes */
106 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
108 GType irreco_webdb_register_dlg_get_type (void);
110 IrrecoWebdbRegisterDlg* irreco_webdb_register_dlg_new (void);
113 void irreco_show_webdb_register_dlg(IrrecoData *irreco_data, GtkWindow *parent);
115 void irreco_show_webdb_register_dlg(IrrecoData *irreco_data, GtkWindow *parent);
117 #endif /* __HEADER_NAME_H__ */
119 /** @} */