guixedit.c

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 169 行

C
169
字号
/****************************************************************************
*
*                            Open Watcom Project
*
*    Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
*  ========================================================================
*
*    This file contains Original Code and/or Modifications of Original
*    Code as defined in and that are subject to the Sybase Open Watcom
*    Public License version 1.0 (the 'License'). You may not use this file
*    except in compliance with the License. BY USING THIS FILE YOU AGREE TO
*    ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
*    provided with the Original Code and Modifications, and is also
*    available at www.sybase.com/developer/opensource.
*
*    The Original Code and all software distributed under the License are
*    distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
*    EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
*    ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
*    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
*    NON-INFRINGEMENT. Please see the License for the specific language
*    governing rights and limitations under the License.
*
*  ========================================================================
*
* Description:  WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
*               DESCRIBE IT HERE!
*
****************************************************************************/


#include "guiwind.h"
#include "guix.h"
#include "guixutil.h"
#include "guixedit.h"
#include "guisetup.h"
#include "guixdlg.h"
#include "guicontr.h"
#include "guikey.h"
#include "guistr.h"
#include "guiutil.h"
#include "guihotsp.h"
#include <string.h>

bool GUISetEditText( an_edit_control *edit_control, char const *text, bool is_GUI_data )
/*
 * "free" edit_control->buffer and "strdup" text to it.
 * isGUIdata chooses between local and ui functions to allow ui to realloc
 */
{
    void        *uimalloc( unsigned size );
    void        uifree( void *ptr );
    void        *(*allocate)( unsigned size );
    void        (*dealloc)( void *ptr );
    char const  *filler;
    size_t      fillerLength;
    char        *new;

    if( is_GUI_data ) {
        allocate = GUIMemAlloc;
        dealloc = GUIMemFree;
    }
    else {
        allocate = uimalloc;
        dealloc = uifree;
    }
    filler = ( text == NULL ) ? LIT( Empty ) : text;
    fillerLength = strlen( filler );
    new = allocate( fillerLength + 1 );
    if( new == NULL ) {
        return( FALSE );
    }
    strcpy( new, filler );
    dealloc( edit_control->buffer );
    edit_control->buffer = new;
    edit_control->length = fillerLength;
    return( TRUE );
}

/*
 * GUISetText - set the text in the given control
 */

bool GUISetText( gui_window *wnd, unsigned id, char *text )
{
    VFIELD              *field;
    a_dialog            *dialog;
    a_combo_box         *combo_box;
    char                *new;
    bool                ret;
    an_edit_control     *edit;

    field = GUIGetField( wnd, id );
    if( field == NULL ) {
        return( FALSE );
    }
    dialog = GUIGetDialog( wnd );
    edit = NULL;
    switch( field->typ ) {
    case FLD_HOT:
        ret = GUISetHotSpotText( (a_hot_spot *)field->ptr, text );
        break;

    case FLD_CHECK :
    case FLD_RADIO :
    case FLD_TEXT :
        {
            char    **fldtext;

            switch( field->typ ) {
            case FLD_CHECK: fldtext = &((a_check *)field->ptr)->str; break;
            case FLD_RADIO: fldtext = &((a_radio *)field->ptr)->str; break;
            case FLD_TEXT: fldtext = (char **)&field->ptr; break;
            }
            if( !GUIStrDup( text, &new ) ) {
                return( FALSE );
            } else {
                GUIMemFree( *fldtext );
                *fldtext = new;
                ret = TRUE;
            }
        }
        break;

    case FLD_EDIT :
    case FLD_INVISIBLE_EDIT :
        edit = (an_edit_control *)field->ptr;
        break;
    case FLD_COMBOBOX :
        combo_box = (a_combo_box *)field->ptr;
        edit = &combo_box->edit;
        break;
    default :
        return( FALSE );   /* without redrawing field */
        break;
    }
    if( ( edit != NULL ) && ( dialog != NULL ) ) {
        ret = GUISetEditText( edit, text, field->typ != FLD_EDIT );
        if( ret ) {
            uiupdateedit( dialog, field );
        }
    }
    if( ret && ( dialog != NULL ) ) {
        GUIRefreshControl( wnd, id );
    }
    return( ret );
}

/*
 * GUIClearText - clear the text in the given control
 */

bool GUIClearText( gui_window *wnd, unsigned id )
{
    return( GUISetText( wnd, id, NULL ) );
}

/* NYI */

bool GUISelectAll( gui_window *wnd, unsigned id, bool select )
{
    wnd = wnd;
    id = id;
    select = select;
    return( FALSE );
}

⌨️ 快捷键说明

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