mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
8254b16fd1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2406 a592a061-630c-0410-9148-cb99ea01b6c8
71 lines
1.0 KiB
C++
71 lines
1.0 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file Thesaurus.h
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author John Levon
|
|
*/
|
|
|
|
#ifndef THESAURUS_H
|
|
#define THESAURUS_H
|
|
|
|
#include <vector>
|
|
|
|
#include <config.h>
|
|
|
|
#include "LString.h"
|
|
#ifdef HAVE_LIBAIKSAURUS
|
|
#include "AikSaurus.h"
|
|
#endif
|
|
|
|
/**
|
|
* This class provides an interface to whatever thesauri we might support.
|
|
*/
|
|
|
|
class Thesaurus {
|
|
public:
|
|
///
|
|
Thesaurus();
|
|
///
|
|
~Thesaurus();
|
|
|
|
/**
|
|
* enum of possible part of speech types
|
|
*/
|
|
enum POS {
|
|
NONE = 0x0,
|
|
OTHER = 0x01,
|
|
NOUN = 0x02,
|
|
VERB = 0x04,
|
|
ADJECTIVE = 0x08,
|
|
ADVERB = 0x10
|
|
};
|
|
|
|
/**
|
|
* an individual entry from the thesaurus
|
|
*/
|
|
struct ThesaurusEntry {
|
|
///
|
|
ThesaurusEntry(const string & ent, char pos);
|
|
/// the actual entry
|
|
string entry;
|
|
/// entry's part of speech
|
|
int pos;
|
|
};
|
|
|
|
/**
|
|
* look up some text in the thesaurus
|
|
*/
|
|
std::vector<ThesaurusEntry> lookup(string const & text);
|
|
|
|
private:
|
|
#ifdef HAVE_LIBAIKSAURUS
|
|
AikSaurus * aik_;
|
|
#endif
|
|
};
|
|
|
|
extern Thesaurus thesaurus;
|
|
|
|
#endif
|