document the EDITABLE enum

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10599 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2005-11-10 10:19:05 +00:00
parent 3f1d516ac9
commit b0d97e1432
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-11-10 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* insetbase.h: document the EDITABLE enum.
2005-11-07 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* insetert.C (setButtonLabel): use isOpen() to test whether the ert

View File

@ -192,7 +192,13 @@ public:
virtual int docbook(Buffer const &, std::ostream & os,
OutputParams const &) const;
///
/** This enum indicates by which means the inset can be modified:
- NOT_EDITABLE: the inset's content can not be modified at all
(e.g. printindex, insetspecialchar)
- IS_EDITABLE: content can be edited via dialog (e.g. bibtex, index, url)
- HIGHLY_EDITABLE: content can be edited on screen (normally means that
insettext is contained, e.g. collapsables, tabular) */
// FIXME: This has not yet been fully implemented to math insets
enum EDITABLE {
///
NOT_EDITABLE = 0,