Added comment of to-be theme name variable to IrrecoStyleBrowserDlg struct.
[irreco.git] / irreco / trunk / src / core / irreco_webdb_register_dlg.h
blob6d5b11dd0c2309a5b1e5a1986e98b7bbf17d4bc5
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.
21 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
22 /* Typedef */
23 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
25 * Make sure that typedefs are available before we include anything elese.
27 * This makes sure that whatever other structures that depend on structures
28 * defined in this file will compile OK recardles of header inclusion order.
30 #ifndef _IRRECO_WEBDB_REGISTER_DLG
31 #define _IRRECO_WEBDB_REGISTER_DLG
33 #define IRRECO_TYPE_WEBDB_REGISTER_DLG irreco_webdb_register_dlg_get_type()
35 #define IRRECO_WEBDB_REGISTER_DLG(obj) \
36 (G_TYPE_CHECK_INSTANCE_CAST ((obj), IRRECO_TYPE_WEBDB_REGISTER_DLG, \
37 IrrecoWebdbRegisterDlg))
39 #define IRRECO_WEBDB_REGISTER_DLG_CLASS(klass) \
40 (G_TYPE_CHECK_CLASS_CAST ((klass), IRRECO_TYPE_WEBDB_REGISTER_DLG, \
41 IrrecoWebdbRegisterDlgClass))
43 #define IRRECO_IS_WEBDB_REGISTER_DLG(obj) \
44 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), IRRECO_TYPE_WEBDB_REGISTER_DLG))
46 #define IRRECO_IS_WEBDB_REGISTER_DLG_CLASS(klass) \
47 (G_TYPE_CHECK_CLASS_TYPE ((klass), IRRECO_TYPE_WEBDB_REGISTER_DLG))
49 #define IRRECO_WEBDB_REGISTER_DLG_GET_CLASS(obj) \
50 (G_TYPE_INSTANCE_GET_CLASS ((obj), IRRECO_TYPE_WEBDB_REGISTER_DLG, \
51 IrrecoWebdbRegisterDlgClass))
53 typedef struct _IrrecoWebdbRegisterDlg IrrecoWebdbRegisterDlg;
54 typedef struct _IrrecoWebdbRegisterDlgClass IrrecoWebdbRegisterDlgClass;
56 #endif /* _IRRECO_WEBDB_REGISTER_DLG */
60 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
61 /* Include */
62 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
63 #ifndef __HEADER_NAME_H__
64 #define __HEADER_NAME_H__
65 #include "irreco.h"
66 #include "irreco_dlg.h"
67 #include "irreco_data.h"
70 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
71 /* Datatypes */
72 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
74 struct _IrrecoWebdbRegisterDlg {
75 IrrecoDlg parent;
76 IrrecoData *irreco_data;
78 const gchar *name;
79 const gchar *email;
80 const gchar *passwd;
81 const gchar *repasswd;
84 struct _IrrecoWebdbRegisterDlgClass {
85 IrrecoDlgClass parent_class;
89 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
90 /* Macro */
91 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
95 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
96 /* Prototypes */
97 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*/
99 GType irreco_webdb_register_dlg_get_type (void);
101 IrrecoWebdbRegisterDlg* irreco_webdb_register_dlg_new (void);
104 void irreco_show_webdb_register_dlg(IrrecoData *irreco_data, GtkWindow *parent);
106 void irreco_show_webdb_register_dlg(IrrecoData *irreco_data, GtkWindow *parent);
108 #endif /* __HEADER_NAME_H__ */