lfpport_form.h

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

H
176
字号
/* *    * * 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. */#ifndef _LFPPORT_FORM_H_#define _LFPPORT_FORM_H_/** * @file * @ingroup highui_lfpport * * @brief Form-specific porting functions and data structures. */#include <lfpport_displayable.h>#include <lfpport_item.h>#ifdef __cplusplusextern "C" {#endif/** * Creates the form's native peer (the container window for a form), but * does not display it. * * The MIDP implementation should call this function in the background and * display the form after it is given all of its content. When this  * function returns successfully, the fields in *formPtr will be set. * * @param formPtr pointer to the form's MidpDisplayable structure. * @param title title of the form. * @param tickerText text to be displayed in the ticker. *  * @return an indication of success or the reason for failure */MidpError lfpport_form_create(MidpDisplayable* formPtr, 			      const pcsl_string* title, const pcsl_string* tickerText);/** * Sets the virtual size of the form. The size assumes an infinitely * large screen, without scrolling. * * @param formPtr pointer to the form's MidpDisplayable structure. * @param w width of the form. * @param h height of the form. *  * @return an indication of success or the reason for failure */MidpError lfpport_form_set_content_size(MidpDisplayable* formPtr, 					int w, int h);/** * Sets the form's current item (the item that has focus) to the * given item and makes the form visible. * * @param itemPtr pointer to the item to be made current. * @param yOffset offset relative to the item's y co-ordinate. *  * @return an indication of success or the reason for failure */MidpError lfpport_form_set_current_item(MidpItem* itemPtr, int yOffset);/** * Gets the native peer's current "y" scroll position. * * @param pos pointer that will be to the user's current "y" position on *        the form. This function sets pos's value. *  * @return an indication of success or the reason for failure */MidpError lfpport_form_get_scroll_position(int *pos);/** * Sets the native peer's current "y" scroll position. * * @param pos new current "y" position on the form. *  */MidpError lfpport_form_set_scroll_position(int pos);/** * Gets the native peer's current viewport height. * * @param height pointer that will be pointing to the current viewport height  *        in the form. This function sets height's value. *  * @return an indication of success or the reason for failure */MidpError lfpport_form_get_viewport_height(int *height);/** * Tests whether the given form has only a single item.  The return * value could affect the item's label handling.   * * This is NOT a platform dependent function and does NOT need to be ported. * * @param formPtr pointer to the form's MidpDisplayable structure. * * @return true if the form has only a single item, and false otherwise. */jboolean MidpFormInSingleItemMode(MidpDisplayable* formPtr);/** * Notifies the form's Java platform peer that the user's focus has * changed.   * * This is NOT a platform dependent function and does NOT need to be ported. * * @param newItemWidgetPtr native widget of the item that now has focus; * 	  null if no item has focus. */void MidpFormFocusChanged(PlatformItemWidgetPtr newItemWidgetPtr);/** * Notifies the form's Java platform peer that an item's state has * changed due to user action.  * * This is NOT a platform dependent function and does NOT need to be ported. * * @param itemWidgetPtr native peer of the item that has changed state. * @param hint an implementation-specific value that the form's Java *        platform peer can interpret. */voidMidpFormItemPeerStateChanged(PlatformItemWidgetPtr itemWidgetPtr, int hint);/** * Notify Java platform peer that viewport location or size has changed * * This is NOT a platform dependent function and does NOT need to be ported. * * @param formPtr native widget of the form where the change occurred * @param hint some value up to the form's Java platform peer to interpret */void MidpFormViewportChanged(PlatformScreenWidgetPtr formPtr, int hint);/** * Notify Java peer that traverse is requested * * This is NOT a platform dependent function and do NOT need to be ported. * * @param formPtr native widget of the form where the request occurred * @param hint 1 if next item, 0 if previous */void MidpFormTraverseRequest(PlatformScreenWidgetPtr formPtr, int hint);#ifdef __cplusplus} /* extern "C" */#endif#endif /* _LFPPORT_FORM_H_ */

⌨️ 快捷键说明

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