2006-03-05 17:24:44 +00:00
|
|
|
/**
|
2006-06-20 08:39:16 +00:00
|
|
|
* \file GuiWorkArea.C
|
2006-03-05 17:24:44 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author John Levon
|
|
|
|
* \author Abdelrazak Younes
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
#include "GuiWorkArea.h"
|
2006-07-13 16:37:55 +00:00
|
|
|
|
2006-09-22 09:47:39 +00:00
|
|
|
#include "GuiApplication.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
#include "QLPainter.h"
|
|
|
|
#include "QLyXKeySym.h"
|
|
|
|
#include "qt_helpers.h"
|
2006-08-17 17:15:17 +00:00
|
|
|
|
2006-11-19 13:35:16 +00:00
|
|
|
#include "gettext.h"
|
2006-08-21 09:14:18 +00:00
|
|
|
#include "LyXView.h"
|
|
|
|
|
2006-04-13 20:39:42 +00:00
|
|
|
#include "BufferView.h"
|
2006-10-23 08:46:09 +00:00
|
|
|
#include "rowpainter.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
#include "debug.h"
|
|
|
|
#include "funcrequest.h"
|
|
|
|
#include "LColor.h"
|
2006-10-23 08:46:09 +00:00
|
|
|
#include "version.h"
|
|
|
|
#include "lyxrc.h"
|
2006-08-17 17:15:17 +00:00
|
|
|
|
2006-10-23 08:46:09 +00:00
|
|
|
#include "support/filetools.h" // LibFileSearch
|
2006-03-05 17:24:44 +00:00
|
|
|
#include "support/os.h"
|
2006-12-21 02:49:27 +00:00
|
|
|
#include "support/convert.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2006-10-23 08:46:09 +00:00
|
|
|
#include "graphics/GraphicsImage.h"
|
|
|
|
#include "graphics/GraphicsLoader.h"
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
#include <QLayout>
|
|
|
|
#include <QMainWindow>
|
2006-05-07 10:20:43 +00:00
|
|
|
#include <QMimeData>
|
|
|
|
#include <QUrl>
|
2006-03-05 17:24:44 +00:00
|
|
|
#include <QDragEnterEvent>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QScrollBar>
|
|
|
|
|
|
|
|
#include <boost/bind.hpp>
|
2006-07-13 16:37:55 +00:00
|
|
|
#include <boost/current_function.hpp>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2006-06-26 16:55:35 +00:00
|
|
|
#ifdef Q_WS_WIN
|
2006-11-02 22:53:10 +00:00
|
|
|
int const CursorWidth = 2;
|
2006-06-26 16:55:35 +00:00
|
|
|
#else
|
2006-11-02 22:53:10 +00:00
|
|
|
int const CursorWidth = 1;
|
2006-06-26 16:55:35 +00:00
|
|
|
#endif
|
2006-03-12 17:29:34 +00:00
|
|
|
|
2006-10-23 11:19:17 +00:00
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
using std::endl;
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
namespace os = lyx::support::os;
|
|
|
|
|
2006-10-23 08:46:09 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
2006-03-12 17:29:34 +00:00
|
|
|
|
2006-11-26 21:30:39 +00:00
|
|
|
using support::FileName;
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
/// return the LyX key state from Qt's
|
2006-10-21 00:16:43 +00:00
|
|
|
static key_modifier::state q_key_state(Qt::KeyboardModifiers state)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
key_modifier::state k = key_modifier::none;
|
|
|
|
if (state & Qt::ControlModifier)
|
|
|
|
k |= key_modifier::ctrl;
|
|
|
|
if (state & Qt::ShiftModifier)
|
|
|
|
k |= key_modifier::shift;
|
2006-07-09 17:30:21 +00:00
|
|
|
if (state & Qt::AltModifier || state & Qt::MetaModifier)
|
2006-03-05 17:24:44 +00:00
|
|
|
k |= key_modifier::alt;
|
|
|
|
return k;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// return the LyX mouse button state from Qt's
|
2006-10-21 00:16:43 +00:00
|
|
|
static mouse_button::state q_button_state(Qt::MouseButton button)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
mouse_button::state b = mouse_button::none;
|
|
|
|
switch (button) {
|
|
|
|
case Qt::LeftButton:
|
|
|
|
b = mouse_button::button1;
|
|
|
|
break;
|
|
|
|
case Qt::MidButton:
|
|
|
|
b = mouse_button::button2;
|
|
|
|
break;
|
|
|
|
case Qt::RightButton:
|
|
|
|
b = mouse_button::button3;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-23 11:19:17 +00:00
|
|
|
/// return the LyX mouse button state from Qt's
|
2006-11-02 22:23:26 +00:00
|
|
|
mouse_button::state q_motion_state(Qt::MouseButtons state)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
mouse_button::state b = mouse_button::none;
|
|
|
|
if (state & Qt::LeftButton)
|
|
|
|
b |= mouse_button::button1;
|
|
|
|
if (state & Qt::MidButton)
|
|
|
|
b |= mouse_button::button2;
|
|
|
|
if (state & Qt::RightButton)
|
|
|
|
b |= mouse_button::button3;
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
namespace frontend {
|
|
|
|
|
2006-11-12 07:50:18 +00:00
|
|
|
class CursorWidget {
|
2006-10-23 11:19:17 +00:00
|
|
|
public:
|
2006-11-12 07:50:18 +00:00
|
|
|
CursorWidget() {}
|
|
|
|
|
|
|
|
void draw(QPainter & painter)
|
2006-10-23 11:19:17 +00:00
|
|
|
{
|
2006-11-12 07:50:18 +00:00
|
|
|
// FIXME: do something depending on the cursor shape.
|
|
|
|
if (show_ && rect_.isValid())
|
|
|
|
painter.fillRect(rect_, color_);
|
2006-10-23 11:19:17 +00:00
|
|
|
}
|
|
|
|
|
2006-11-12 07:50:18 +00:00
|
|
|
void update(int x, int y, int h, CursorShape shape)
|
2006-10-23 11:19:17 +00:00
|
|
|
{
|
2006-11-12 07:50:18 +00:00
|
|
|
color_ = guiApp->colorCache().get(LColor::cursor);
|
|
|
|
rect_ = QRect(x, y, CursorWidth, h);
|
|
|
|
shape_ = shape;
|
|
|
|
}
|
2006-10-23 11:19:17 +00:00
|
|
|
|
2006-11-12 08:29:05 +00:00
|
|
|
void show(bool set_show = true) { show_ = set_show; }
|
2006-11-12 07:50:18 +00:00
|
|
|
void hide() { show_ = false; }
|
2006-10-23 11:19:17 +00:00
|
|
|
|
2006-11-12 08:29:05 +00:00
|
|
|
QRect const & rect() { return rect_; }
|
|
|
|
|
2006-11-12 07:50:18 +00:00
|
|
|
private:
|
2006-10-23 11:19:17 +00:00
|
|
|
///
|
|
|
|
CursorShape shape_;
|
2006-11-02 22:53:10 +00:00
|
|
|
///
|
2006-11-12 07:50:18 +00:00
|
|
|
bool show_;
|
2006-11-02 22:53:10 +00:00
|
|
|
///
|
2006-11-12 07:50:18 +00:00
|
|
|
QColor color_;
|
2006-11-02 22:53:10 +00:00
|
|
|
///
|
2006-11-12 07:50:18 +00:00
|
|
|
QRect rect_;
|
2006-10-23 11:19:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
// This is a 'heartbeat' generating synthetic mouse move events when the
|
|
|
|
// cursor is at the top or bottom edge of the viewport. One scroll per 0.2 s
|
|
|
|
SyntheticMouseEvent::SyntheticMouseEvent()
|
|
|
|
: timeout(200), restart_timeout(true),
|
|
|
|
x_old(-1), y_old(-1), scrollbar_value_old(-1.0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
2006-10-23 16:29:24 +00:00
|
|
|
GuiWorkArea::GuiWorkArea(int w, int h, int id, LyXView & lyx_view)
|
2007-01-16 15:16:09 +00:00
|
|
|
: WorkArea(id, lyx_view), need_resize_(false), shedule_redraw_(false)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2006-11-12 07:50:18 +00:00
|
|
|
cursor_ = new frontend::CursorWidget();
|
2006-10-23 11:34:43 +00:00
|
|
|
cursor_->hide();
|
2006-10-23 11:19:17 +00:00
|
|
|
|
2006-11-15 18:01:44 +00:00
|
|
|
setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
|
2006-03-05 17:24:44 +00:00
|
|
|
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
|
|
setAcceptDrops(true);
|
2006-12-04 04:31:18 +00:00
|
|
|
setMouseTracking(true);
|
2006-03-05 17:24:44 +00:00
|
|
|
setMinimumSize(100, 70);
|
|
|
|
|
2006-11-13 17:28:37 +00:00
|
|
|
viewport()->setAutoFillBackground(false);
|
2006-12-21 14:50:46 +00:00
|
|
|
// We don't need double-buffering nor SystemBackground on
|
|
|
|
// the viewport because we have our own backing pixmap.
|
|
|
|
viewport()->setAttribute(Qt::WA_NoSystemBackground);
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
setFocusPolicy(Qt::WheelFocus);
|
2006-03-12 17:29:34 +00:00
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
viewport()->setCursor(Qt::IBeamCursor);
|
|
|
|
|
|
|
|
resize(w, h);
|
|
|
|
|
|
|
|
synthetic_mouse_event_.timeout.timeout.connect(
|
2006-06-20 08:39:16 +00:00
|
|
|
boost::bind(&GuiWorkArea::generateSyntheticMouseEvent,
|
2006-03-05 17:24:44 +00:00
|
|
|
this));
|
2006-04-05 23:56:29 +00:00
|
|
|
|
2006-03-12 17:29:34 +00:00
|
|
|
// Initialize the vertical Scroll Bar
|
2006-12-30 10:30:02 +00:00
|
|
|
QObject::connect(verticalScrollBar(), SIGNAL(actionTriggered(int)),
|
|
|
|
this, SLOT(adjustViewWithScrollBar(int)));
|
2006-03-12 17:29:34 +00:00
|
|
|
|
|
|
|
// PageStep only depends on the viewport height.
|
2006-08-17 17:15:17 +00:00
|
|
|
verticalScrollBar()->setPageStep(viewport()->height());
|
2006-03-12 17:29:34 +00:00
|
|
|
|
|
|
|
lyxerr[Debug::GUI] << BOOST_CURRENT_FUNCTION
|
|
|
|
<< "\n Area width\t" << width()
|
|
|
|
<< "\n Area height\t" << height()
|
|
|
|
<< "\n viewport width\t" << viewport()->width()
|
|
|
|
<< "\n viewport height\t" << viewport()->height()
|
|
|
|
<< endl;
|
|
|
|
|
2006-06-26 16:55:35 +00:00
|
|
|
// Enables input methods for asian languages.
|
|
|
|
// Must be set when creating custom text editing widgets.
|
|
|
|
setAttribute(Qt::WA_InputMethodEnabled, true);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2006-08-17 17:15:17 +00:00
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
void GuiWorkArea::setScrollbarParams(int h, int scroll_pos, int scroll_line_step)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2006-11-15 18:01:44 +00:00
|
|
|
if (verticalScrollBarPolicy() != Qt::ScrollBarAlwaysOn)
|
|
|
|
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
|
|
|
|
|
2006-08-16 15:24:38 +00:00
|
|
|
verticalScrollBar()->setTracking(false);
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
// do what cursor movement does (some grey)
|
|
|
|
h += height() / 4;
|
|
|
|
int scroll_max_ = std::max(0, h - height());
|
|
|
|
|
|
|
|
verticalScrollBar()->setRange(0, scroll_max_);
|
2006-03-12 17:29:34 +00:00
|
|
|
verticalScrollBar()->setSliderPosition(scroll_pos);
|
2006-08-13 15:55:03 +00:00
|
|
|
verticalScrollBar()->setSingleStep(scroll_line_step);
|
2006-10-22 12:36:31 +00:00
|
|
|
verticalScrollBar()->setValue(scroll_pos);
|
2006-08-16 15:24:38 +00:00
|
|
|
|
|
|
|
verticalScrollBar()->setTracking(true);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2006-06-26 16:55:35 +00:00
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
void GuiWorkArea::adjustViewWithScrollBar(int)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2006-08-15 21:57:23 +00:00
|
|
|
scrollBufferView(verticalScrollBar()->sliderPosition());
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
void GuiWorkArea::dragEnterEvent(QDragEnterEvent * event)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2006-05-07 10:20:43 +00:00
|
|
|
if (event->mimeData()->hasUrls())
|
|
|
|
event->accept();
|
2006-03-05 17:24:44 +00:00
|
|
|
/// \todo Ask lyx-devel is this is enough:
|
|
|
|
/// if (event->mimeData()->hasFormat("text/plain"))
|
2006-04-05 23:56:29 +00:00
|
|
|
/// event->acceptProposedAction();
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
void GuiWorkArea::dropEvent(QDropEvent* event)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2006-05-07 10:20:43 +00:00
|
|
|
QList<QUrl> files = event->mimeData()->urls();
|
|
|
|
if (files.isEmpty())
|
|
|
|
return;
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
lyxerr[Debug::GUI] << "GuiWorkArea::dropEvent: got URIs!" << endl;
|
2006-05-07 10:20:43 +00:00
|
|
|
for (int i = 0; i!=files.size(); ++i) {
|
2006-08-27 16:10:41 +00:00
|
|
|
string const file = os::internal_path(fromqstr(files.at(i).toLocalFile()));
|
2006-05-07 10:20:43 +00:00
|
|
|
if (!file.empty())
|
2006-07-13 16:37:55 +00:00
|
|
|
dispatch(FuncRequest(LFUN_FILE_OPEN, file));
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-27 23:26:52 +00:00
|
|
|
void GuiWorkArea::focusInEvent(QFocusEvent * /*event*/)
|
|
|
|
{
|
2006-11-07 17:19:33 +00:00
|
|
|
// No need to do anything if we didn't change views...
|
2006-12-29 23:54:48 +00:00
|
|
|
// if (theApp() == 0 || &lyx_view_ == theApp()->currentView())
|
|
|
|
// return;
|
2006-11-07 17:19:33 +00:00
|
|
|
|
2006-11-30 00:04:51 +00:00
|
|
|
theApp()->setCurrentView(lyx_view_);
|
2006-11-07 17:19:33 +00:00
|
|
|
|
2006-11-01 22:57:32 +00:00
|
|
|
// FIXME: it would be better to send a signal "newBuffer()"
|
2006-11-07 17:19:33 +00:00
|
|
|
// in BufferList that could be connected to the different tabbars.
|
2006-11-01 22:57:32 +00:00
|
|
|
lyx_view_.updateTab();
|
2006-11-07 17:19:33 +00:00
|
|
|
|
2006-12-21 14:50:46 +00:00
|
|
|
startBlinkingCursor();
|
2006-10-27 23:26:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::focusOutEvent(QFocusEvent * /*event*/)
|
|
|
|
{
|
|
|
|
stopBlinkingCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
void GuiWorkArea::mousePressEvent(QMouseEvent * e)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
if (dc_event_.active && dc_event_ == *e) {
|
|
|
|
dc_event_.active = false;
|
|
|
|
FuncRequest cmd(LFUN_MOUSE_TRIPLE,
|
|
|
|
dc_event_.x, dc_event_.y,
|
|
|
|
q_button_state(dc_event_.state));
|
2006-07-13 16:37:55 +00:00
|
|
|
dispatch(cmd);
|
2006-03-05 17:24:44 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
FuncRequest const cmd(LFUN_MOUSE_PRESS, e->x(), e->y(),
|
|
|
|
q_button_state(e->button()));
|
2006-07-13 16:37:55 +00:00
|
|
|
dispatch(cmd);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
void GuiWorkArea::mouseReleaseEvent(QMouseEvent * e)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
if (synthetic_mouse_event_.timeout.running())
|
|
|
|
synthetic_mouse_event_.timeout.stop();
|
|
|
|
|
|
|
|
FuncRequest const cmd(LFUN_MOUSE_RELEASE, e->x(), e->y(),
|
|
|
|
q_button_state(e->button()));
|
2006-07-13 16:37:55 +00:00
|
|
|
dispatch(cmd);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
void GuiWorkArea::mouseMoveEvent(QMouseEvent * e)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
FuncRequest cmd(LFUN_MOUSE_MOTION, e->x(), e->y(),
|
2006-11-02 22:23:26 +00:00
|
|
|
q_motion_state(e->buttons()));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
// If we're above or below the work area...
|
2006-03-12 17:29:34 +00:00
|
|
|
if (e->y() <= 20 || e->y() >= viewport()->height() - 20) {
|
2006-03-05 17:24:44 +00:00
|
|
|
// Make sure only a synthetic event can cause a page scroll,
|
|
|
|
// so they come at a steady rate:
|
|
|
|
if (e->y() <= 20)
|
|
|
|
// _Force_ a scroll up:
|
|
|
|
cmd.y = -40;
|
|
|
|
else
|
2006-03-12 17:29:34 +00:00
|
|
|
cmd.y = viewport()->height();
|
2006-03-05 17:24:44 +00:00
|
|
|
// Store the event, to be handled when the timeout expires.
|
|
|
|
synthetic_mouse_event_.cmd = cmd;
|
|
|
|
|
|
|
|
if (synthetic_mouse_event_.timeout.running())
|
|
|
|
// Discard the event. Note that it _may_ be handled
|
|
|
|
// when the timeout expires if
|
|
|
|
// synthetic_mouse_event_.cmd has not been overwritten.
|
|
|
|
// Ie, when the timeout expires, we handle the
|
|
|
|
// most recent event but discard all others that
|
|
|
|
// occurred after the one used to start the timeout
|
|
|
|
// in the first place.
|
|
|
|
return;
|
|
|
|
else {
|
|
|
|
synthetic_mouse_event_.restart_timeout = true;
|
|
|
|
synthetic_mouse_event_.timeout.start();
|
|
|
|
// Fall through to handle this event...
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (synthetic_mouse_event_.timeout.running()) {
|
|
|
|
// Store the event, to be possibly handled when the timeout
|
|
|
|
// expires.
|
|
|
|
// Once the timeout has expired, normal control is returned
|
|
|
|
// to mouseMoveEvent (restart_timeout = false).
|
|
|
|
// This results in a much smoother 'feel' when moving the
|
|
|
|
// mouse back into the work area.
|
|
|
|
synthetic_mouse_event_.cmd = cmd;
|
|
|
|
synthetic_mouse_event_.restart_timeout = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Has anything changed on-screen since the last QMouseEvent
|
|
|
|
// was received?
|
|
|
|
double const scrollbar_value = verticalScrollBar()->value();
|
|
|
|
if (e->x() != synthetic_mouse_event_.x_old ||
|
|
|
|
e->y() != synthetic_mouse_event_.y_old ||
|
|
|
|
scrollbar_value != synthetic_mouse_event_.scrollbar_value_old) {
|
|
|
|
// Yes it has. Store the params used to check this.
|
|
|
|
synthetic_mouse_event_.x_old = e->x();
|
|
|
|
synthetic_mouse_event_.y_old = e->y();
|
|
|
|
synthetic_mouse_event_.scrollbar_value_old = scrollbar_value;
|
|
|
|
|
|
|
|
// ... and dispatch the event to the LyX core.
|
2006-07-13 16:37:55 +00:00
|
|
|
dispatch(cmd);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
void GuiWorkArea::wheelEvent(QWheelEvent * e)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2006-03-16 20:34:20 +00:00
|
|
|
// Wheel rotation by one notch results in a delta() of 120 (see
|
|
|
|
// documentation of QWheelEvent)
|
2006-06-20 08:39:16 +00:00
|
|
|
int const lines = qApp->wheelScrollLines() * e->delta() / 120;
|
2006-03-16 20:34:20 +00:00
|
|
|
verticalScrollBar()->setValue(verticalScrollBar()->value() -
|
2006-08-13 15:55:03 +00:00
|
|
|
lines * verticalScrollBar()->singleStep());
|
2006-03-16 20:34:20 +00:00
|
|
|
adjustViewWithScrollBar();
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2006-03-16 20:34:20 +00:00
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
void GuiWorkArea::generateSyntheticMouseEvent()
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2006-08-13 22:54:59 +00:00
|
|
|
// Set things off to generate the _next_ 'pseudo' event.
|
2006-03-05 17:24:44 +00:00
|
|
|
if (synthetic_mouse_event_.restart_timeout)
|
|
|
|
synthetic_mouse_event_.timeout.start();
|
|
|
|
|
|
|
|
// Has anything changed on-screen since the last timeout signal
|
|
|
|
// was received?
|
|
|
|
double const scrollbar_value = verticalScrollBar()->value();
|
|
|
|
if (scrollbar_value != synthetic_mouse_event_.scrollbar_value_old) {
|
|
|
|
// Yes it has. Store the params used to check this.
|
|
|
|
synthetic_mouse_event_.scrollbar_value_old = scrollbar_value;
|
|
|
|
|
|
|
|
// ... and dispatch the event to the LyX core.
|
2006-07-13 16:37:55 +00:00
|
|
|
dispatch(synthetic_mouse_event_.cmd);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
|
|
|
|
void GuiWorkArea::keyPressEvent(QKeyEvent * e)
|
2006-03-12 17:29:34 +00:00
|
|
|
{
|
|
|
|
lyxerr[Debug::KEY] << BOOST_CURRENT_FUNCTION
|
|
|
|
<< " count=" << e->count()
|
2006-08-13 15:55:03 +00:00
|
|
|
<< " text=" << fromqstr(e->text())
|
2006-03-12 17:29:34 +00:00
|
|
|
<< " isAutoRepeat=" << e->isAutoRepeat()
|
|
|
|
<< " key=" << e->key()
|
|
|
|
<< endl;
|
|
|
|
|
2006-11-25 22:35:09 +00:00
|
|
|
boost::shared_ptr<QLyXKeySym> sym(new QLyXKeySym);
|
|
|
|
sym->set(e);
|
|
|
|
processKeySym(sym, q_key_state(e->modifiers()));
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
void GuiWorkArea::mouseDoubleClickEvent(QMouseEvent * e)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
dc_event_ = double_click(e);
|
|
|
|
|
|
|
|
if (!dc_event_.active)
|
|
|
|
return;
|
|
|
|
|
|
|
|
dc_event_.active = false;
|
|
|
|
|
|
|
|
FuncRequest cmd(LFUN_MOUSE_DOUBLE,
|
|
|
|
dc_event_.x, dc_event_.y,
|
|
|
|
q_button_state(dc_event_.state));
|
2006-07-13 16:37:55 +00:00
|
|
|
dispatch(cmd);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-23 08:46:09 +00:00
|
|
|
void GuiWorkArea::resizeEvent(QResizeEvent * ev)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2006-10-23 08:46:09 +00:00
|
|
|
QAbstractScrollArea::resizeEvent(ev);
|
2007-01-04 12:36:17 +00:00
|
|
|
need_resize_ = true;
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
|
|
|
|
void GuiWorkArea::update(int x, int y, int w, int h)
|
2006-03-20 17:25:02 +00:00
|
|
|
{
|
2006-11-26 02:18:32 +00:00
|
|
|
viewport()->repaint(x, y, w, h);
|
2006-03-20 17:25:02 +00:00
|
|
|
}
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
|
2006-10-23 08:46:09 +00:00
|
|
|
void GuiWorkArea::doGreyOut(QLPainter & pain)
|
2006-03-20 17:25:02 +00:00
|
|
|
{
|
2006-11-15 18:01:44 +00:00
|
|
|
setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
|
|
|
|
|
2006-10-23 08:46:09 +00:00
|
|
|
pain.fillRectangle(0, 0, width(), height(),
|
|
|
|
LColor::bottomarea);
|
|
|
|
|
|
|
|
//if (!lyxrc.show_banner)
|
|
|
|
// return;
|
2006-11-25 21:24:04 +00:00
|
|
|
lyxerr[Debug::GUI] << "show banner: " << lyxrc.show_banner << endl;
|
2006-10-23 08:46:09 +00:00
|
|
|
/// The text to be written on top of the pixmap
|
2006-11-19 13:35:16 +00:00
|
|
|
QString const text = lyx_version ? QString(lyx_version) : qt_("unknown version");
|
2006-11-26 21:30:39 +00:00
|
|
|
FileName const file = support::libFileSearch("images", "banner", "ppm");
|
2006-10-23 08:46:09 +00:00
|
|
|
if (file.empty())
|
|
|
|
return;
|
|
|
|
|
2006-11-26 21:30:39 +00:00
|
|
|
QPixmap pm(toqstr(file.absFilename()));
|
2006-10-23 08:46:09 +00:00
|
|
|
if (!pm) {
|
|
|
|
lyxerr << "could not load splash screen: '" << file << "'" << endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QFont font;
|
|
|
|
// The font used to display the version info
|
|
|
|
font.setStyleHint(QFont::SansSerif);
|
|
|
|
font.setWeight(QFont::Bold);
|
2006-12-21 02:49:27 +00:00
|
|
|
font.setPointSize(convert<int>(lyxrc.font_sizes[LyXFont::SIZE_LARGE]));
|
2006-10-23 08:46:09 +00:00
|
|
|
|
|
|
|
int const w = pm.width();
|
|
|
|
int const h = pm.height();
|
|
|
|
|
|
|
|
int x = (width() - w) / 2;
|
|
|
|
int y = (height() - h) / 2;
|
|
|
|
|
|
|
|
pain.drawPixmap(x, y, pm);
|
|
|
|
|
2006-12-21 02:49:27 +00:00
|
|
|
x += 300;
|
2006-10-23 08:46:09 +00:00
|
|
|
y += 265;
|
|
|
|
|
|
|
|
pain.setPen(QColor(255, 255, 0));
|
|
|
|
pain.setFont(font);
|
2006-11-19 13:35:16 +00:00
|
|
|
pain.drawText(x, y, text);
|
2006-10-23 08:46:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::paintEvent(QPaintEvent * ev)
|
|
|
|
{
|
|
|
|
QRect const rc = ev->rect();
|
2007-01-03 07:28:45 +00:00
|
|
|
/*
|
2006-11-02 22:53:10 +00:00
|
|
|
lyxerr[Debug::PAINTING] << "paintEvent begin: x: " << rc.x()
|
|
|
|
<< " y: " << rc.y()
|
|
|
|
<< " w: " << rc.width()
|
|
|
|
<< " h: " << rc.height() << endl;
|
2007-01-03 07:28:45 +00:00
|
|
|
*/
|
2006-11-02 22:53:10 +00:00
|
|
|
|
2007-01-04 12:36:17 +00:00
|
|
|
if (need_resize_) {
|
2007-01-06 09:36:40 +00:00
|
|
|
verticalScrollBar()->setPageStep(viewport()->height());
|
2007-01-04 12:36:17 +00:00
|
|
|
screen_ = QPixmap(viewport()->width(), viewport()->height());
|
|
|
|
resizeBufferView();
|
|
|
|
updateScreen();
|
|
|
|
need_resize_ = false;
|
|
|
|
}
|
|
|
|
|
2006-11-02 22:53:10 +00:00
|
|
|
QPainter pain(viewport());
|
|
|
|
pain.drawPixmap(rc, screen_, rc);
|
2006-11-12 07:50:18 +00:00
|
|
|
cursor_->draw(pain);
|
2006-11-02 22:53:10 +00:00
|
|
|
}
|
2006-10-23 08:46:09 +00:00
|
|
|
|
|
|
|
|
2006-11-02 22:53:10 +00:00
|
|
|
void GuiWorkArea::expose(int x, int y, int w, int h)
|
2007-01-04 12:36:17 +00:00
|
|
|
{
|
|
|
|
updateScreen();
|
|
|
|
update(x, y, w, h);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::updateScreen()
|
2006-11-02 22:53:10 +00:00
|
|
|
{
|
|
|
|
QLPainter pain(&screen_);
|
|
|
|
|
2006-11-11 17:41:55 +00:00
|
|
|
if (greyed_out_) {
|
2006-11-25 21:24:04 +00:00
|
|
|
lyxerr[Debug::GUI] << "splash screen requested" << endl;
|
2006-11-12 07:50:18 +00:00
|
|
|
verticalScrollBar()->hide();
|
2007-01-04 12:36:17 +00:00
|
|
|
doGreyOut(pain);
|
2006-11-11 17:41:55 +00:00
|
|
|
return;
|
2006-10-23 08:46:09 +00:00
|
|
|
}
|
|
|
|
|
2006-11-12 07:50:18 +00:00
|
|
|
verticalScrollBar()->show();
|
2006-11-11 17:41:55 +00:00
|
|
|
paintText(*buffer_view_, pain);
|
2006-06-02 12:01:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-26 16:55:35 +00:00
|
|
|
void GuiWorkArea::showCursor(int x, int y, int h, CursorShape shape)
|
2006-06-02 12:01:28 +00:00
|
|
|
{
|
2007-01-16 15:16:09 +00:00
|
|
|
if (shedule_redraw_) {
|
|
|
|
if (buffer_view_ && buffer_view_->buffer()) {
|
|
|
|
buffer_view_->update(Update::Force);
|
|
|
|
updateScreen();
|
|
|
|
viewport()->update(QRect(0, 0, viewport()->width(), viewport()->height()));
|
|
|
|
}
|
|
|
|
shedule_redraw_ = false;
|
|
|
|
// Show the cursor immediately after the update.
|
|
|
|
hideCursor();
|
|
|
|
toggleCursor();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-11-12 07:50:18 +00:00
|
|
|
cursor_->update(x, y, h, shape);
|
2006-10-23 11:19:17 +00:00
|
|
|
cursor_->show();
|
2006-11-12 08:29:05 +00:00
|
|
|
viewport()->update(cursor_->rect());
|
2006-06-02 12:01:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
void GuiWorkArea::removeCursor()
|
2006-06-02 12:01:28 +00:00
|
|
|
{
|
2006-10-23 11:19:17 +00:00
|
|
|
cursor_->hide();
|
2006-11-12 08:29:05 +00:00
|
|
|
//if (!qApp->focusWidget())
|
|
|
|
viewport()->update(cursor_->rect());
|
2006-06-02 12:01:28 +00:00
|
|
|
}
|
2006-03-12 17:29:34 +00:00
|
|
|
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
void GuiWorkArea::inputMethodEvent(QInputMethodEvent * e)
|
2006-03-12 17:29:34 +00:00
|
|
|
{
|
2006-06-26 16:55:35 +00:00
|
|
|
QString const & text = e->commitString();
|
2006-03-12 17:29:34 +00:00
|
|
|
if (!text.isEmpty()) {
|
2006-06-26 16:55:35 +00:00
|
|
|
|
|
|
|
lyxerr[Debug::KEY] << BOOST_CURRENT_FUNCTION
|
2006-08-13 15:55:03 +00:00
|
|
|
<< " preeditString =" << fromqstr(e->preeditString())
|
|
|
|
<< " commitString =" << fromqstr(e->commitString())
|
2006-06-26 16:55:35 +00:00
|
|
|
<< endl;
|
|
|
|
|
2006-03-12 17:29:34 +00:00
|
|
|
int key = 0;
|
|
|
|
// needed to make math superscript work on some systems
|
|
|
|
// ideally, such special coding should not be necessary
|
|
|
|
if (text == "^")
|
|
|
|
key = Qt::Key_AsciiCircum;
|
2006-08-18 09:25:45 +00:00
|
|
|
// FIXME: Needs for investigation, this key is not really used,
|
|
|
|
// the ctor below just check if key is different from 0.
|
2006-10-23 08:46:09 +00:00
|
|
|
QKeyEvent ev(QEvent::KeyPress, key, Qt::NoModifier, text);
|
2006-03-12 17:29:34 +00:00
|
|
|
keyPressEvent(&ev);
|
|
|
|
}
|
|
|
|
e->accept();
|
|
|
|
}
|
2006-06-26 16:55:35 +00:00
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
#include "GuiWorkArea_moc.cpp"
|