lyx_mirror/src/frontends/qt4/QWorkArea.h

202 lines
4.2 KiB
C
Raw Normal View History

// -*- C++ -*-
/**
* \file QWorkArea.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author unknown
* \author John Levon
* \author Abdelrazak Younes
*
* Full author contact details are available in file CREDITS.
*/
#ifndef QWORKAREA_H
#define QWORKAREA_H
#if (defined(Q_WS_X11) && QT_VERSION >= 0x030200)
#define USE_INPUT_METHODS 1
#endif
#ifdef emit
#undef emit
#endif
#include "funcrequest.h"
#include "frontends/Timeout.h"
#include "WorkArea.h"
#include "QLPainter.h"
#include "LyXView.h"
#include <QAbstractScrollArea>
#include <QMouseEvent>
#include <QWheelEvent>
#include <QResizeEvent>
#include <QKeyEvent>
#include <QPaintEvent>
#include <QTimer>
#include <boost/scoped_ptr.hpp>
#include <queue>
class Painter;
class QWidget;
class QDragEnterEvent;
class QDropEvent;
class QMouseEvent;
/// for emulating triple click
class double_click {
public:
int x;
int y;
Qt::ButtonState state;
bool active;
bool operator==(QMouseEvent const & e) {
return x == e.x() && y == e.y()
&& state == e.button();
}
double_click()
: x(0), y(0), state(Qt::NoButton), active(false) {}
double_click(QMouseEvent * e)
: x(e->x()), y(e->y()),
state(e->button()), active(true) {}
};
/** Qt only emits mouse events when the mouse is being moved, but
* we want to generate 'pseudo' mouse events when the mouse button is
* pressed and the mouse cursor is below the bottom, or above the top
* of the work area. In this way, we'll be able to continue scrolling
* (and selecting) the text.
*
* This class stores all the parameters needed to make this happen.
*/
class SyntheticMouseEvent
{
public:
SyntheticMouseEvent();
FuncRequest cmd;
Timeout timeout;
bool restart_timeout;
int x_old;
int y_old;
double scrollbar_value_old;
};
/**
* Qt-specific implementation of the work area
* (buffer view GUI)
*
* It consists of a content pane widget, and a scrollbar.
* Hopefully soon we can just use QScrollView ...
*/
class QWorkArea : public QAbstractScrollArea, public WorkArea {
Q_OBJECT
public:
QWorkArea(LyXView & owner, int w, int h);
virtual ~QWorkArea();
/// return the width of the content pane
virtual int workWidth() const { return viewport()->width(); }
/// return the height of the content pane
virtual int workHeight() const { return viewport()->height(); }
///
virtual void setScrollbarParams(int height, int pos, int line_height);
/// a selection exists
virtual void haveSelection(bool) const;
///
virtual std::string const getClipboard() const;
///
virtual void putClipboard(std::string const &) const;
///
virtual void dragEnterEvent(QDragEnterEvent * event);
///
virtual void dropEvent(QDropEvent* event);
/// return the widget's painter
virtual Painter & getPainter();
//virtual QPaintDevice & paintDevice() { return content_->pixmap(); }
/// return the backing pixmap
QPixmap * pixmap() const { return pixmap_.get(); }
/// return the widget's painter
// virtual QLPainter & getQLPainter();
/// get the content pane widget
QWidget * getContent() const;
protected:
// void scrollContentsBy(int dx, int dy);
/// repaint part of the widget
void paintEvent(QPaintEvent * e);
/// widget has been resized
void resizeEvent(QResizeEvent * e);
/// mouse button press
void mousePressEvent(QMouseEvent * e);
/// mouse button release
void mouseReleaseEvent(QMouseEvent * e);
/// mouse double click of button
void mouseDoubleClickEvent(QMouseEvent * e);
/// mouse motion
void mouseMoveEvent(QMouseEvent * e);
/// wheel event
void wheelEvent(QWheelEvent * e);
/// key press
void keyPressEvent(QKeyEvent * e);
#if USE_INPUT_METHODS
/// IM events
void QWorkArea::inputMethodEvent(QInputMethodEvent * e)
#endif
public slots:
void keyeventTimeout();
void adjustViewWithScrollBar(int action);
protected:
private:
/// our painter
QLPainter painter_;
/// The slot connected to SyntheticMouseEvent::timeout.
void generateSyntheticMouseEvent();
SyntheticMouseEvent synthetic_mouse_event_;
/// the double buffered pixmap
boost::scoped_ptr<QPixmap> pixmap_;
QTimer step_timer_;
std::queue<boost::shared_ptr<QKeyEvent> > keyeventQueue_;
double_click dc_event_;
bool scrolled_with_mouse_;
bool scrolled_with_keyboard_;
};
#endif // QWORKAREA_H