]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiWorkArea.h
rename a few view functions from foo() to fooView()
[lyx.git] / src / frontends / qt4 / GuiWorkArea.h
index c9843504bd34ebf9797081ec85300a58eabd81dd..2bafbeb5b3669ccbf5322bcbd6e9f63876cea3be 100644 (file)
@@ -15,8 +15,8 @@
 
 #include "frontends/WorkArea.h"
 
-#include "funcrequest.h"
-#include "frontends/Timeout.h"
+#include "FuncRequest.h"
+#include "support/Timeout.h"
 
 #include <QAbstractScrollArea>
 #include <QMouseEvent>
@@ -36,28 +36,21 @@ class QPaintEvent;
 namespace lyx {
 namespace frontend {
 
-class GuiView;
-class QLPainter;
-
 /// for emulating triple click
 class double_click {
 public:
-       int x;
-       int y;
        Qt::MouseButton state;
        bool active;
 
        bool operator==(QMouseEvent const & e) {
-               return x == e.x() && y == e.y()
-                       && state == e.button();
+               return state == e.button();
        }
 
        double_click()
-               : x(0), y(0), state(Qt::NoButton), active(false) {}
+               : state(Qt::NoButton), active(false) {}
 
        double_click(QMouseEvent * e)
-               : x(e->x()), y(e->y()),
-               state(e->button()), active(true) {}
+               : state(e->button()), active(true) {}
 };
 
 /** Qt only emits mouse events when the mouse is being moved, but
@@ -92,10 +85,11 @@ class GuiWorkArea : public QAbstractScrollArea, public WorkArea
 
 public:
        ///
-       GuiWorkArea(int width, int height, int id, LyXView & lyx_view);
+       GuiWorkArea(Buffer & buffer, LyXView & lv);
 
        ///
        bool hasFocus() const { return QAbstractScrollArea::hasFocus(); }
+       bool isVisible() const { return QAbstractScrollArea::isVisible(); }
 
        /// return the width of the content pane
        virtual int width() const { return viewport()->width(); }
@@ -103,6 +97,8 @@ public:
        virtual int height() const { return viewport()->height(); }
        ///
        virtual void setScrollbarParams(int height, int pos, int line_height);
+       ///
+       virtual void scheduleRedraw() { schedule_redraw_ = true; }
 
        /// update the passed area.
        void update(int x, int y, int w, int h);
@@ -117,11 +113,6 @@ public:
        virtual void removeCursor();
 
 private:
-       void doGreyOut(QLPainter & pain);
-       ///
-       void dragEnterEvent(QDragEnterEvent * ev);
-       ///
-       void dropEvent(QDropEvent * ev);
        ///
        void focusInEvent(QFocusEvent *);
        ///
@@ -144,6 +135,8 @@ private:
        void keyPressEvent(QKeyEvent * ev);
        /// IM events
        void inputMethodEvent(QInputMethodEvent * ev);
+       /// IM query
+       QVariant inputMethodQuery(Qt::InputMethodQuery query) const;
 
 public Q_SLOTS:
        /// Adjust the LyX buffer view with the position of the scrollbar.
@@ -153,6 +146,8 @@ public Q_SLOTS:
        * emits an 'int' action.
        */
        void adjustViewWithScrollBar(int action = 0);
+       /// timer to limit triple clicks
+       void doubleClickTimeout();
 
 private:
        /// The slot connected to SyntheticMouseEvent::timeout.
@@ -163,7 +158,7 @@ private:
        ///
        double_click dc_event_;
 
-       ///     
+       ///
        CursorWidget * cursor_;
        ///
        void updateScreen();
@@ -171,6 +166,10 @@ private:
        QPixmap screen_;
        ///
        bool need_resize_;
+       ///
+       bool schedule_redraw_;
+       ///
+       int preedit_lines_;
 };
 
 } // namespace frontend