pt_impl.h

来自「This is a resource based on j2me embedde」· C头文件 代码 · 共 163 行

H
163
字号
/* *   * * Copyright  1990-2007 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER *  * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 only, as published by the Free Software Foundation. *  * 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 version 2 for more details (a copy is * included at /legal/license.txt). *  * You should have received a copy of the GNU General Public License * version 2 along with this work; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA *  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 or visit www.sun.com if you need additional * information or have any questions. *//** * @file pt_impl.h * * API to manage predictive text */#ifndef _PT_IMPL_H_#define _PT_IMPL_H_#include <pcsl_string.h>#include <string.h>#include <kni.h>#ifdef __cplusplusextern "C" {#endif/** * Called 1st time predictive text library is accessed. * it calls platform specific predictive text initialization functions. * If library has been already initialized it's just initialized once again.  * It can not guarantee the returned handler will be identical to the * previous one.  * * @param lang the language used to select the library. If the language is * NULL or it's not supported this function returns handle for the default * language library.  * @return the handle of the library. If some error occurs 0 is returned * as a library handle.  */jint ptInitLibrary(const pcsl_string * lang);/** * Open a new iterator for the particular labrary. The implementation can * support a limited amount of active iterators. If limit was exceeded 0 * is returned as an iterator handle. * * @param lib library handle. If library handle is not valid 0 is returned * as an iterator handle. * * @return handle of new iterator. If some error occurs 0 is returned * as an iterator handle.  */jint ptOpenIterator(jint lib);/** * Close the iterator.  * * @param handle iterator handle. If iterator handle is not valid false * is returned * * @return true if iterator has been closed successfully otherwise false. */jboolean ptCloseIterator(jint handle);/** * Clear all text from the predictive text iterator  * * @param handle the handle of the iterator. If iterator handle is not valid * function returns false * * @return true if iterator has been cleared successfully otherwise false. * If function returns false the iterator state is not changed.   */jboolean ptClear(jint handle);/** * Advances the predictive text iterator using the next key code * * @param handle the handle of the iterator. If iterator handle is not valid * function returns false.  * * @param keyCode the next key ('0'-'9'). If keyCode is not valid function * returns false.  * * @return true if key code has been added successfully otherwise false. * If function returns false the iterator state is not changed.   */jboolean ptAddKey(jint handle, jint keyCode);    /** * Backspace the iterator one key  * * @param handle the handle of the iterator. If iterator handle is not valid * function returns false.  * * @return true if key has been deleted successfully otherwise false. * If function returns false the iterator state is not changed.   */jboolean ptDeleteKey(jint handle);    /** * return the current predictive text completion option * * @param handle the handle of the iterator. If iterator handle is not valid * function returns false.  * @param outArray the byte array to copy the ASCII chars to  * @param outStringLen max size of the outArray. If size is equal or less than * 0 function returns false * * @return true if successful, false otherwise. If function returns false, * outArray is set as NULL */jboolean ptNextCompletionOption(jint handle, jchar * outString,                                jint outStringLen);/** * See if exist further completion options for the current * predictive text entry * * @param handle the handle of the iterator. If iterator handle is not valid * function returns false.  * * @return true if more completion options exist, false otherwise */jboolean ptHasCompletionOption(jint handle);    /** * Reset completion options for for the current predictive text entry * After this call, ptNextCompletionOption() will return all * completion options starting from 1st one. * * @param handle the handle of the iterator. If iterator handle is not valid * function returns false.  * @return true if iterator has been reset successfully otherwise false. * If function returns false the iterator state is not changed.   */jboolean ptRenewCompletionOptions(jint handle);    #ifdef __cplusplus}#endif        #endif /* _PT_IMPL_H_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?