hdlmouse.c

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

C
240
字号
/****************************************************************************
*
*                            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 <stdio.h>
#include "vi.h"
#include "mouse.h"
#include "menu.h"
#include "win.h"
#include "source.h"

static bool dragThumb;

/*
 * HandleMouseEvent - handle main editor mouse events
 */
int HandleMouseEvent( void )
{
    int         win_x,win_y;
    window_id   id;
    info        *cinfo;
    wind        *w;
    int         i;
    bool        diff_word;

    id = GetMousePosInfo( &win_x, &win_y );
    if( id == NO_CHAR ) {
        return( ERR_NO_ERR );
    }
    w = Windows[ id ];
    if( !w->has_border ) {
        win_x += 1;
        win_y += 1;
    }

    if( dragThumb ) {
        if( LastMouseEvent == MOUSE_RELEASE ) {
            dragThumb = FALSE;
        }
        if( id != CurrentWindow ) {
            return( ERR_NO_ERR );
        }
        if( win_x == w->width-1 ) {
            return( PositionToNewThumbPosition( w, win_y ) );
        }
        return( ERR_NO_ERR );
    }

    if( EditFlags.Dragging ) {
        if( LastMouseEvent == MOUSE_DRAG || LastMouseEvent == MOUSE_REPEAT ) {
            UpdateDrag( id, win_x, win_y );
        } else {
            if( LastMouseEvent == MOUSE_PRESS_R || LastMouseEvent == MOUSE_PRESS ) {
                EditFlags.Dragging = FALSE;
                if( LastMouseEvent == MOUSE_PRESS_R ) {
                    LastMouseEvent = MOUSE_RELEASE_R;
                }
            }
        }
    }

    if( LastMouseEvent == MOUSE_RELEASE_R || LastMouseEvent == MOUSE_DCLICK ) {
        if( id == CurrentWindow && InsideWindow( id, win_x, win_y ) ) {
            diff_word = (LastMouseEvent == MOUSE_DCLICK);
            if( GoToLineRelCurs( TopOfPage + win_y - 1 ) ) {
                return( ERR_NO_ERR );
            }
            win_x += LeftColumn;
            win_x = RealCursorPosition( win_x );
            GoToColumnOnCurrentLine( win_x );
            if( diff_word ) {
                InitWordSearch( WordAltDefn );
            }
            i = DoSelectSelection( TRUE );
            if( diff_word ) {
                InitWordSearch( WordDefn );
            }
            return( i );
        }
    }

    /*
     * all kinds of stuff to do if the button was pressed
     */
    if( LastMouseEvent == MOUSE_PRESS || LastMouseEvent == MOUSE_PRESS_R ) {
        if( id != CurrentWindow ) {
            /*
             * swap to another window
             */
            cinfo = InfoHead;
            while( cinfo != NULL ) {
                if( id == cinfo->CurrentWindow ) {
                    BringUpFile( cinfo, TRUE );
                    break;
                }
                cinfo = cinfo->next;
            }
        }
        if( id == CurrentWindow ) {
            if( !ShiftDown() ) {
                UnselectRegion();
            }
            if( w->has_border && LastMouseEvent == MOUSE_PRESS ) {
                /*
                 * clicked on menu for window
                 */
                if( win_x == 0 && win_y == 0 ) {
                    return( DoWindowGadgetMenu() );
                }

                /*
                 * check for resize request
                 */
                if( win_x == w->width-1 && win_y == w->height-1 ) {
                    return( ResizeCurrentWindowWithMouse() );
                }

                /*
                 * check for move request
                 */
                if( win_y == 0 ) {
                    return( MoveCurrentWindowWithMouse() );
                }
            }

            /*
             * check for locate cursor
             */
            if( InsideWindow( id, win_x, win_y ) ) {
                if( ShiftDown() ) {
                    EditFlags.Dragging = TRUE;
                }
                if( GoToLineRelCurs( TopOfPage + win_y - 1 ) ) {
                    return( ERR_NO_ERR );
                }
                win_x += LeftColumn;
                win_x = RealCursorPosition( win_x );
                GoToColumnOnCurrentLine( win_x );
                if( ShiftDown() ) {
                    EditFlags.Dragging = FALSE;
                } else {
                    InitSelectedRegion();
                }
                return( ERR_NO_ERR );
            }
        }
        if( EditFlags.Menus && id == MenuWindow ) {
            i = GetMenuIdFromCoord( win_x-1 );
            if( i >=0 ) {
                return( SetToMenuId( i ) );
            }
        }
    }

    /*
     * allow double click to close window
     */
    if( id == CurrentWindow && LastMouseEvent == MOUSE_DCLICK ) {
        if( win_y == 0 && win_x == 0 ) {
            return( NextFile() );
        }
    }

    /*
     * try to scroll screen
     */
    if( (LastMouseEvent == MOUSE_REPEAT || LastMouseEvent == MOUSE_DCLICK ||
                LastMouseEvent == MOUSE_PRESS ) && w->has_border &&
                id == CurrentWindow && win_x == w->width-1 ) {
        if( win_y == w->height-2 ) {
            return( MoveScreenDown() );
        }
        if( win_y == 1 ) {
            return( MoveScreenUp() );
        }
        /*
         * if we have gadgets, then scroll based on position of scroll
         * thumb. furthermore, if the thumb is selected, then begin
         * thumb dragging mode
         */
        if( w->has_gadgets ) {
            if( win_y == w->vert_scroll_pos ) {
                dragThumb = TRUE;
                return( ERR_NO_ERR );
            } else if( win_y < w->vert_scroll_pos ) {
                return( MovePageUp() );
            } else {
                return( MovePageDown() );
            }
        } else {
            if( win_y < w->height/2 ) {
                return( MovePageUp() );
            } else {
                return( MovePageDown() );
            }
        }
    }

    /*
     * start dragging
     */
    if( id == CurrentWindow && (LastMouseEvent == MOUSE_DRAG ||
                LastMouseEvent == MOUSE_DRAG_R ) &&
                InsideWindow( id, win_x, win_y ) ) {
        EditFlags.Dragging = TRUE;
        UpdateDrag( id, win_x, win_y );
    }

    return( ERR_NO_ERR );

} /* HandleMouseEvent */

⌨️ 快捷键说明

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