171 lines
5.6 KiB
C++
171 lines
5.6 KiB
C++
|
// This file is modified from LexOthers.cxx of Scintilla source code edit control
|
||
|
// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
|
||
|
|
||
|
// The License.txt file describes the conditions under which this software may be distributed.
|
||
|
//this file is part of notepad++
|
||
|
//Copyright (C)2003 Don HO <donho@altern.org >
|
||
|
//
|
||
|
//This program is free software; you can redistribute it and/or
|
||
|
//modify it under the terms of the GNU General Public License
|
||
|
//as published by the Free Software Foundation; either
|
||
|
//version 2 of the License, or (at your option) any later version.
|
||
|
//
|
||
|
//This program is distributed in the hope that it will be useful,
|
||
|
//but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
//GNU General Public License for more details.
|
||
|
//
|
||
|
//You should have received a copy of the GNU General Public License
|
||
|
//along with this program; if not, write to the Free Software
|
||
|
//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include <ctype.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <vector>
|
||
|
|
||
|
#include "Platform.h"
|
||
|
|
||
|
#include "PropSet.h"
|
||
|
#include "Accessor.h"
|
||
|
#include "KeyWords.h"
|
||
|
#include "Scintilla.h"
|
||
|
#include "SciLexer.h"
|
||
|
|
||
|
// The following definitions are a copy of the ones in FindReplaceDlg.h
|
||
|
static enum { searchHeaderLevel = SC_FOLDLEVELBASE + 1, fileHeaderLevel, resultLevel };
|
||
|
|
||
|
|
||
|
static inline bool AtEOL(Accessor &styler, unsigned int i) {
|
||
|
return (styler[i] == '\n') ||
|
||
|
((styler[i] == '\r') && (styler.SafeGetCharAt(i + 1) != '\n'));
|
||
|
}
|
||
|
|
||
|
static const char * const emptyWordListDesc[] = {
|
||
|
0
|
||
|
};
|
||
|
|
||
|
static void ColouriseSearchResultLine(SearchResultMarkings* pMarkings, char *lineBuffer, unsigned int lengthLine, unsigned int startLine, unsigned int endPos, Accessor &styler, int linenum)
|
||
|
{
|
||
|
// startLine and endPos are the absolute positions.
|
||
|
|
||
|
if (lineBuffer[0] == ' ') // file header
|
||
|
{
|
||
|
styler.ColourTo(endPos, SCE_SEARCHRESULT_FILE_HEADER);
|
||
|
}
|
||
|
else if (lineBuffer[0] == 'S') // search header
|
||
|
{
|
||
|
styler.ColourTo(endPos, SCE_SEARCHRESULT_SEARCH_HEADER);
|
||
|
}
|
||
|
else // line info
|
||
|
{
|
||
|
const unsigned int firstTokenLen = 4;
|
||
|
unsigned int currentPos;
|
||
|
|
||
|
PLATFORM_ASSERT(lengthLine >= firstTokenLen + 2);
|
||
|
|
||
|
styler.ColourTo(startLine + firstTokenLen, SCE_SEARCHRESULT_DEFAULT);
|
||
|
|
||
|
for (currentPos = firstTokenLen; lineBuffer[currentPos] != ':' ; currentPos++) PLATFORM_ASSERT(currentPos < lengthLine);
|
||
|
styler.ColourTo(startLine + currentPos - 1, SCE_SEARCHRESULT_LINE_NUMBER);
|
||
|
|
||
|
int currentStat = SCE_SEARCHRESULT_DEFAULT;
|
||
|
|
||
|
PLATFORM_ASSERT(linenum < pMarkings->_length);
|
||
|
SearchResultMarking mi = pMarkings->_markings[linenum];
|
||
|
|
||
|
currentPos += 2; // skip ": "
|
||
|
unsigned int match_start = startLine + mi._start - 1;
|
||
|
unsigned int match_end = startLine + mi._end - 1;
|
||
|
|
||
|
if (match_start <= endPos) {
|
||
|
styler.ColourTo(match_start, SCE_SEARCHRESULT_DEFAULT);
|
||
|
if (match_end <= endPos)
|
||
|
styler.ColourTo(match_end, SCE_SEARCHRESULT_WORD2SEARCH);
|
||
|
else
|
||
|
currentStat = SCE_SEARCHRESULT_WORD2SEARCH;
|
||
|
}
|
||
|
styler.ColourTo(endPos, currentStat);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static void ColouriseSearchResultDoc(unsigned int startPos, int length, int, WordList *keywordlists[], Accessor &styler) {
|
||
|
|
||
|
char lineBuffer[SC_SEARCHRESULT_LINEBUFFERMAXLENGTH];
|
||
|
styler.StartAt(startPos);
|
||
|
styler.StartSegment(startPos);
|
||
|
unsigned int linePos = 0;
|
||
|
unsigned int startLine = startPos;
|
||
|
|
||
|
SearchResultMarkings* pMarkings = NULL;
|
||
|
sscanf(keywordlists[0]->words[0], "%p", &pMarkings);
|
||
|
PLATFORM_ASSERT(pMarkings);
|
||
|
|
||
|
for (unsigned int i = startPos; i < startPos + length; i++) {
|
||
|
lineBuffer[linePos++] = styler[i];
|
||
|
if (AtEOL(styler, i) || (linePos >= sizeof(lineBuffer) - 1)) {
|
||
|
// End of line (or of line buffer) met, colourise it
|
||
|
lineBuffer[linePos] = '\0';
|
||
|
ColouriseSearchResultLine(pMarkings, lineBuffer, linePos, startLine, i, styler, styler.GetLine(startLine));
|
||
|
linePos = 0;
|
||
|
startLine = i + 1;
|
||
|
while (!AtEOL(styler, i)) i++;
|
||
|
}
|
||
|
}
|
||
|
if (linePos > 0) { // Last line does not have ending characters
|
||
|
ColouriseSearchResultLine(pMarkings, lineBuffer, linePos, startLine, startPos + length - 1, styler, styler.GetLine(startLine));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static void FoldSearchResultDoc(unsigned int startPos, int length, int, WordList *[], Accessor &styler) {
|
||
|
bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0;
|
||
|
|
||
|
unsigned int endPos = startPos + length;
|
||
|
int visibleChars = 0;
|
||
|
int lineCurrent = styler.GetLine(startPos);
|
||
|
|
||
|
char chNext = styler[startPos];
|
||
|
int styleNext = styler.StyleAt(startPos);
|
||
|
int headerPoint = 0;
|
||
|
int lev;
|
||
|
|
||
|
for (unsigned int i = startPos; i < endPos; i++) {
|
||
|
char ch = chNext;
|
||
|
chNext = styler[i+1];
|
||
|
|
||
|
int style = styleNext;
|
||
|
styleNext = styler.StyleAt(i + 1);
|
||
|
bool atEOL = (ch == '\n') || (ch == '\r' && chNext != '\n');
|
||
|
|
||
|
if (style == SCE_SEARCHRESULT_FILE_HEADER)
|
||
|
{
|
||
|
headerPoint = fileHeaderLevel;
|
||
|
}
|
||
|
else if (style == SCE_SEARCHRESULT_SEARCH_HEADER)
|
||
|
{
|
||
|
headerPoint = searchHeaderLevel;
|
||
|
}
|
||
|
|
||
|
if (atEOL) {
|
||
|
lev = headerPoint ? SC_FOLDLEVELHEADERFLAG + headerPoint : resultLevel;
|
||
|
headerPoint = 0;
|
||
|
|
||
|
if (visibleChars == 0 && foldCompact)
|
||
|
lev |= SC_FOLDLEVELWHITEFLAG;
|
||
|
|
||
|
if (lev != styler.LevelAt(lineCurrent)) {
|
||
|
styler.SetLevel(lineCurrent, lev);
|
||
|
}
|
||
|
lineCurrent++;
|
||
|
visibleChars = 0;
|
||
|
}
|
||
|
if (!isspacechar(ch))
|
||
|
visibleChars++;
|
||
|
}
|
||
|
styler.SetLevel(lineCurrent, SC_FOLDLEVELBASE);
|
||
|
}
|
||
|
|
||
|
LexerModule lmSearchResult(SCLEX_SEARCHRESULT, ColouriseSearchResultDoc, "searchResult", FoldSearchResultDoc, emptyWordListDesc);
|