]> git.lyx.org Git - lyx.git/blobdiff - src/insets/Inset.h
This should be the last of the commits refactoring the InsetLayout code.
[lyx.git] / src / insets / Inset.h
index 2016fb66a89fa796e814c69e5e93161041a5f09a..c3b72f4debcade449f5b78f8f0f2f0eaf7f94b6c 100644 (file)
@@ -295,37 +295,39 @@ public:
                /// returns the string shown in the gui.
                virtual docstring data(size_t idx) const =0;
                /// returns the resource string used to load an icon.
-               virtual std::string icon(size_t idx) const { return std::string(); }
+               virtual std::string icon(size_t /*idx*/) const { return std::string(); }
        };
-       typedef boost::shared_ptr<CompletionList> CompletionListPtr;
 
        /// Returns true if the inset supports completions.
        virtual bool completionSupported(Cursor const &) const { return false; }
        /// Returns true if the inset supports inline completions at the
        /// cursor position. In this case the completion might be stored
        /// in the BufferView's inlineCompletion property.
-       virtual bool inlineCompletionSupported(Cursor const & cur) const { return false; }
+       virtual bool inlineCompletionSupported(Cursor const & /*cur*/) const 
+               { return false; }
        /// Return true if the inline completion should be automatic.
        virtual bool automaticInlineCompletion() const { return true; }
        /// Return true if the popup completion should be automatic.
        virtual bool automaticPopupCompletion() const { return true; }
        /// Returns completion suggestions at cursor position. Return an
        /// null pointer if no completion is a available or possible.
-       virtual CompletionListPtr completionList(Cursor const &) const 
-       {
-               return CompletionListPtr();
-       }
+       /// The caller is responsible to free the returned object!
+       virtual CompletionList const * completionList(Cursor const &) const 
+               { return 0; }
        /// Returns the completion prefix to filter the suggestions for completion.
        /// This is only called if completionList returned a non-null list.
-       virtual docstring completionPrefix(Cursor const &) const { return docstring(); }
+       virtual docstring completionPrefix(Cursor const &) const 
+               { return docstring(); }
        /// Do a completion at the cursor position. Return true on success.
        /// The completion does not contain the prefix. If finished is true, the
        /// completion is final. If finished is false, completion might only be
        /// a partial completion.
-       virtual bool insertCompletion(Cursor & cur, docstring const & completion, 
-               bool finished) { return false; }
+       virtual bool insertCompletion(Cursor & /*cur*/, 
+               docstring const & /*completion*/, bool /*finished*/) 
+               { return false; }
        /// Get the completion inset position and size
-       virtual void completionPosAndDim(Cursor const &, int & x, int & y, Dimension & dim) const {}
+       virtual void completionPosAndDim(Cursor const &, int & /*x*/, int & /*y*/, 
+               Dimension & /*dim*/) const {}
 
        /// returns true if the inset can hold an inset of given type
        virtual bool insetAllowed(InsetCode) const { return false; }