mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
cd5bad62e0
dependent, we need the buffer pointer. In fact we already have a pointer to the text inset. So as soon as inset know their buffer we can easily switch to a buffer local word list. * there might be missing some more places to update the words from a buffer, like for example after backspace or more important when the cursor leaves a paragraph. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23244 a592a061-630c-0410-9148-cb99ea01b6c8
45 lines
661 B
C++
45 lines
661 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file WordList.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Stefan Schimanski
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef WORDLIST_H
|
|
#define WORDLIST_H
|
|
|
|
#include "support/docstring.h"
|
|
|
|
namespace lyx {
|
|
|
|
class WordList {
|
|
public:
|
|
///
|
|
WordList();
|
|
///
|
|
~WordList();
|
|
|
|
///
|
|
docstring const & word(size_t idx) const;
|
|
///
|
|
size_t size() const;
|
|
///
|
|
void insert(docstring const & w);
|
|
///
|
|
void remove(docstring const & w);
|
|
|
|
private:
|
|
struct Impl;
|
|
Impl * d;
|
|
};
|
|
|
|
WordList & theWordList();
|
|
|
|
} // namespace lyx
|
|
|
|
#endif // WORDLIST_H
|