Home
last modified time | relevance | path

Searched refs:sgHead (Results 1 – 18 of 18) sorted by relevance

/dports/editors/ted/Ted-2.23/Ted/
H A DtedSelectionGeometry.c146 if ( sg->sgHead.pgLine < 0 || in tedSelectionRectangle()
147 sg->sgHead.pgLine >= ds->dsHead.dpNode->biParaLineCount || in tedSelectionRectangle()
152 LLDEB(sg->sgHead.pgLine,ds->dsHead.dpNode->biParaLineCount); in tedSelectionRectangle()
156 tlBegin= ds->dsHead.dpNode->biParaLines+ sg->sgHead.pgLine; in tedSelectionRectangle()
159 docPixelRectangleForPositions( drSel, &(sg->sgHead), &(sg->sgTail), lc ); in tedSelectionRectangle()
212 if ( sg->sgTail.pgLine == sg->sgHead.pgLine ) in tedSelectionRectangle()
217 drSel->drX0= sg->sgHead.pgXPixels- IW; in tedSelectionRectangle()
221 drSel->drX0= sg->sgHead.pgXPixels; in tedSelectionRectangle()
440 tedPositionGeometry( &(sg->sgHead), &(ds->dsHead), lastOneHead, lc ); in tedSelectionGeometry()
H A DtedInput.c253 headAtLineHead= ( sg.sgHead.pgPositionFlags & POSflagLINE_HEAD ) != 0; in tedDocGotKey()
254 headAtLineTail= ( sg.sgHead.pgPositionFlags & POSflagLINE_TAIL ) != 0; in tedDocGotKey()
255 headAfterBreak= ( sg.sgHead.pgPositionFlags & POSflagPART_AFTER_BREAK ) != 0; in tedDocGotKey()
441 if ( docLineHead( &dpNew, sg.sgHead.pgPositionFlags ) ) in tedDocGotKey()
467 if ( docLineTail( &dpNew, sg.sgHead.pgPositionFlags ) ) in tedDocGotKey()
558 else{ pgRef= &(sg.sgHead); dpNew= ds.dsHead; } in tedDocGotKey()
592 else{ pgRef= &(sg.sgHead); dpNew= ds.dsHead; } in tedDocGotKey()
H A DtedDocRuler.c368 tl= paraNode->biParaLines+ sg.sgHead.pgLine; in APP_EVENT_HANDLER_H()
477 if ( sg->sgHead.pgLine >= paraNode->biParaLineCount ) in tedDocAdaptTopRuler()
478 { LLDEB(sg->sgHead.pgLine,paraNode->biParaLineCount); return; } in tedDocAdaptTopRuler()
482 tl= paraNode->biParaLines+ sg->sgHead.pgLine; in tedDocAdaptTopRuler()
H A DtedDrawMotif.c171 tedGetIBarRect( &drPixels, &(sg.sgHead), &lc ); in tedShowIBar()
227 tedGetIBarRect( &drPixels, &(sg.sgHead), &lc ); in tedStopCursorBlink()
H A DtedDrawGtk.c171 tedGetIBarRect( &drPixels, &(sg.sgHead), &lc ); in tedShowIBar()
228 tedGetIBarRect( &drPixels, &(sg.sgHead), &lc ); in tedStopCursorBlink()
H A DtedHeaderFooter.c96 sg.sgHead.pgTopPosition.lpPage, treeType ); in tedDocInsertHeaderFooter()
178 sg.sgHead.pgTopPosition.lpPage, treeType ); in tedDocEditHeaderFooter()
H A DtedDrawTextLines.c654 if ( sgLine.sgHead.pgLine != line ) in tedLineRectangle()
655 { LLDEB(sgLine.sgHead.pgLine,line); } in tedLineRectangle()
674 is_ShPt= ( sg->sgHead.pgPositionFlags & POSflagPARA_TAIL ) != 0; in tedLineRectangle()
696 else{ drLine.drX0= sg->sgHead.pgXPixels; } in tedLineRectangle()
H A DtedIncludeDocument.c224 ( sg.sgHead.pgPositionFlags & POSflagPARA_HEAD ) != 0; in tedIncludeRtfDocument()
H A DtedColumnTool.c90 ct->ctBlockFrameWide= sg->sgHead.pgBlockFrameX1- in tedRefreshColumnTool()
91 sg->sgHead.pgBlockFrameX0; in tedRefreshColumnTool()
H A DtedSelect.c91 tedScrollToPositions( ed, &(sgDoc.sgHead), &(sgDoc.sgTail), in tedScrollToSelection()
807 td->tdSelectionGeometry.sgHead.pgTopPosition.lpPage, in tedDescribeSelection()
H A DtedSelectionDescription.c112 ( td->tdSelectionGeometry.sgHead.pgPositionFlags & POSflagLINE_HEAD ); in tedDelimitCurrentSelection()
H A DtedApp.c240 firstPage= sg.sgHead.pgTopPosition.lpPage; in APP_MENU_CALLBACK_H()
H A DtedRepeat.c392 ( sg.sgHead.pgPositionFlags & POSflagPARA_HEAD ) != 0; in tedRepeatReplace()
H A DtedDraw.c657 &(sg.sgHead), &(dc.dcLayoutContext) ); in tedDrawRectangle()
H A DtedUndo.c94 sg->sgHead.pgTopPosition.lpPage, in tedStartUndoOperation()
/dports/editors/ted/Ted-2.23/docLayout/
H A DdocSelectionGeometry.h28 PositionGeometry sgHead; member
H A DdocSelectionGeometry.c43 docInitPositionGeometry( &(sg->sgHead) ); in docInitSelectionGeometry()
/dports/games/sdl-ball/SDL-Ball_src/
H A Dmain.cpp3466 const int sgHead = SAVEGAMEVERSION; //Savegame file version in clearSaveGames() local
3467 file.write( (char *)(&sgHead), sizeof(int)); in clearSaveGames()
3529 int sgHead=0x00; //Invalid version in listSaveGames() local
3531 file.read((char *)(&sgHead), sizeof(int)); in listSaveGames()
3532 if(sgHead!=SAVEGAMEVERSION) in listSaveGames()
3534 …cout << "Savegame format error, is v" << sgHead << " should be v'" << SAVEGAMEVERSION << "'." << … in listSaveGames()