os/textandloc/textrendering/texthandling/stext/MParser.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
#include <mparser.h>
sl@0
    20
sl@0
    21
sl@0
    22
// Given the text object, scan the specified range of the text buffer
sl@0
    23
// (from aStartScan to one before aEndScan) and show the first match, if
sl@0
    24
// any, that you would like tagged by setting the range (from aStartTag
sl@0
    25
// to one before aEndTag). Return ETrue if you find anything, EFalse
sl@0
    26
// otherwise. This function must be defined. If aAllowBack is ETrue then
sl@0
    27
// the parser is allowed to recognise tags that start before but
sl@0
    28
// continue into the range specified, otherwise it is not allowed to do
sl@0
    29
// so (and, if it does, will assert in debug mode).
sl@0
    30
// virtual TBool ParseThisText(const CRichText& aTextObj,
sl@0
    31
//							   TBool aAllowBack,
sl@0
    32
//							   TInt aStartScan,
sl@0
    33
//							   TInt aScanLength,
sl@0
    34
//							   TInt& aStartTag,
sl@0
    35
//							   TInt& aTagLength) = 0;
sl@0
    36
sl@0
    37
sl@0
    38
// The text cursor is over the text string in aTextObj (aLength
sl@0
    39
// characters starting at aStartText). Return a const ptr to the string
sl@0
    40
// that should be displayed for a "Do It!" button. (This can be
sl@0
    41
// constant, such as a _LIT, or change according to the tagged text.)
sl@0
    42
// The parser retains ownership of this string and, if necessary, should
sl@0
    43
// delete it when this function is next called or when the parser is
sl@0
    44
// deleted. This function will normally be invoked directly by UIKON and
sl@0
    45
// must be defined.
sl@0
    46
// virtual const TDesC& CreateDoItText(const CRichText& aTextObj,
sl@0
    47
//									   TInt aStartText,
sl@0
    48
//									   TInt aLength) = 0;
sl@0
    49
sl@0
    50
sl@0
    51
// The text cursor is over the text string in aTextObj (aLength
sl@0
    52
// characters starting at aStartText) and the "Do It!" button has been
sl@0
    53
// pushed (or some other activation method has been triggered). Do
sl@0
    54
// whatever should happen (such as launching a browser with the
sl@0
    55
// indicated URL). If the parser requires a copy of the text to pass on,
sl@0
    56
// it is up to it to take one before doing anything (such as handing it
sl@0
    57
// to a separate thread) and to dispose of it later. This function will
sl@0
    58
// normally be invoked directly by UIKON and must be defined.
sl@0
    59
// virtual void ActivateThisTextL(const CRichText& aTextObj,
sl@0
    60
//							      TInt aStartText,
sl@0
    61
//							      TInt aLength) = 0;
sl@0
    62
sl@0
    63
sl@0
    64
// Whether this parser makes any formatting changes to text that is
sl@0
    65
// recognised and tagged as soon as it has been recognised. If it does
sl@0
    66
// then this function should be overridden with one that returns ETrue
sl@0
    67
// and the GetRecogniseFormat() function should be overridden
sl@0
    68
// appropriately - otherwise do nothing.
sl@0
    69
EXPORT_C TBool MParser::ReformatOnRecognise() const
sl@0
    70
	{
sl@0
    71
	return EFalse;
sl@0
    72
	}
sl@0
    73
sl@0
    74
sl@0
    75
// Whether this parser makes any formatting changes to text that is
sl@0
    76
// recognised and tagged when the text cursor moves onto it. If it does
sl@0
    77
// then this function should be overridden with one that returns ETrue
sl@0
    78
// and the GetRolloverFormat() function should be overridden
sl@0
    79
// appropriately otherwise do nothing.
sl@0
    80
EXPORT_C TBool MParser::ReformatOnRollover() const
sl@0
    81
	{
sl@0
    82
	return EFalse;
sl@0
    83
	}
sl@0
    84
sl@0
    85
sl@0
    86
// Given an existing format, modify it to reflect the highlighting
sl@0
    87
// changes that apply immediately some text is recognised and tagged by
sl@0
    88
// this parser. If this parser does not make any highlighting changes at
sl@0
    89
// recognise time then this function should not be overridden.
sl@0
    90
EXPORT_C void MParser::GetRecogniseFormat(TCharFormat& /*aFormat*/)
sl@0
    91
	{
sl@0
    92
	}
sl@0
    93
sl@0
    94
sl@0
    95
// Given an existing format, modify it to reflect the highlighting 
sl@0
    96
// changes that apply when the text cursor moves onto text that has been
sl@0
    97
// recognised and tagged by this parser. This should include all changes
sl@0
    98
// that you wish to make to the base format as this will *not* be
sl@0
    99
// applied cumulatively to the recognise highlighting. If this parser
sl@0
   100
// does not make any highlighting changes at rollover time then this
sl@0
   101
// function should not be overridden and any recognise highlighting will
sl@0
   102
// remain.
sl@0
   103
EXPORT_C void MParser::GetRolloverFormat(TCharFormat& aFormat)
sl@0
   104
	{
sl@0
   105
	GetRecogniseFormat(aFormat);
sl@0
   106
	}
sl@0
   107
sl@0
   108
sl@0
   109
EXPORT_C TBool MParser::ConfirmCursorOverTag(const CRichText& /*aTextObj*/,
sl@0
   110
	TInt /*aTagStart*/, TInt /*aTagLen*/, TInt /*aCurPos*/)
sl@0
   111
/**
sl@0
   112
 This confirmation routine is called by the parsing framework when
sl@0
   113
 it's logic determines the cursor is over a tag. It gives the parser 
sl@0
   114
 a chance to override the default cursor-tag rollover matching. This
sl@0
   115
 is not necessary if the default behaviour is acceptable.
sl@0
   116
 It is called from the CRichText::CursorOverTag()
sl@0
   117
 when the framework tests for format redraw when over a tag and 
sl@0
   118
 CRichText::OverrideFormatForParsersIfApplicable() when Tagma
sl@0
   119
 is formatting text.
sl@0
   120
@publishedPartner
sl@0
   121
@released
sl@0
   122
@param aTextObj
sl@0
   123
 A reference to the text document tag is within.
sl@0
   124
@param aTagStart
sl@0
   125
 The document position of the first tag character.
sl@0
   126
@param aTagLen
sl@0
   127
 The number of characters in the tag.
sl@0
   128
@param aCurPos
sl@0
   129
 The cursor position used in calculation of calling routines.
sl@0
   130
@return TBool
sl@0
   131
 ETrue if parser agrees cursor over a tag, EFalse otherwise.
sl@0
   132
*/
sl@0
   133
	{
sl@0
   134
	return ETrue;
sl@0
   135
	}
sl@0
   136
sl@0
   137
sl@0
   138
EXPORT_C void MParser::MParser_Reserved_2() {}