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

📄 tktextmark.c

📁 linux系统下的音频通信
💻 C
📖 第 1 页 / 共 2 页
字号:
/*  * tkTextMark.c -- * *	This file contains the procedure that implement marks for *	text widgets. * * Copyright (c) 1994 The Regents of the University of California. * Copyright (c) 1994-1997 Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * * SCCS: @(#) tkTextMark.c 1.18 97/10/20 11:12:50 */#include "tkInt.h"#include "tkText.h"#include "tkPort.h"/* * Macro that determines the size of a mark segment: */#define MSEG_SIZE ((unsigned) (Tk_Offset(TkTextSegment, body) \	+ sizeof(TkTextMark)))/* * Forward references for procedures defined in this file: */static void		InsertUndisplayProc _ANSI_ARGS_((TkText *textPtr,			    TkTextDispChunk *chunkPtr));static int		MarkDeleteProc _ANSI_ARGS_((TkTextSegment *segPtr,			    TkTextLine *linePtr, int treeGone));static TkTextSegment *	MarkCleanupProc _ANSI_ARGS_((TkTextSegment *segPtr,			    TkTextLine *linePtr));static void		MarkCheckProc _ANSI_ARGS_((TkTextSegment *segPtr,			    TkTextLine *linePtr));static int		MarkLayoutProc _ANSI_ARGS_((TkText *textPtr,			    TkTextIndex *indexPtr, TkTextSegment *segPtr,			    int offset, int maxX, int maxChars,			    int noCharsYet, Tk_Uid wrapMode,			    TkTextDispChunk *chunkPtr));static int		MarkFindNext _ANSI_ARGS_((Tcl_Interp *interp,			    TkText *textPtr, char *markName));static int		MarkFindPrev _ANSI_ARGS_((Tcl_Interp *interp,			    TkText *textPtr, char *markName));/* * The following structures declare the "mark" segment types. * There are actually two types for marks, one with left gravity * and one with right gravity.  They are identical except for * their gravity property. */Tk_SegType tkTextRightMarkType = {    "mark",					/* name */    0,						/* leftGravity */    (Tk_SegSplitProc *) NULL,			/* splitProc */    MarkDeleteProc,				/* deleteProc */    MarkCleanupProc,				/* cleanupProc */    (Tk_SegLineChangeProc *) NULL,		/* lineChangeProc */    MarkLayoutProc,				/* layoutProc */    MarkCheckProc				/* checkProc */};Tk_SegType tkTextLeftMarkType = {    "mark",					/* name */    1,						/* leftGravity */    (Tk_SegSplitProc *) NULL,			/* splitProc */    MarkDeleteProc,				/* deleteProc */    MarkCleanupProc,				/* cleanupProc */    (Tk_SegLineChangeProc *) NULL,		/* lineChangeProc */    MarkLayoutProc,				/* layoutProc */    MarkCheckProc				/* checkProc */};/* *-------------------------------------------------------------- * * TkTextMarkCmd -- * *	This procedure is invoked to process the "mark" options of *	the widget command for text widgets. See the user documentation *	for details on what it does. * * Results: *	A standard Tcl result. * * Side effects: *	See the user documentation. * *-------------------------------------------------------------- */intTkTextMarkCmd(textPtr, interp, argc, argv)    register TkText *textPtr;	/* Information about text widget. */    Tcl_Interp *interp;		/* Current interpreter. */    int argc;			/* Number of arguments. */    char **argv;		/* Argument strings.  Someone else has already				 * parsed this command enough to know that				 * argv[1] is "mark". */{    int c, i;    size_t length;    Tcl_HashEntry *hPtr;    TkTextSegment *markPtr;    Tcl_HashSearch search;    TkTextIndex index;    Tk_SegType *newTypePtr;    if (argc < 3) {	Tcl_AppendResult(interp, "wrong # args: should be \"",		argv[0], " mark option ?arg arg ...?\"", (char *) NULL);	return TCL_ERROR;    }    c = argv[2][0];    length = strlen(argv[2]);    if ((c == 'g') && (strncmp(argv[2], "gravity", length) == 0)) {	if (argc < 4 || argc > 5) {	    Tcl_AppendResult(interp, "wrong # args: should be \"",		    argv[0], " mark gravity markName ?gravity?\"",		    (char *) NULL);	    return TCL_ERROR;	}	hPtr = Tcl_FindHashEntry(&textPtr->markTable, argv[3]);	if (hPtr == NULL) {	    Tcl_AppendResult(interp, "there is no mark named \"",		    argv[3], "\"", (char *) NULL);	    return TCL_ERROR;	}	markPtr = (TkTextSegment *) Tcl_GetHashValue(hPtr);	if (argc == 4) {	    if (markPtr->typePtr == &tkTextRightMarkType) {		interp->result = "right";	    } else {		interp->result = "left";	    }	    return TCL_OK;	}	length = strlen(argv[4]);	c = argv[4][0];	if ((c == 'l') && (strncmp(argv[4], "left", length) == 0)) {	    newTypePtr = &tkTextLeftMarkType;	} else if ((c == 'r') && (strncmp(argv[4], "right", length) == 0)) {	    newTypePtr = &tkTextRightMarkType;	} else {	    Tcl_AppendResult(interp, "bad mark gravity \"",		    argv[4], "\": must be left or right", (char *) NULL);	    return TCL_ERROR;	}	TkTextMarkSegToIndex(textPtr, markPtr, &index);	TkBTreeUnlinkSegment(textPtr->tree, markPtr,		markPtr->body.mark.linePtr);	markPtr->typePtr = newTypePtr;	TkBTreeLinkSegment(markPtr, &index);    } else if ((c == 'n') && (strncmp(argv[2], "names", length) == 0)) {	if (argc != 3) {	    Tcl_AppendResult(interp, "wrong # args: should be \"",		    argv[0], " mark names\"", (char *) NULL);	    return TCL_ERROR;	}	for (hPtr = Tcl_FirstHashEntry(&textPtr->markTable, &search);		hPtr != NULL; hPtr = Tcl_NextHashEntry(&search)) {	    Tcl_AppendElement(interp,		    Tcl_GetHashKey(&textPtr->markTable, hPtr));	}    } else if ((c == 'n') && (strncmp(argv[2], "next", length) == 0)) {	if (argc != 4) {	    Tcl_AppendResult(interp, "wrong # args: should be \"",		    argv[0], " mark next index\"", (char *) NULL);	    return TCL_ERROR;	}	return MarkFindNext(interp, textPtr, argv[3]);    } else if ((c == 'p') && (strncmp(argv[2], "previous", length) == 0)) {	if (argc != 4) {	    Tcl_AppendResult(interp, "wrong # args: should be \"",		    argv[0], " mark previous index\"", (char *) NULL);	    return TCL_ERROR;	}	return MarkFindPrev(interp, textPtr, argv[3]);    } else if ((c == 's') && (strncmp(argv[2], "set", length) == 0)) {	if (argc != 5) {	    Tcl_AppendResult(interp, "wrong # args: should be \"",		    argv[0], " mark set markName index\"", (char *) NULL);	    return TCL_ERROR;	}	if (TkTextGetIndex(interp, textPtr, argv[4], &index) != TCL_OK) {	    return TCL_ERROR;	}	TkTextSetMark(textPtr, argv[3], &index);    } else if ((c == 'u') && (strncmp(argv[2], "unset", length) == 0)) {	for (i = 3; i < argc; i++) {	    hPtr = Tcl_FindHashEntry(&textPtr->markTable, argv[i]);	    if (hPtr != NULL) {		markPtr = (TkTextSegment *) Tcl_GetHashValue(hPtr);		if ((markPtr == textPtr->insertMarkPtr)			|| (markPtr == textPtr->currentMarkPtr)) {		    continue;		}		TkBTreeUnlinkSegment(textPtr->tree, markPtr,			markPtr->body.mark.linePtr);		Tcl_DeleteHashEntry(hPtr);		ckfree((char *) markPtr);	    }	}    } else {	Tcl_AppendResult(interp, "bad mark option \"", argv[2],		"\": must be gravity, names, next, previous, set, or unset",		(char *) NULL);	return TCL_ERROR;    }    return TCL_OK;}/* *---------------------------------------------------------------------- * * TkTextSetMark -- * *	Set a mark to a particular position, creating a new mark if *	one doesn't already exist. * * Results: *	The return value is a pointer to the mark that was just set. * * Side effects: *	A new mark is created, or an existing mark is moved. * *---------------------------------------------------------------------- */TkTextSegment *TkTextSetMark(textPtr, name, indexPtr)    TkText *textPtr;		/* Text widget in which to create mark. */    char *name;			/* Name of mark to set. */    TkTextIndex *indexPtr;	/* Where to set mark. */{    Tcl_HashEntry *hPtr;    TkTextSegment *markPtr;    TkTextIndex insertIndex;    int new;    hPtr = Tcl_CreateHashEntry(&textPtr->markTable, name, &new);    markPtr = (TkTextSegment *) Tcl_GetHashValue(hPtr);    if (!new) {	/*	 * If this is the insertion point that's being moved, be sure	 * to force a display update at the old position.  Also, don't	 * let the insertion cursor be after the final newline of the	 * file.	 */	if (markPtr == textPtr->insertMarkPtr) {	    TkTextIndex index, index2;	    TkTextMarkSegToIndex(textPtr, textPtr->insertMarkPtr, &index);	    TkTextIndexForwChars(&index, 1, &index2);	    TkTextChanged(textPtr, &index, &index2);	    if (TkBTreeLineIndex(indexPtr->linePtr)		    == TkBTreeNumLines(textPtr->tree))  {		TkTextIndexBackChars(indexPtr, 1, &insertIndex);		indexPtr = &insertIndex;	    }	}	TkBTreeUnlinkSegment(textPtr->tree, markPtr,		markPtr->body.mark.linePtr);    } else {	markPtr = (TkTextSegment *) ckalloc(MSEG_SIZE);	markPtr->typePtr = &tkTextRightMarkType;	markPtr->size = 0;	markPtr->body.mark.textPtr = textPtr;	markPtr->body.mark.linePtr = indexPtr->linePtr;	markPtr->body.mark.hPtr = hPtr;	Tcl_SetHashValue(hPtr, markPtr);    }    TkBTreeLinkSegment(markPtr, indexPtr);    /*     * If the mark is the insertion cursor, then update the screen at the     * mark's new location.     */    if (markPtr == textPtr->insertMarkPtr) {	TkTextIndex index2;	TkTextIndexForwChars(indexPtr, 1, &index2);	TkTextChanged(textPtr, indexPtr, &index2);    }    return markPtr;}/* *-------------------------------------------------------------- * * TkTextMarkSegToIndex -- * *	Given a segment that is a mark, create an index that *	refers to the next text character (or other text segment *	with non-zero size) after the mark. * * Results: *	*IndexPtr is filled in with index information. * * Side effects: *	None. * *-------------------------------------------------------------- */voidTkTextMarkSegToIndex(textPtr, markPtr, indexPtr)    TkText *textPtr;		/* Text widget containing mark. */    TkTextSegment *markPtr;	/* Mark segment. */    TkTextIndex *indexPtr;	/* Index information gets stored here.  */{    TkTextSegment *segPtr;    indexPtr->tree = textPtr->tree;    indexPtr->linePtr = markPtr->body.mark.linePtr;    indexPtr->charIndex = 0;    for (segPtr = indexPtr->linePtr->segPtr; segPtr != markPtr;	    segPtr = segPtr->nextPtr) {	indexPtr->charIndex += segPtr->size;    }}/* *-------------------------------------------------------------- * * TkTextMarkNameToIndex -- * *	Given the name of a mark, return an index corresponding *	to the mark name. * * Results: *	The return value is TCL_OK if "name" exists as a mark in *	the text widget.  In this case *indexPtr is filled in with *	the next segment whose after the mark whose size is *	non-zero.  TCL_ERROR is returned if the mark doesn't exist *	in the text widget. * * Side effects: *	None. * *-------------------------------------------------------------- */intTkTextMarkNameToIndex(textPtr, name, indexPtr)    TkText *textPtr;		/* Text widget containing mark. */    char *name;			/* Name of mark. */    TkTextIndex *indexPtr;	/* Index information gets stored here. */{    Tcl_HashEntry *hPtr;    hPtr = Tcl_FindHashEntry(&textPtr->markTable, name);    if (hPtr == NULL) {	return TCL_ERROR;    }    TkTextMarkSegToIndex(textPtr, (TkTextSegment *) Tcl_GetHashValue(hPtr),	    indexPtr);    return TCL_OK;}/* *-------------------------------------------------------------- * * MarkDeleteProc -- * *	This procedure is invoked by the text B-tree code whenever *	a mark lies in a range of characters being deleted. * * Results: *	Returns 1 to indicate that deletion has been rejected. * * Side effects: *	None (even if the whole tree is being deleted we don't *	free up the mark;  it will be done elsewhere). * *-------------------------------------------------------------- */	/* ARGSUSED */static intMarkDeleteProc(segPtr, linePtr, treeGone)    TkTextSegment *segPtr;		/* Segment being deleted. */

⌨️ 快捷键说明

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