⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wopts.c

📁 开放源码的编译器open watcom 1.6.0版的源代码
💻 C
字号:
/****************************************************************************
*
*                            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 <windows.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "wglbl.h"
#include "wgetfn.h"
#include "wstrdup.h"
#include "wmem.h"
#include "wopts.h"

/****************************************************************************/
/* macro definitions                                                        */
/****************************************************************************/

/****************************************************************************/
/* type definitions                                                         */
/****************************************************************************/
typedef struct {
    RECT   screen_pos;
    Bool   screen_maxed;
    char  *last_dir;
    int    last_filter;
} WOptState;

/****************************************************************************/
/* external function prototypes                                             */
/****************************************************************************/

/****************************************************************************/
/* static function prototypes                                               */
/*****************************************************************************/
static void  WWriteOpts         ( WOptState * );
static Bool  WReadOpts          ( WOptState * );
static Bool  WWriteIntOpt       ( char *, int );
static Bool  WGetIntOpt         ( char *, int *);
static Bool  WWriteRectOpt      ( char *, RECT * );
static Bool  WGetRectOpt        ( char *, RECT * );
static char *WRectToStr         ( RECT * );
static void  WStrToRect         ( char *, RECT * );

/****************************************************************************/
/* external variables                                                       */
/****************************************************************************/

/****************************************************************************/
/* static variables                                                         */
/****************************************************************************/
static char *WProfileName = NULL;
static char *WSectionName = NULL;

static WOptState WCurrentState;

static WOptState WDefaultState =
{
    { CW_USEDEFAULT,     /* default window pos               */
      CW_USEDEFAULT,
      CW_USEDEFAULT,
      CW_USEDEFAULT }
,   FALSE                /* is the window maximized          */
,   NULL                 /* last open/save directory         */
,   1                    /* last file filter                 */
};

void WOptsShutdown ( void )
{
    if ( WCurrentState.last_dir ) {
        WMemFree ( WCurrentState.last_dir );
    }
    WCurrentState.last_dir    = WStrDup ( WGetInitialDir () );
    WCurrentState.last_filter = WGetFileFilter ();
    WWriteOpts ( &WCurrentState );
    if ( WCurrentState.last_dir ) {
        WMemFree ( WCurrentState.last_dir );
    }
}

void WWriteOpts ( WOptState *o )
{
    WWriteRectOpt ( "ScreenPos",     &o->screen_pos );
    WWriteIntOpt  ( "ScreenMaxed",   o->screen_maxed );
    WWriteIntOpt  ( "FileFilter",    o->last_filter );
    WritePrivateProfileString ( WSectionName, "LastDir",
                                o->last_dir, WProfileName );
}

Bool WReadOpts ( WOptState *s )
{
    char str[_MAX_PATH];
    Bool ret;

    ret  = WGetRectOpt ( "ScreenPos",     &s->screen_pos );
    ret &= WGetIntOpt  ( "ScreenMaxed",   &s->screen_maxed );
    ret &= WGetIntOpt  ( "FileFilter",    &s->last_filter );

    if ( ret ) {
        ret = GetPrivateProfileString ( WSectionName, "LastDir", "",
                                        str, _MAX_PATH-1, WProfileName );
    }

    if ( ret ) {
        ret = ( ( s->last_dir = WStrDup ( str ) ) != NULL );
    }

    return ( ret );
}

Bool WWriteIntOpt ( char *entry, int i )
{
    char  str[12];
    Bool  ret;

    ltoa (  i, str, 10 );

    ret = WritePrivateProfileString ( WSectionName, entry, str,
                                      WProfileName );

    return ( ret );
}

Bool WGetIntOpt ( char *entry, int *i )
{
    int opt;

    opt = (int) GetPrivateProfileInt ( WSectionName, entry,
                                       0x7fff, WProfileName );

    if ( opt != 0x7fff ) {
        *i = opt;
    }

    return ( opt != 0x7fff );
}

Bool WWriteRectOpt ( char *entry, RECT *r )
{
    char *str;
    Bool  ret;

    ret = FALSE;
    str = WRectToStr ( r );
    if ( str ) {
        ret = WritePrivateProfileString ( WSectionName, entry, str,
                                          WProfileName );
        WMemFree ( str );
    }

    return ( ret );
}

Bool WGetRectOpt ( char *entry, RECT *r )
{
    char  str[41];
    Bool  ret;

    ret = GetPrivateProfileString ( WSectionName, entry, "0, 0, 0, 0",
                                    str, 40, WProfileName );
    if ( ret && strcmp ( "0, 0, 0, 0", str ) ) {
        WStrToRect ( str, r );
        return ( TRUE );
    } else {
        return ( FALSE );
    }
}

char *WRectToStr ( RECT *r )
{
    char  temp[41];

    sprintf ( temp, "%d, %d, %d, %d", r->left, r->top, r->right, r->bottom );

    return ( WStrDup ( temp ) );
}

void WStrToRect ( char *str, RECT *r )
{
    memset ( r, 0, sizeof ( RECT ) );
    sscanf ( str, "%d, %d, %d, %d", &r->left, &r->top,
                                    &r->right, &r->bottom );
}

int WInitOpts ( char *ini_file, char *section_name )
{
    if( !ini_file || !section_name ) {
        return( FALSE );
    }
    WProfileName = ini_file;
    WSectionName = section_name;
    WCurrentState = WDefaultState;
    WReadOpts ( &WCurrentState );
    if ( WCurrentState.last_dir ) {
        WSetInitialDir ( WCurrentState.last_dir );
    }
    WSetFileFilter ( WCurrentState.last_filter );
    return( TRUE );
}

int WGetOption ( WOptReq req )
{
    int ret;

    switch ( req ) {
        case WOptScreenMax:
            ret = WCurrentState.screen_maxed;
            break;

        default:
            ret = BAD_OPT_REQ;
    }

    return ( ret );
}

void WGetScreenPosOption ( RECT *pos )
{
    *pos = WCurrentState.screen_pos;
}

void WSetScreenPosOption ( RECT *pos )
{
    WCurrentState.screen_pos = *pos;
}

int WSetOption ( WOptReq req, int val )
{
    int old;

    switch ( req ) {
        case WOptScreenMax:
            old = WCurrentState.screen_maxed;
            WCurrentState.screen_maxed = ( Bool ) val;
            break;

        default:
            old = BAD_OPT_REQ;
    }

    return ( old );
}

⌨️ 快捷键说明

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