/* Copyright 1992 NEC Corporation, Tokyo, Japan. * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without * fee, provided that the above copyright notice appear in all copies * and that both that copyright notice and this permission notice * appear in supporting documentation, and that the name of NEC * Corporation not be used in advertising or publicity pertaining to * distribution of the software without specific, written prior * permission. NEC Corporation makes no representations about the * suitability of this software for any purpose. It is provided "as * is" without express or implied warranty. * * NEC CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN * NO EVENT SHALL NEC CORPORATION BE LIABLE FOR ANY SPECIAL, INDIRECT OR * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR * OTHER TORTUOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THIS SOFTWARE. */ // Modified by T.Murai #if !defined(lint) && !defined(__CODECENTER__) static char tanmap_id[] = "@(#) 102.1 $Id: tanmap.h 14875 2005-11-12 21:25:31Z bonefish $"; #endif /* lint */ #include "canna.h" static struct funccfunc tan_funcs[] = { {CANNA_FN_FunctionalInsert ,TanKakuteiYomiInsert }, {CANNA_FN_Forward ,TanForwardBunsetsu }, {CANNA_FN_Backward ,TanBackwardBunsetsu }, {CANNA_FN_Next ,TanNextKouho }, {CANNA_FN_Prev ,TanPreviousKouho }, {CANNA_FN_BeginningOfLine ,TanBeginningOfBunsetsu }, {CANNA_FN_EndOfLine ,TanEndOfBunsetsu }, {CANNA_FN_DeletePrevious ,TanDeletePrevious }, {CANNA_FN_KillToEndOfLine ,TanChooseHeadChar }, {CANNA_FN_DeleteNext ,TanChooseTailChar }, {CANNA_FN_Henkan ,TanHenkan }, {CANNA_FN_HenkanOrInsert ,TanHenkan }, {CANNA_FN_HenkanOrNothing ,TanHenkan }, {CANNA_FN_Kakutei ,YomiKakutei }, {CANNA_FN_Extend ,TanExtendBunsetsu }, {CANNA_FN_Shrink ,TanShrinkBunsetsu }, {CANNA_FN_AdjustBunsetsu ,TanBunsetsuMode }, {CANNA_FN_Quit ,TanMuhenkan }, {CANNA_FN_KouhoIchiran ,TanKouhoIchiran }, {CANNA_FN_BubunMuhenkan ,TanBubunMuhenkan }, {CANNA_FN_Zenkaku ,TanZenkaku }, {CANNA_FN_Hankaku ,TanHankaku }, {CANNA_FN_Hiragana ,TanHiragana }, {CANNA_FN_Katakana ,TanKatakana }, {CANNA_FN_Romaji ,TanRomaji }, {CANNA_FN_ToUpper ,TanUpper }, {CANNA_FN_ToLower ,TanRomaji }, {CANNA_FN_Capitalize ,TanCapitalize }, {CANNA_FN_KanaRotate ,TanKanaRotate }, {CANNA_FN_RomajiRotate ,TanRomajiRotate }, {CANNA_FN_CaseRotate ,TanCaseRotateForward }, {CANNA_FN_BubunKakutei ,TanBubunKakutei }, #ifdef BUNPOU_DISPLAY {CANNA_FN_ConvertAsHex ,TanPrintBunpou }, #endif {CANNA_FN_Nop ,TanNop }, {CANNA_FN_FuncSequence ,DoFuncSequence }, {CANNA_FN_UseOtherKeymap ,UseOtherKeymap }, {0 ,0 }, }; extern int searchfunc(...); KanjiModeRec tankouho_mode = { searchfunc, default_kmap, CANNA_KANJIMODE_TABLE_SHARED, tan_funcs, };