]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiWorkArea.h
remove X11's namespace pollution
[lyx.git] / src / frontends / qt4 / GuiWorkArea.h
index a6e20961012b32490869da6240211f5e219b3d5a..b574127b7b0ab93463de28e2062f9d2246b20b05 100644 (file)
 
 #include "frontends/WorkArea.h"
 
-#include "funcrequest.h"
-#include "frontends/Timeout.h"
+#include "FuncRequest.h"
+#include "support/Timeout.h"
 
 #include <QAbstractScrollArea>
+#include <QKeyEvent>
 #include <QMouseEvent>
+#include <QPixmap>
 #include <QResizeEvent>
-#include <QKeyEvent>
+#include <QTabWidget>
 #include <QTimer>
-#include <QPixmap>
 
 #include <queue>
 
@@ -33,31 +34,28 @@ class QDropEvent;
 class QWheelEvent;
 class QPaintEvent;
 
+#ifdef CursorShape
+#undef CursorShape
+#endif
+
 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 +90,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(); }
@@ -119,11 +118,6 @@ public:
        virtual void removeCursor();
 
 private:
-       void doGreyOut(QLPainter & pain);
-       ///
-       void dragEnterEvent(QDragEnterEvent * ev);
-       ///
-       void dropEvent(QDropEvent * ev);
        ///
        void focusInEvent(QFocusEvent *);
        ///
@@ -146,6 +140,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.
@@ -155,6 +151,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.
@@ -165,7 +163,7 @@ private:
        ///
        double_click dc_event_;
 
-       ///     
+       ///
        CursorWidget * cursor_;
        ///
        void updateScreen();
@@ -175,7 +173,31 @@ private:
        bool need_resize_;
        ///
        bool schedule_redraw_;
-};
+       ///
+       int preedit_lines_;
+}; //GuiWorkArea
+
+/// A tabbed set of GuiWorkAreas.
+class TabWorkArea : public QTabWidget
+{
+       Q_OBJECT
+public:
+       TabWorkArea(QWidget * parent = 0);
+       void showBar(bool show);
+       void closeAll();
+       bool setCurrentWorkArea(GuiWorkArea *);
+       bool removeWorkArea(GuiWorkArea *);
+
+Q_SIGNALS:
+       ///
+       void currentWorkAreaChanged(GuiWorkArea *);
+
+public Q_SLOTS:
+       ///
+       void on_currentTabChanged(int index);
+       ///
+       void closeCurrentTab();
+}; // TabWorkArea
 
 } // namespace frontend
 } // namespace lyx