guigcolr.c

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

C
98
字号
/****************************************************************************
*
*                            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 <string.h>
#include "guistr.h"

static char *ColourNames[GUI_NUM_COLOURS];

static bool ColourNamesInitialized = FALSE;

static void InitColourNames( void )
{
    ColourNames[ 0 ] = LIT( Black );
    ColourNames[ 1 ] = LIT( Blue );
    ColourNames[ 2 ] = LIT( Green );
    ColourNames[ 3 ] = LIT( Cyan );
    ColourNames[ 4 ] = LIT( Red );
    ColourNames[ 5 ] = LIT( Magenta );
    ColourNames[ 6 ] = LIT( Brown );
    ColourNames[ 7 ] = LIT( White );
    ColourNames[ 8 ] = LIT( Grey );
    ColourNames[ 9 ] = LIT( BrightBlue );
    ColourNames[ 10 ] = LIT( BrightGreen );
    ColourNames[ 11 ] = LIT( BrightCyan );
    ColourNames[ 12 ] = LIT( BrightRed );
    ColourNames[ 13 ] = LIT( BrightMagenta );
    ColourNames[ 14 ] = LIT( BrightYellow );
    ColourNames[ 15 ] = LIT( BrightWhite );
}

static gui_colour InitColour;

static void PickColour( gui_window *wnd, int list_ctrl )
{
    int i;

    if( !ColourNamesInitialized ) {
        InitColourNames();
    }

    for( i = 0; i < GUI_NUM_COLOURS; i++ ) {
        GUIAddText( wnd, list_ctrl, ColourNames[i] );
    }
    if(( InitColour >= 0 ) && ( InitColour < GUI_NUM_COLOURS )) {
        GUISetCurrSelect( wnd, list_ctrl, InitColour );
    }
}

bool GUIGetColourFromUser( char *title, gui_colour *init, gui_colour *new_colour )
{
    int result;

    if( new_colour == NULL ) {
        return( FALSE );
    }
    if( init != NULL ) {
        InitColour = *init;
    } else {
        InitColour = GUI_BAD_COLOUR;
    }
    result = GUIDlgPick( title, &PickColour );
    if( result != -1 ) {
        *new_colour = (gui_colour)result;
        return( TRUE );
    }
    return( FALSE );
}

⌨️ 快捷键说明

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