/* * Copyright (c) 2003-2008 by FlashCode * 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 . */ /* weechat-aspell.h: Aspell plugin support for WeeChat */ #ifndef __WEECHAT_ASPELL_H #define __WEECHAT_ASPELL_H 1 #include #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 */