tools/assistant/lib/qhelpsearchengine.cpp
branchRCL_3
changeset 5 d3bac044e0f0
parent 4 3b1da2848fc7
child 8 3f74d0d4af4c
equal deleted inserted replaced
4:3b1da2848fc7 5:d3bac044e0f0
   212     \inmodule QtHelp
   212     \inmodule QtHelp
   213     \brief The QHelpSearchQuery class contains the field name and the associated
   213     \brief The QHelpSearchQuery class contains the field name and the associated
   214     search term
   214     search term
   215 
   215 
   216     The QHelpSearchQuery class contains the field name and the associated search
   216     The QHelpSearchQuery class contains the field name and the associated search
   217     term. Depending on the field the search term might get split up into seperate
   217     term. Depending on the field the search term might get split up into separate
   218     terms to be parsed differently by the search engine.
   218     terms to be parsed differently by the search engine.
   219 
   219 
   220     \sa QHelpSearchQueryWidget
   220     \sa QHelpSearchQueryWidget
   221 */
   221 */
   222 
   222 
   236     \enum QHelpSearchQuery::FieldName
   236     \enum QHelpSearchQuery::FieldName
   237     This enum type specifies the field names that are handled by the search engine.
   237     This enum type specifies the field names that are handled by the search engine.
   238 
   238 
   239     \value DEFAULT  the default field provided by the search widget, several terms should be
   239     \value DEFAULT  the default field provided by the search widget, several terms should be
   240                     split and stored in the word list except search terms enclosed in quotes.
   240                     split and stored in the word list except search terms enclosed in quotes.
   241     \value FUZZY    a field only provided in use with clucene. Terms should be split in seperate
   241     \value FUZZY    a field only provided in use with clucene. Terms should be split in separate
   242                     words and passed to the search engine.
   242                     words and passed to the search engine.
   243     \value WITHOUT  a field only provided in use with clucene. Terms should be split in seperate
   243     \value WITHOUT  a field only provided in use with clucene. Terms should be split in separate
   244                     words and passed to the search engine.
   244                     words and passed to the search engine.
   245     \value PHRASE   a field only provided in use with clucene. Terms should not be split in seperate
   245     \value PHRASE   a field only provided in use with clucene. Terms should not be split in separate
   246                     words.
   246                     words.
   247     \value ALL      a field only provided in use with clucene. Terms should be split in seperate
   247     \value ALL      a field only provided in use with clucene. Terms should be split in separate
   248                     words and passed to the search engine
   248                     words and passed to the search engine
   249     \value ATLEAST  a field only provided in use with clucene. Terms should be split in seperate
   249     \value ATLEAST  a field only provided in use with clucene. Terms should be split in separate
   250                     words and passed to the search engine
   250                     words and passed to the search engine
   251 */
   251 */
   252 
   252 
   253 /*!
   253 /*!
   254     \class QHelpSearchEngine
   254     \class QHelpSearchEngine