]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathNest.h
Change the interface to a paragraph's layout. We still store a LayoutPtr, but now...
[lyx.git] / src / mathed / InsetMathNest.h
index a3419fa73f62d77cdf6fdbc9a649cdb3cb9b3430..72d14e6c71a4ca7ff3caa1af1d049a82471b6823 100644 (file)
 
 #include "InsetMath.h"
 
-
 namespace lyx {
 
+class MathCompletionList : public Inset::CompletionList {
+public:
+       ///
+       MathCompletionList(Cursor const & cur);
+       ///
+       virtual ~MathCompletionList();
+
+       ///
+       virtual bool sorted() const { return false; }
+       ///
+       virtual size_t size() const;
+       ///
+       virtual docstring const & data(size_t idx) const;
+       ///
+       virtual std::string icon(size_t idx) const;
+
+       ///
+       static void addToFavorites(docstring const & completion);
+
+private:
+       ///
+       static std::vector<docstring> globals;
+       ///
+       std::vector<docstring> locals;
+};
 
 /** Abstract base class for all math objects that contain nested items.
     This is basically everything that is not a single character or a
@@ -49,7 +73,7 @@ public:
                bool boundary, int & x, int & y) const;
        ///
        void edit(Cursor & cur, bool front, 
-               EntryDirectionType entry_from = IGNORE_ENTRY_DIRECTION);
+               EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
        ///
        Inset * editXY(Cursor & cur, int x, int y);
 
@@ -75,7 +99,7 @@ public:
        /// access to the lock
        void lock(bool);
        /// get notification when the cursor leaves this inset
-       bool notifyCursorLeaves(Cursor & cur);
+       bool notifyCursorLeaves(Cursor const & old, Cursor & cur);
 
        /// direct access to the cell.
        /// inlined because shows in profile.
@@ -104,13 +128,29 @@ public:
        /// writes [, name(), and args in []
        void normalize(NormalStream & os) const;
        ///
-       int latex(Buffer const &, odocstream & os,
-                       OutputParams const & runparams) const;
+       int latex(odocstream & os, OutputParams const & runparams) const;
        ///
        bool setMouseHover(bool mouse_hover);
        ///
        bool mouseHovered() const { return mouse_hover_; }
 
+       ///
+       bool completionSupported(Cursor const &) const;
+       ///
+       bool inlineCompletionSupported(Cursor const & cur) const;
+       ///
+       bool automaticInlineCompletion() const;
+       ///
+       bool automaticPopupCompletion() const;
+       ///
+       CompletionList const * createCompletionList(Cursor const & cur) const;
+       ///
+       docstring completionPrefix(Cursor const & cur) const;
+       ///
+       bool insertCompletion(Cursor & cur, docstring const & s, bool finished);
+       ///
+       void completionPosAndDim(Cursor const &, int & x, int & y, Dimension & dim) const;
+
 protected:
        ///
        InsetMathNest(InsetMathNest const & inset);