summaryrefslogtreecommitdiff
path: root/src/plugins/aspell/aspell.h
blob: 71d528960edd1949262999cb07e51442d10c9675 (plain)
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/*
 * Copyright (c) 2003-2008 by FlashCode <flashcode@flashtux.org>
 * See README for License detail, AUTHORS for developers list.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/* weechat-aspell.h: Aspell plugin support for WeeChat */

#ifndef __WEECHAT_ASPELL_H
#define __WEECHAT_ASPELL_H 1

#include <aspell.h>

#define _PLUGIN_OPTION_WORD_SIZE 2
#define _PLUGIN_OPTION_CHECK_SYNC 0
#define _PLUGIN_OPTION_COLOR "red"

typedef struct aspell_speller_t
{
    AspellSpeller *speller;
    char *lang;
    int refs;

    struct aspell_speller_t *prev_speller;
    struct aspell_speller_t *next_speller;
} aspell_speller_t;

typedef struct aspell_config_t
{
    char *server;
    char *channel;
    aspell_speller_t *speller;
    
    struct aspell_config_t *prev_config;
    struct aspell_config_t *next_config;
} aspell_config_t;

typedef struct aspell_options_t
{
    int word_size;
    int check_sync;
    int color;
    char *color_name;
} aspell_options_t;

typedef struct iso_langs_t
{
    char *code;
    char *name;
} iso_langs_t;

typedef struct iso_countries_t
{
    char *code;
    char *name;
} iso_countries_t;

typedef struct cmds_keep_t
{
    char *cmd;
    int len;
} cmds_keep_t;

/* aspell supported langs 2006-05-27 */
iso_langs_t langs_avail[] = 
{
    { "af", "Afrikaans"},
    { "am", "Amharic"},
    { "az", "Azerbaijani"},
    { "be", "Belarusian"},
    { "bg", "Bulgarian"},
    { "bn", "Bengali"},
    { "br", "Breton"},
    { "ca", "Catalan"},
    { "cs", "Czech"},
    { "csb", "Kashubian"},
    { "cy", "Welsh"},
    { "da", "Danish"},
    { "de", "German"},
    { "el", "Greek Modern"},
    { "en", "English"},
    { "eo", "Esperanto"},
    { "es", "Spanish"},
    { "et", "Estonian"},
    { "fa", "Persian"},
    { "fi", "Finnish"},
    { "fo", "Faroese"},
    { "fr", "French"},
    { "ga", "Irish"},
    { "gd", "Gaelic"},
    { "gl", "Galician"},
    { "gu", "Gujarati"},
    { "gv", "Manx"},
    { "he", "Hebrew"},
    { "hi", "Hiligaynon"},
    { "hr", "Croatian"},
    { "hsb", "Upper Sorbian"},
    { "hu", "Hungarian"},
    { "ia", "Interlingua"},
    { "id", "Indonesian"},
    { "is", "Icelandic"},
    { "it", "Italian"},
    { "ku", "Kurdish"},
    { "la", "Latin"},
    { "lt", "Lithuanian"},
    { "lv", "Latvian"},
    { "mg", "Malagasy"},
    { "mi", "Maori"},
    { "mk", "Macedonian"},
    { "mn", "Mongolian"},
    { "mr", "Marathi"},
    { "ms", "Malay"},
    { "mt", "Maltese"},
    { "nb", "Norwegian Bokmal"},
    { "nds", "Saxon Low"},
    { "nl", "Flemish"},
    { "nn", "Norwegian Nynorsk"},
    { "no", "Norwegian"},
    { "ny", "Nyanja"},
    { "or", "Oriya"},
    { "pa", "Panjabi"},
    { "pl", "Polish"},
    { "pt", "Portuguese"},
    { "qu", "Quechua"},
    { "ro", "Romanian"},
    { "ru", "Russian"},
    { "rw", "Kinyarwanda"},
    { "sc", "Sardinian"},
    { "sk", "Slovak"},
    { "sl", "Slovenian"},
    { "sr", "Serbian"},
    { "sv", "Swedish"},
    { "sw", "Swahili"},
    { "ta", "Tamil"},
    { "te", "Telugu"},
    { "tet", "Tetum"},
    { "tl", "Tagalog"},
    { "tn", "Tswana"},
    { "tr", "Turkish"},
    { "uk", "Ukrainian"},
    { "uz", "Uzbek"},
    { "vi", "Vietnamese"},
    { "wa", "Walloon"},
    { "yi", "Yiddish"},
    { "zu", "Zulu"},
    { NULL, NULL}
};

iso_countries_t countries_avail[] = 
{
    { "AT", "Austria" },
    { "BR", "Brazil" },
    { "CA", "Canada" },
    { "CH", "Switzerland" },
    { "DE", "Germany" },
    { "FR", "France" },
    { "GB", "Great Britain" },
    { "PT", "Portugal" },
    { "SK", "Slovakia" },
    { "US", "United States of America" },
    { NULL, NULL}
};

/* internal or irc commands to be use with spellchecking */
cmds_keep_t cmd_tokeep[] = 
{
    { "/builtin ",  9 },
    { "/ame " ,     5 },
    { "/amsg " ,    6 },
    { "/away " ,    6 },
    { "/cycle " ,   7 },
    { "/kick " ,    6 },
    { "/kickban " , 9 },
    { "/me " ,      4 },
    { "/notice " ,  8 },
    { "/part " ,    6 },
    { "/query " ,   7 },
    { "/quit " ,    6 },
    { "/topic " ,   7 },
    { NULL, 0}
};

#endif /* aspell.h */