Parent: [607da9] (diff)

Child: [5856df] (diff)

Download this file

plaintorich.h    58 lines (52 with data), 2.2 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* 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.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef _PLAINTORICH_H_INCLUDED_
#define _PLAINTORICH_H_INCLUDED_
/* @(#$Id: plaintorich.h,v 1.16 2007-11-15 18:05:32 dockes Exp $ (C) 2004 J.F.Dockes */
#include <string>
#include <list>
using std::list;
using std::string;
// A data struct to hold words and groups of words to be highlighted
struct HiliteData {
vector<string> terms;
vector<vector<string> > groups;
vector<int> gslks; // group slacks (number of permitted non-matched words)
};
/**
* Transform plain text into qt rich text for the preview window.
*
* We escape characters like < or &, and add qt rich text tags to
* colorize the query terms. The latter is a quite complicated matter because
* of phrase/near searches. We treat all such searches as "near", not "phrase"
*
* @param in raw text out of internfile.
* @param out rich text output, divided in chunks (to help our caller
* avoid inserting half tags into textedit which doesnt like it)
* @param hdata terms and groups to be highlighted. These are
* lowercase and unaccented.
* @param noHeader if true don't output header (<qt><title>...)
* @param needBeacons Need to navigate highlighted terms, mark them,return last
*/
extern bool plaintorich(const string &in, list<string> &out,
const HiliteData& hdata,
bool noHeader,
int *needBeacons,
int chunksize = 50000
);
extern string termAnchorName(int i);
#endif /* _PLAINTORICH_H_INCLUDED_ */