#include <mw/EPos_CPosLmTextCriteria.h>
class CPosLmTextCriteria : public CPosLmSearchCriteria |
Public Member Functions | |
---|---|
virtual | ~CPosLmTextCriteria() |
IMPORT_C CPosLandmark::TAttributes | AttributesToSearch() |
IMPORT_C void | ClearPositionFieldsToSearch() |
IMPORT_C void | GetPositionFieldsToSearchL(RArray< TUint > &) |
IMPORT_C CPosLmTextCriteria * | NewLC() |
IMPORT_C void | SetAttributesToSearch(CPosLandmark::TAttributes) |
IMPORT_C void | SetPositionFieldsToSearchL(const RArray< TUint > &) |
IMPORT_C void | SetTextL(const TDesC &) |
IMPORT_C TPtrC | Text() |
Inherited Enumerations | |
---|---|
CPosLmSearchCriteria:TCriteriaType |
Criterion for searching for landmarks which contain a certain text.
The search is defined by providing a text to search for and the position fields and text attributes to search.
If no attributes are specified for the search, all text attributes in the landmarks are searched. If no position fields are specified, then all fields are searched.
If this criterion is passed to CPosLandmarkSearch::StartLandmarkSearchL , only landmarks which contain the specified text are returned.
Wild-card characters are supported.
This criterion is only valid when searching for landmarks, i.e. if it is passed to CPosLandmarkSearch::StartCategorySearchL, the function will fail with error code KErrArgument.
IMPORT_C CPosLandmark::TAttributes | AttributesToSearch | ( | ) | const |
Retrieves the landmark attributes which should be searched.
This function returns a bitmap of landmark attributes. The landmark attributes are defined by CPosLandmark::_TAttributes. It is only possible to search the ELandmarkName and EDescription attributes.
Returns: A bitmap indicating which landmark attributes should be searched.
IMPORT_C void | ClearPositionFieldsToSearch | ( | ) |
Clears the position fields list used in a search.
Retrieves a list of the position fields to search.
Parameter | Description |
---|---|
aFieldArray | On return, contains a list of the position fields which are used in a search. If no position fields have been set, the array is empty. Position fields are identified by values defined in TPositionFieldId. |
IMPORT_C CPosLmTextCriteria * | NewLC | ( | ) | [static] |
Two-phased constructor.
Returns: A new instance of this class.
IMPORT_C void | SetAttributesToSearch | ( | CPosLandmark::TAttributes | aAttributes | ) |
Sets which landmark attributes to search.
The client passes a bitmap of the landmark attributes to search. It is only possible to search the ELandmarkName and EDescription attributes.
Parameter | Description |
---|---|
aAttributes | A bitmap indicating which landmark attributes should be searched. |
Sets the position fields to search.
Any previously set position fields are cleared by this call.
Parameter | Description |
---|---|
aFieldArray | A list of the position fields to search. Position fields are identified by values defined in TPositionFieldId. |
IMPORT_C void | SetTextL | ( | const TDesC & | aText | ) |
Sets the search string.
A non-empty text string must be set, otherwise CPosLandmarkSearch::StartLandmarkSearchL will leave with error code KErrArgument.
The search is case insensitive.
Wild-card characters "?" and "*" are supported in the search string. "?" matches a single occurrence of any character and "*" matches zero or more consecutive occurrences of any characters.
A landmark matches the criterion if specified text is found anywhere in selected attributes or position fields.
Parameter | Description |
---|---|
aText | The text to search for. |