1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/* gdict-source.h - Source configuration for Gdict
*
* Copyright (C) 2005 Emmanuele Bassi <ebassi@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
*/
#ifndef __GDICT_SOURCE_H__
#define __GDICT_SOURCE_H__
#include <stdarg.h>
#include <glib-object.h>
#include "gdict-context.h"
G_BEGIN_DECLS
#define GDICT_TYPE_SOURCE (gdict_source_get_type ())
#define GDICT_SOURCE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GDICT_TYPE_SOURCE, GdictSource))
#define GDICT_IS_SOURCE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GDICT_TYPE_SOURCE))
#define GDICT_SOURCE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GDICT_TYPE_SOURCE, GdictSourceClass))
#define GDICT_IS_SOURCE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GDICT_TYPE_SOURCE))
#define GDICT_SOURCE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GDICT_TYPE_SOURCE, GdictSourceClass))
typedef struct _GdictSource GdictSource;
typedef struct _GdictSourceClass GdictSourceClass;
typedef struct _GdictSourcePrivate GdictSourcePrivate;
typedef enum
{
GDICT_SOURCE_TRANSPORT_DICTD,
GDICT_SOURCE_TRANSPORT_INVALID /* only for debug */
} GdictSourceTransport;
#define GDICT_SOURCE_ERROR (gdict_source_error_quark ())
typedef enum
{
GDICT_SOURCE_ERROR_PARSE,
GDICT_SOURCE_ERROR_INVALID_NAME,
GDICT_SOURCE_ERROR_INVALID_TRANSPORT,
GDICT_SOURCE_ERROR_INVALID_BAD_PARAMETER
} GdictSourceError;
GQuark gdict_source_error_quark (void);
struct _GdictSource
{
/*< private >*/
GObject parent_instance;
GdictSourcePrivate *priv;
};
struct _GdictSourceClass
{
/*< private >*/
GObjectClass parent_class;
};
GType gdict_source_get_type (void) G_GNUC_CONST;
GdictSource * gdict_source_new (void);
gboolean gdict_source_load_from_file (GdictSource *source,
const gchar *filename,
GError **error);
gboolean gdict_source_load_from_data (GdictSource *source,
const gchar *data,
gsize length,
GError **error);
gchar * gdict_source_to_data (GdictSource *source,
gsize *length,
GError **error) G_GNUC_MALLOC;
void gdict_source_set_name (GdictSource *source,
const gchar *name);
const gchar *gdict_source_get_name (GdictSource *source);
void gdict_source_set_description (GdictSource *source,
const gchar *description);
const gchar *gdict_source_get_description (GdictSource *source);
void gdict_source_set_database (GdictSource *source,
const gchar *database);
const gchar *gdict_source_get_database (GdictSource *source);
void gdict_source_set_strategy (GdictSource *source,
const gchar *strategy);
const gchar *gdict_source_get_strategy (GdictSource *source);
void gdict_source_set_transport (GdictSource *source,
GdictSourceTransport transport,
const gchar *first_transport_property,
...);
void gdict_source_set_transportv (GdictSource *source,
GdictSourceTransport transport,
const gchar *first_transport_property,
va_list var_args);
GdictSourceTransport gdict_source_get_transport (GdictSource *source);
GdictContext * gdict_source_get_context (GdictSource *source);
GdictContext * gdict_source_peek_context (GdictSource *source);
G_END_DECLS
#endif /* __GDICT_SOURCE_H__ */
|