]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiCompleter.h
Handle correctly zero table special arguments.
[lyx.git] / src / frontends / qt4 / GuiCompleter.h
index 5900f7c08c4996538803aaa9977ece688af5e686..ea22cadd1e67aea3765fd8a223650d19b2e7ece7 100644 (file)
 #ifndef GUICOMPLETER_H
 #define GUICOMPLETER_H
 
-#include "frontends/WorkArea.h"
-
 #include "DocIterator.h"
-#include "qt_helpers.h"
 #include "support/docstring.h"
 
-#include <QAbstractItemModel>
 #include <QCompleter>
-#include <QStringListModel>
 #include <QTimer>
 
 namespace lyx {
@@ -57,7 +52,7 @@ public:
        void activate();
        /// Do a completion as far as it is unique, but at least one character.
        void tab();
-       
+
        /// Update the visibility of the popup and the inline completion.
        /// This method might set the update flags of the cursor to request
        /// a redraw.
@@ -71,7 +66,7 @@ public:
        docstring longestUniqueCompletion() const;
        ///
        bool uniqueCompletionAvailable() const;
-       
+
 public Q_SLOTS:
        /// Show the popup.
        void showPopup();
@@ -96,26 +91,24 @@ private Q_SLOTS:
        void asyncHidePopup();
        /// the asynchronous part of hideInline(cur)
        void asyncHideInline();
-       
+
 private:
        ///
        void setCurrentCompletion(QString const & s);
        ///
-       void showPopup(Cursor & cur);
-       ///
-       void showInline(Cursor & cur);
+       void showPopup(Cursor const & cur);
        ///
-       void hidePopup(Cursor & cur);
+       void showInline(Cursor const & cur);
        ///
-       void hideInline(Cursor & cur);
+       void hideInline(Cursor const & cur);
        ///
-       void updatePopup(Cursor & cur);
+       void updatePopup(Cursor const & cur);
        ///
-       void updateInline(Cursor & cur, QString const & completion);
+       void updateInline(Cursor const & cur, QString const & completion);
        ///
-       void updatePrefix(Cursor & cur);
+       void updatePrefix(Cursor const & cur);
        ///
-       void updateModel(Cursor & cur, bool popupUpdate, bool inlineUpdate);
+       void updateModel(Cursor const & cur, bool popupUpdate, bool inlineUpdate);
        ///
        bool eventFilter(QObject * watched, QEvent * event);