2006-03-05 17:24:44 +00:00
|
|
|
/**
|
2007-04-26 03:53:02 +00:00
|
|
|
* \file GuiWorkArea.cpp
|
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
|
|
|
|
2008-05-23 08:43:07 +00:00
|
|
|
#include "ColorCache.h"
|
|
|
|
#include "FontLoader.h"
|
|
|
|
#include "Menus.h"
|
|
|
|
|
2007-10-06 15:48:58 +00:00
|
|
|
#include "Buffer.h"
|
2008-11-22 14:45:47 +00:00
|
|
|
#include "BufferList.h"
|
2007-11-12 22:15:51 +00:00
|
|
|
#include "BufferParams.h"
|
2006-04-13 20:39:42 +00:00
|
|
|
#include "BufferView.h"
|
2007-11-12 22:15:51 +00:00
|
|
|
#include "CoordCache.h"
|
2007-10-11 09:59:01 +00:00
|
|
|
#include "Cursor.h"
|
2007-11-12 22:15:51 +00:00
|
|
|
#include "Font.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "FuncRequest.h"
|
2007-11-12 22:15:51 +00:00
|
|
|
#include "GuiApplication.h"
|
2008-04-21 19:12:15 +00:00
|
|
|
#include "GuiCompleter.h"
|
2007-11-12 22:15:51 +00:00
|
|
|
#include "GuiKeySymbol.h"
|
|
|
|
#include "GuiPainter.h"
|
2007-11-13 09:52:28 +00:00
|
|
|
#include "GuiView.h"
|
2007-11-12 22:15:51 +00:00
|
|
|
#include "KeySymbol.h"
|
|
|
|
#include "Language.h"
|
2007-10-06 15:48:58 +00:00
|
|
|
#include "LyXFunc.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "LyXRC.h"
|
2008-08-24 20:36:23 +00:00
|
|
|
#include "LyXVC.h"
|
2007-11-12 22:15:51 +00:00
|
|
|
#include "MetricsInfo.h"
|
|
|
|
#include "qt_helpers.h"
|
2008-04-06 11:52:11 +00:00
|
|
|
#include "Text.h"
|
2007-08-14 13:14:47 +00:00
|
|
|
#include "version.h"
|
2006-08-17 17:15:17 +00:00
|
|
|
|
2006-10-23 08:46:09 +00:00
|
|
|
#include "graphics/GraphicsImage.h"
|
|
|
|
#include "graphics/GraphicsLoader.h"
|
|
|
|
|
2009-04-04 09:14:38 +00:00
|
|
|
#include "support/convert.h"
|
2009-03-09 19:12:02 +00:00
|
|
|
#include "support/debug.h"
|
2007-11-29 19:19:39 +00:00
|
|
|
#include "support/gettext.h"
|
2007-11-12 22:15:51 +00:00
|
|
|
#include "support/FileName.h"
|
|
|
|
|
|
|
|
#include "frontends/Application.h"
|
|
|
|
#include "frontends/FontMetrics.h"
|
|
|
|
#include "frontends/WorkAreaManager.h"
|
|
|
|
|
2007-12-25 20:12:07 +00:00
|
|
|
#include <QContextMenuEvent>
|
2007-08-14 13:14:47 +00:00
|
|
|
#include <QInputContext>
|
2007-12-25 20:12:07 +00:00
|
|
|
#include <QHelpEvent>
|
2008-03-17 10:23:02 +00:00
|
|
|
#ifdef Q_WS_MACX
|
2008-03-04 18:53:44 +00:00
|
|
|
#include <QMacStyle>
|
|
|
|
#endif
|
2006-03-05 17:24:44 +00:00
|
|
|
#include <QMainWindow>
|
2008-03-07 00:21:23 +00:00
|
|
|
#include <QMenu>
|
2006-03-05 17:24:44 +00:00
|
|
|
#include <QPainter>
|
2007-10-11 19:00:18 +00:00
|
|
|
#include <QPalette>
|
2008-03-08 16:15:10 +00:00
|
|
|
#include <QPixmapCache>
|
2006-03-05 17:24:44 +00:00
|
|
|
#include <QScrollBar>
|
2007-03-27 17:26:11 +00:00
|
|
|
#include <QTimer>
|
2007-12-25 20:12:07 +00:00
|
|
|
#include <QToolButton>
|
2007-12-26 06:44:22 +00:00
|
|
|
#include <QToolTip>
|
2008-05-16 06:35:31 +00:00
|
|
|
#include <QMenuBar>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
#include <boost/bind.hpp>
|
|
|
|
|
2008-06-30 17:18:41 +00:00
|
|
|
#include <cmath>
|
|
|
|
|
2007-06-02 07:58:11 +00:00
|
|
|
#ifdef Q_WS_X11
|
|
|
|
#include <QX11Info>
|
|
|
|
extern "C" int XEventsQueued(Display *display, int mode);
|
|
|
|
#endif
|
|
|
|
|
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
|
2008-02-28 12:41:57 +00:00
|
|
|
int const TabIndicatorWidth = 3;
|
2006-03-12 17:29:34 +00:00
|
|
|
|
2007-08-19 09:44:34 +00:00
|
|
|
#undef KeyPress
|
2008-10-13 11:25:37 +00:00
|
|
|
#undef NoModifier
|
2006-10-23 11:19:17 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2007-12-12 18:57:56 +00:00
|
|
|
using namespace lyx::support;
|
2006-03-05 17:24:44 +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
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
/// 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
|
|
|
{
|
2008-02-28 12:41:43 +00:00
|
|
|
if (!show_ || !rect_.isValid())
|
|
|
|
return;
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-02-28 12:41:57 +00:00
|
|
|
int y = rect_.top();
|
2008-02-28 12:41:43 +00:00
|
|
|
int l = x_ - rect_.left();
|
|
|
|
int r = rect_.right() - x_;
|
2008-02-28 12:41:57 +00:00
|
|
|
int bot = rect_.bottom();
|
2008-02-28 12:41:43 +00:00
|
|
|
|
2008-02-28 12:41:57 +00:00
|
|
|
// draw vertica linel
|
|
|
|
painter.fillRect(x_, y, CursorWidth, rect_.height(), color_);
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-02-28 12:41:57 +00:00
|
|
|
// draw RTL/LTR indication
|
2008-02-28 12:41:43 +00:00
|
|
|
painter.setPen(color_);
|
|
|
|
if (l_shape_) {
|
|
|
|
if (rtl_)
|
2008-02-28 12:41:57 +00:00
|
|
|
painter.drawLine(x_, bot, x_ - l, bot);
|
2008-02-28 12:41:43 +00:00
|
|
|
else
|
2008-02-28 12:41:57 +00:00
|
|
|
painter.drawLine(x_, bot, x_ + CursorWidth + r, bot);
|
2008-02-28 12:41:43 +00:00
|
|
|
}
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-02-28 12:41:57 +00:00
|
|
|
// draw completion triangle
|
2008-02-28 12:41:43 +00:00
|
|
|
if (completable_) {
|
2008-02-28 12:41:57 +00:00
|
|
|
int m = y + rect_.height() / 2;
|
2008-02-28 12:41:43 +00:00
|
|
|
int d = TabIndicatorWidth - 1;
|
|
|
|
if (rtl_) {
|
2008-02-28 12:41:57 +00:00
|
|
|
painter.drawLine(x_ - 1, m - d, x_ - 1 - d, m);
|
|
|
|
painter.drawLine(x_ - 1, m + d, x_ - 1 - d, m);
|
2008-02-28 12:41:43 +00:00
|
|
|
} else {
|
2008-02-28 12:41:57 +00:00
|
|
|
painter.drawLine(x_ + CursorWidth, m - d, x_ + CursorWidth + d, m);
|
|
|
|
painter.drawLine(x_ + CursorWidth, m + d, x_ + CursorWidth + d, m);
|
2007-06-04 06:21:33 +00:00
|
|
|
}
|
|
|
|
}
|
2006-10-23 11:19:17 +00:00
|
|
|
}
|
|
|
|
|
2008-02-28 12:41:43 +00:00
|
|
|
void update(int x, int y, int h, bool l_shape,
|
|
|
|
bool rtl, bool completable)
|
2006-10-23 11:19:17 +00:00
|
|
|
{
|
2007-10-25 12:41:02 +00:00
|
|
|
color_ = guiApp->colorCache().get(Color_cursor);
|
2008-02-28 12:41:43 +00:00
|
|
|
l_shape_ = l_shape;
|
|
|
|
rtl_ = rtl;
|
|
|
|
completable_ = completable;
|
|
|
|
x_ = x;
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-02-28 12:41:57 +00:00
|
|
|
// extension to left and right
|
2008-02-28 12:41:43 +00:00
|
|
|
int l = 0;
|
|
|
|
int r = 0;
|
|
|
|
|
2008-02-28 12:41:57 +00:00
|
|
|
// RTL/LTR indication
|
2008-02-28 12:41:43 +00:00
|
|
|
if (l_shape_) {
|
|
|
|
if (rtl)
|
|
|
|
l += h / 3;
|
|
|
|
else
|
|
|
|
r += h / 3;
|
|
|
|
}
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-02-28 12:41:57 +00:00
|
|
|
// completion triangle
|
2008-02-28 12:41:43 +00:00
|
|
|
if (completable_) {
|
|
|
|
if (rtl)
|
2008-02-28 12:41:57 +00:00
|
|
|
l = max(l, TabIndicatorWidth);
|
2008-02-28 12:41:43 +00:00
|
|
|
else
|
2008-02-28 12:41:57 +00:00
|
|
|
r = max(r, TabIndicatorWidth);
|
2007-06-04 06:21:33 +00:00
|
|
|
}
|
2008-02-28 12:41:43 +00:00
|
|
|
|
2008-02-28 12:41:57 +00:00
|
|
|
// compute overall rectangle
|
2008-02-28 12:41:43 +00:00
|
|
|
rect_ = QRect(x - l, y, CursorWidth + r + l, h);
|
2006-11-12 07:50:18 +00:00
|
|
|
}
|
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:
|
2008-02-28 12:41:57 +00:00
|
|
|
/// cursor is in RTL or LTR text
|
2008-02-28 12:41:43 +00:00
|
|
|
bool rtl_;
|
2008-02-28 12:41:57 +00:00
|
|
|
/// indication for RTL or LTR
|
2008-02-28 12:41:43 +00:00
|
|
|
bool l_shape_;
|
2008-02-28 12:41:57 +00:00
|
|
|
/// triangle to show that a completion is available
|
2008-02-28 12:41:43 +00:00
|
|
|
bool completable_;
|
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_;
|
2008-02-28 12:41:57 +00:00
|
|
|
/// rectangle, possibly with l_shape and completion triangle
|
2006-11-12 07:50:18 +00:00
|
|
|
QRect rect_;
|
2008-02-28 12:41:57 +00:00
|
|
|
/// x position (were the vertical line is drawn)
|
2008-02-28 12:41:43 +00:00
|
|
|
int x_;
|
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),
|
2009-04-24 21:04:51 +00:00
|
|
|
x_old(-1), y_old(-1), min_scrollbar_old(-1.0), max_scrollbar_old(-1.0)
|
2006-03-05 17:24:44 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
2008-11-15 22:34:52 +00:00
|
|
|
GuiWorkArea::GuiWorkArea(QWidget *)
|
|
|
|
: buffer_view_(0), lyx_view_(0),
|
|
|
|
cursor_visible_(false),
|
|
|
|
need_resize_(false), schedule_redraw_(false),
|
|
|
|
preedit_lines_(1), completer_(new GuiCompleter(this))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-11-12 22:15:51 +00:00
|
|
|
|
2008-11-15 22:34:52 +00:00
|
|
|
GuiWorkArea::GuiWorkArea(Buffer & buffer, GuiView & gv)
|
|
|
|
: buffer_view_(0), lyx_view_(0),
|
2008-02-21 19:42:34 +00:00
|
|
|
cursor_visible_(false),
|
|
|
|
need_resize_(false), schedule_redraw_(false),
|
2008-04-21 19:12:15 +00:00
|
|
|
preedit_lines_(1), completer_(new GuiCompleter(this))
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2008-11-15 22:34:52 +00:00
|
|
|
setGuiView(gv);
|
|
|
|
setBuffer(buffer);
|
2008-11-22 14:45:47 +00:00
|
|
|
init();
|
2008-11-15 22:34:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::init()
|
|
|
|
{
|
2007-11-12 22:15:51 +00:00
|
|
|
// Setup the signals
|
2007-11-21 21:15:23 +00:00
|
|
|
connect(&cursor_timeout_, SIGNAL(timeout()),
|
|
|
|
this, SLOT(toggleCursor()));
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-02-02 03:05:54 +00:00
|
|
|
int const time = QApplication::cursorFlashTime() / 2;
|
|
|
|
if (time > 0) {
|
|
|
|
cursor_timeout_.setInterval(time);
|
|
|
|
cursor_timeout_.start();
|
2008-04-06 11:52:11 +00:00
|
|
|
} else {
|
2008-02-02 03:05:54 +00:00
|
|
|
// let's initialize this just to be safe
|
|
|
|
cursor_timeout_.setInterval(500);
|
2008-04-06 11:52:11 +00:00
|
|
|
}
|
2008-02-02 03:05:54 +00:00
|
|
|
|
2007-02-08 16:41:06 +00:00
|
|
|
screen_ = QPixmap(viewport()->width(), viewport()->height());
|
2009-05-01 13:11:22 +00:00
|
|
|
// With Qt4.5 a mouse event will happen before the first paint event
|
|
|
|
// so make sure that the buffer view has an up to date metrics.
|
|
|
|
buffer_view_->resize(viewport()->width(), viewport()->height());
|
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-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);
|
2008-10-13 11:25:37 +00:00
|
|
|
setFrameStyle(QFrame::NoFrame);
|
2007-11-11 22:30:21 +00:00
|
|
|
updateWindowTitle();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
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);
|
|
|
|
|
2008-11-15 22:34:52 +00:00
|
|
|
setFocusPolicy(Qt::StrongFocus);
|
2006-03-12 17:29:34 +00:00
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
viewport()->setCursor(Qt::IBeamCursor);
|
|
|
|
|
|
|
|
synthetic_mouse_event_.timeout.timeout.connect(
|
2006-06-20 08:39:16 +00:00
|
|
|
boost::bind(&GuiWorkArea::generateSyntheticMouseEvent,
|
2007-11-12 22:15:51 +00:00
|
|
|
this));
|
2006-04-05 23:56:29 +00:00
|
|
|
|
2006-03-12 17:29:34 +00:00
|
|
|
// Initialize the vertical Scroll Bar
|
2008-01-29 12:54:23 +00:00
|
|
|
QObject::connect(verticalScrollBar(), SIGNAL(valueChanged(int)),
|
|
|
|
this, SLOT(scrollTo(int)));
|
2006-03-12 17:29:34 +00:00
|
|
|
|
2007-11-29 21:10:35 +00:00
|
|
|
LYXERR(Debug::GUI, "viewport width: " << viewport()->width()
|
|
|
|
<< " viewport height: " << viewport()->height());
|
2006-03-12 17:29:34 +00:00
|
|
|
|
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);
|
2008-11-15 22:34:52 +00:00
|
|
|
|
2008-11-15 22:58:19 +00:00
|
|
|
dialog_mode_ = false;
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2006-08-17 17:15:17 +00:00
|
|
|
|
2007-11-12 22:15:51 +00:00
|
|
|
GuiWorkArea::~GuiWorkArea()
|
|
|
|
{
|
|
|
|
buffer_view_->buffer().workAreaManager().remove(this);
|
|
|
|
delete buffer_view_;
|
2007-12-02 18:39:05 +00:00
|
|
|
delete cursor_;
|
2008-07-10 22:14:29 +00:00
|
|
|
// Completer has a QObject parent and is thus automatically destroyed.
|
|
|
|
// delete completer_;
|
2007-11-12 22:15:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-15 22:34:52 +00:00
|
|
|
void GuiWorkArea::setGuiView(GuiView & gv)
|
|
|
|
{
|
|
|
|
lyx_view_ = &gv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::setBuffer(Buffer & buffer)
|
|
|
|
{
|
|
|
|
delete buffer_view_;
|
|
|
|
buffer_view_ = new BufferView(buffer),
|
|
|
|
buffer.workAreaManager().add(this);
|
|
|
|
|
|
|
|
// HACK: Prevents an additional redraw when the scrollbar pops up
|
|
|
|
// which regularily happens on documents with more than one page.
|
|
|
|
// The policy should be set to "Qt::ScrollBarAsNeeded" soon.
|
|
|
|
// Since we have no geometry information yet, we assume that
|
|
|
|
// a document needs a scrollbar if there is more then four
|
|
|
|
// paragraph in the outermost text.
|
|
|
|
if (buffer.text().paragraphs().size() > 4)
|
|
|
|
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
|
|
|
|
QTimer::singleShot(50, this, SLOT(fixVerticalScrollBar()));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-06 11:52:11 +00:00
|
|
|
void GuiWorkArea::fixVerticalScrollBar()
|
|
|
|
{
|
2008-04-06 14:43:28 +00:00
|
|
|
if (!isFullScreen())
|
2008-06-20 13:29:25 +00:00
|
|
|
setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
|
2008-04-06 11:52:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-12 22:15:51 +00:00
|
|
|
void GuiWorkArea::close()
|
|
|
|
{
|
|
|
|
lyx_view_->removeWorkArea(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-09 18:03:53 +00:00
|
|
|
void GuiWorkArea::setFullScreen(bool full_screen)
|
|
|
|
{
|
|
|
|
buffer_view_->setFullScreen(full_screen);
|
2008-02-20 14:27:52 +00:00
|
|
|
if (full_screen) {
|
|
|
|
setFrameStyle(QFrame::NoFrame);
|
|
|
|
if (lyxrc.full_screen_scrollbar)
|
|
|
|
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
|
|
} else {
|
2008-03-04 18:53:44 +00:00
|
|
|
#ifdef Q_WS_MACX
|
2008-10-13 11:25:37 +00:00
|
|
|
setFrameStyle(QFrame::NoFrame);
|
2008-03-04 18:53:44 +00:00
|
|
|
#else
|
2008-02-20 14:27:52 +00:00
|
|
|
setFrameStyle(QFrame::Box);
|
2008-03-04 18:53:44 +00:00
|
|
|
#endif
|
2008-02-20 14:27:52 +00:00
|
|
|
setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
|
|
|
|
}
|
2008-02-09 18:03:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-12 22:15:51 +00:00
|
|
|
BufferView & GuiWorkArea::bufferView()
|
|
|
|
{
|
|
|
|
return *buffer_view_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BufferView const & GuiWorkArea::bufferView() const
|
|
|
|
{
|
|
|
|
return *buffer_view_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::stopBlinkingCursor()
|
|
|
|
{
|
|
|
|
cursor_timeout_.stop();
|
|
|
|
hideCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::startBlinkingCursor()
|
|
|
|
{
|
|
|
|
showCursor();
|
2008-02-02 03:05:54 +00:00
|
|
|
//we're not supposed to cache this value.
|
|
|
|
int const time = QApplication::cursorFlashTime() / 2;
|
|
|
|
if (time <= 0)
|
|
|
|
return;
|
|
|
|
cursor_timeout_.setInterval(time);
|
2007-11-21 21:15:23 +00:00
|
|
|
cursor_timeout_.start();
|
2007-11-12 22:15:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::redraw()
|
|
|
|
{
|
|
|
|
if (!isVisible())
|
|
|
|
// No need to redraw in this case.
|
|
|
|
return;
|
|
|
|
|
|
|
|
// No need to do anything if this is the current view. The BufferView
|
|
|
|
// metrics are already up to date.
|
2008-02-21 11:56:38 +00:00
|
|
|
if (lyx_view_ != guiApp->currentView()
|
|
|
|
|| lyx_view_->currentWorkArea() != this) {
|
2007-11-12 22:15:51 +00:00
|
|
|
// FIXME: it would be nice to optimize for the off-screen case.
|
|
|
|
buffer_view_->updateMetrics();
|
|
|
|
buffer_view_->cursor().fixIfBroken();
|
|
|
|
}
|
|
|
|
|
|
|
|
// update cursor position, because otherwise it has to wait until
|
|
|
|
// the blinking interval is over
|
|
|
|
if (cursor_visible_) {
|
|
|
|
hideCursor();
|
|
|
|
showCursor();
|
|
|
|
}
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2007-11-15 20:04:51 +00:00
|
|
|
LYXERR(Debug::WORKAREA, "WorkArea::redraw screen");
|
2007-11-14 17:39:16 +00:00
|
|
|
updateScreen();
|
2007-11-17 11:27:03 +00:00
|
|
|
update(0, 0, viewport()->width(), viewport()->height());
|
2007-11-12 22:15:51 +00:00
|
|
|
|
2007-12-21 09:43:23 +00:00
|
|
|
/// \warning: scrollbar updating *must* be done after the BufferView is drawn
|
|
|
|
/// because \c BufferView::updateScrollbar() is called in \c BufferView::draw().
|
2007-12-21 08:28:18 +00:00
|
|
|
updateScrollbar();
|
2007-11-20 22:03:56 +00:00
|
|
|
lyx_view_->updateStatusBar();
|
|
|
|
|
2007-11-12 22:15:51 +00:00
|
|
|
if (lyxerr.debugging(Debug::WORKAREA))
|
|
|
|
buffer_view_->coordCache().dump();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::processKeySym(KeySymbol const & key, KeyModifier mod)
|
|
|
|
{
|
2008-05-16 08:11:37 +00:00
|
|
|
if (lyx_view_->isFullScreen() && lyx_view_->menuBar()->isVisible()) {
|
|
|
|
// FIXME HACK: we should not have to do this here. See related comment
|
|
|
|
// in GuiView::event() (QEvent::ShortcutOverride)
|
|
|
|
lyx_view_->menuBar()->hide();
|
|
|
|
}
|
|
|
|
|
2007-11-12 22:15:51 +00:00
|
|
|
// In order to avoid bad surprise in the middle of an operation,
|
2008-02-05 00:37:30 +00:00
|
|
|
// we better stop the blinking cursor...
|
2008-02-05 13:10:42 +00:00
|
|
|
// the cursor gets restarted in GuiView::restartCursor()
|
2007-11-12 22:15:51 +00:00
|
|
|
stopBlinkingCursor();
|
|
|
|
|
|
|
|
theLyXFunc().setLyXView(lyx_view_);
|
|
|
|
theLyXFunc().processKeySym(key, mod);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::dispatch(FuncRequest const & cmd0, KeyModifier mod)
|
|
|
|
{
|
|
|
|
// Handle drag&drop
|
|
|
|
if (cmd0.action == LFUN_FILE_OPEN) {
|
|
|
|
lyx_view_->dispatch(cmd0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
theLyXFunc().setLyXView(lyx_view_);
|
|
|
|
|
|
|
|
FuncRequest cmd;
|
|
|
|
|
|
|
|
if (cmd0.action == LFUN_MOUSE_PRESS) {
|
|
|
|
if (mod == ShiftModifier)
|
|
|
|
cmd = FuncRequest(cmd0, "region-select");
|
|
|
|
else if (mod == ControlModifier)
|
|
|
|
cmd = FuncRequest(cmd0, "paragraph-select");
|
|
|
|
else
|
|
|
|
cmd = cmd0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
cmd = cmd0;
|
|
|
|
|
2008-10-13 11:25:37 +00:00
|
|
|
bool const notJustMovingTheMouse =
|
2008-02-05 00:37:30 +00:00
|
|
|
cmd.action != LFUN_MOUSE_MOTION || cmd.button() != mouse_button::none;
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2007-11-12 22:15:51 +00:00
|
|
|
// In order to avoid bad surprise in the middle of an operation, we better stop
|
2008-02-05 13:10:42 +00:00
|
|
|
// the blinking cursor.
|
|
|
|
if (notJustMovingTheMouse)
|
2007-11-12 22:15:51 +00:00
|
|
|
stopBlinkingCursor();
|
|
|
|
|
|
|
|
buffer_view_->mouseEventDispatch(cmd);
|
|
|
|
|
|
|
|
// Skip these when selecting
|
|
|
|
if (cmd.action != LFUN_MOUSE_MOTION) {
|
2008-04-21 19:12:15 +00:00
|
|
|
completer_->updateVisibility(false, false);
|
2008-05-02 20:58:25 +00:00
|
|
|
lyx_view_->updateDialogs();
|
2008-06-12 16:00:36 +00:00
|
|
|
lyx_view_->updateStatusBar();
|
2007-11-12 22:15:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GUI tweaks except with mouse motion with no button pressed.
|
2008-02-05 00:37:30 +00:00
|
|
|
if (notJustMovingTheMouse) {
|
2007-11-12 22:15:51 +00:00
|
|
|
// Slight hack: this is only called currently when we
|
|
|
|
// clicked somewhere, so we force through the display
|
|
|
|
// of the new status here.
|
|
|
|
lyx_view_->clearMessage();
|
|
|
|
|
2008-02-05 00:37:30 +00:00
|
|
|
// Show the cursor immediately after any operation
|
2007-11-12 22:15:51 +00:00
|
|
|
startBlinkingCursor();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::resizeBufferView()
|
|
|
|
{
|
|
|
|
// WARNING: Please don't put any code that will trigger a repaint here!
|
|
|
|
// We are already inside a paint event.
|
|
|
|
lyx_view_->setBusy(true);
|
2009-04-03 21:39:06 +00:00
|
|
|
Point p;
|
|
|
|
int h = 0;
|
|
|
|
buffer_view_->cursorPosAndHeight(p, h);
|
|
|
|
bool const cursor_in_view = buffer_view_->cursorInView(p, h);
|
2007-11-14 14:34:55 +00:00
|
|
|
buffer_view_->resize(viewport()->width(), viewport()->height());
|
2009-04-03 21:39:06 +00:00
|
|
|
if (cursor_in_view)
|
|
|
|
buffer_view_->scrollToCursor();
|
2008-02-20 15:37:17 +00:00
|
|
|
updateScreen();
|
|
|
|
|
|
|
|
// Update scrollbars which might have changed due different
|
2008-10-13 11:25:37 +00:00
|
|
|
// BufferView dimension. This is especially important when the
|
2008-02-20 15:37:17 +00:00
|
|
|
// BufferView goes from zero-size to the real-size for the first time,
|
|
|
|
// as the scrollbar paramters are then set for the first time.
|
|
|
|
updateScrollbar();
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2007-11-20 22:03:56 +00:00
|
|
|
lyx_view_->updateLayoutList();
|
2007-11-12 22:15:51 +00:00
|
|
|
lyx_view_->setBusy(false);
|
2007-11-19 10:04:14 +00:00
|
|
|
need_resize_ = false;
|
2007-11-12 22:15:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::showCursor()
|
|
|
|
{
|
|
|
|
if (cursor_visible_)
|
|
|
|
return;
|
|
|
|
|
2008-02-28 12:41:43 +00:00
|
|
|
// RTL or not RTL
|
|
|
|
bool l_shape = false;
|
2007-11-12 22:15:51 +00:00
|
|
|
Font const & realfont = buffer_view_->cursor().real_current_font;
|
|
|
|
BufferParams const & bp = buffer_view_->buffer().params();
|
|
|
|
bool const samelang = realfont.language() == bp.language;
|
|
|
|
bool const isrtl = realfont.isVisibleRightToLeft();
|
|
|
|
|
2008-02-28 12:41:43 +00:00
|
|
|
if (!samelang || isrtl != bp.language->rightToLeft())
|
|
|
|
l_shape = true;
|
2007-11-12 22:15:51 +00:00
|
|
|
|
|
|
|
// The ERT language hack needs fixing up
|
|
|
|
if (realfont.language() == latex_language)
|
2008-02-28 12:41:43 +00:00
|
|
|
l_shape = false;
|
2007-11-12 22:15:51 +00:00
|
|
|
|
2009-04-03 21:39:06 +00:00
|
|
|
Point p;
|
|
|
|
int h = 0;
|
|
|
|
buffer_view_->cursorPosAndHeight(p, h);
|
2008-02-21 19:42:34 +00:00
|
|
|
// show cursor on screen
|
2009-04-03 21:39:06 +00:00
|
|
|
Cursor & cur = buffer_view_->cursor();
|
2008-03-16 17:07:10 +00:00
|
|
|
bool completable = cur.inset().showCompletionCursor()
|
2008-04-21 19:12:15 +00:00
|
|
|
&& completer_->completionAvailable()
|
|
|
|
&& !completer_->popupVisible()
|
|
|
|
&& !completer_->inlineVisible();
|
2009-04-03 21:39:06 +00:00
|
|
|
if (buffer_view_->cursorInView(p, h)) {
|
2008-02-21 19:42:34 +00:00
|
|
|
cursor_visible_ = true;
|
2009-04-03 21:39:06 +00:00
|
|
|
showCursor(p.x_, p.y_, h, l_shape, isrtl, completable);
|
2008-02-21 19:42:34 +00:00
|
|
|
}
|
2007-11-12 22:15:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::hideCursor()
|
|
|
|
{
|
|
|
|
if (!cursor_visible_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
cursor_visible_ = false;
|
|
|
|
removeCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::toggleCursor()
|
|
|
|
{
|
|
|
|
if (cursor_visible_)
|
|
|
|
hideCursor();
|
|
|
|
else
|
|
|
|
showCursor();
|
2008-02-02 03:05:54 +00:00
|
|
|
}
|
|
|
|
|
2007-11-12 22:15:51 +00:00
|
|
|
|
2007-11-14 17:39:16 +00:00
|
|
|
void GuiWorkArea::updateScrollbar()
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2008-01-17 17:47:01 +00:00
|
|
|
ScrollbarParameters const & scroll_ = buffer_view_->scrollbarParameters();
|
2008-06-20 13:29:25 +00:00
|
|
|
// WARNING: don't touch at the scrollbar value like this:
|
|
|
|
// verticalScrollBar()->setValue(scroll_.position);
|
|
|
|
// because this would cause a recursive signal/slot calling with
|
|
|
|
// GuiWorkArea::scrollTo
|
2008-01-17 17:06:55 +00:00
|
|
|
verticalScrollBar()->setRange(scroll_.min, scroll_.max);
|
|
|
|
verticalScrollBar()->setPageStep(scroll_.page_step);
|
|
|
|
verticalScrollBar()->setSingleStep(scroll_.single_step);
|
2008-01-17 17:47:01 +00:00
|
|
|
verticalScrollBar()->setSliderPosition(scroll_.position);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2006-06-26 16:55:35 +00:00
|
|
|
|
2008-01-29 12:54:23 +00:00
|
|
|
void GuiWorkArea::scrollTo(int value)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2007-09-15 13:59:26 +00:00
|
|
|
stopBlinkingCursor();
|
2008-01-29 12:54:23 +00:00
|
|
|
buffer_view_->scrollDocView(value);
|
2007-09-15 13:59:26 +00:00
|
|
|
|
|
|
|
if (lyxrc.cursor_follows_scrollbar) {
|
|
|
|
buffer_view_->setCursorFromScrollbar();
|
2007-11-20 22:03:56 +00:00
|
|
|
lyx_view_->updateLayoutList();
|
2007-09-15 13:59:26 +00:00
|
|
|
}
|
|
|
|
// Show the cursor immediately after any operation.
|
|
|
|
startBlinkingCursor();
|
2007-06-02 07:58:11 +00:00
|
|
|
QApplication::syncX();
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-25 18:53:38 +00:00
|
|
|
bool GuiWorkArea::event(QEvent * e)
|
|
|
|
{
|
2008-01-10 08:19:54 +00:00
|
|
|
switch (e->type()) {
|
|
|
|
case QEvent::ToolTip: {
|
|
|
|
QHelpEvent * helpEvent = static_cast<QHelpEvent *>(e);
|
|
|
|
if (lyxrc.use_tooltip) {
|
|
|
|
QPoint pos = helpEvent->pos();
|
|
|
|
if (pos.x() < viewport()->width()) {
|
|
|
|
QString s = toqstr(buffer_view_->toolTip(pos.x(), pos.y()));
|
|
|
|
QToolTip::showText(helpEvent->globalPos(), s);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
QToolTip::hideText();
|
|
|
|
}
|
|
|
|
// Don't forget to accept the event!
|
|
|
|
e->accept();
|
|
|
|
return true;
|
|
|
|
}
|
2008-01-10 09:04:30 +00:00
|
|
|
|
|
|
|
case QEvent::ShortcutOverride: {
|
|
|
|
// We catch this event in order to catch the Tab or Shift+Tab key press
|
|
|
|
// which are otherwise reserved to focus switching between controls
|
|
|
|
// within a dialog.
|
|
|
|
QKeyEvent * ke = static_cast<QKeyEvent*>(e);
|
2008-01-18 08:26:38 +00:00
|
|
|
if ((ke->key() != Qt::Key_Tab && ke->key() != Qt::Key_Backtab)
|
|
|
|
|| ke->modifiers() & Qt::ControlModifier)
|
2008-01-10 09:04:30 +00:00
|
|
|
return QAbstractScrollArea::event(e);
|
|
|
|
keyPressEvent(ke);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-01-10 08:19:54 +00:00
|
|
|
default:
|
|
|
|
return QAbstractScrollArea::event(e);
|
|
|
|
}
|
|
|
|
return false;
|
2007-12-25 18:53:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-25 20:12:07 +00:00
|
|
|
void GuiWorkArea::contextMenuEvent(QContextMenuEvent * e)
|
|
|
|
{
|
|
|
|
QPoint pos = e->pos();
|
2007-12-26 12:40:58 +00:00
|
|
|
docstring name = buffer_view_->contextMenu(pos.x(), pos.y());
|
|
|
|
if (name.empty()) {
|
|
|
|
QAbstractScrollArea::contextMenuEvent(e);
|
|
|
|
return;
|
|
|
|
}
|
2008-03-09 11:22:39 +00:00
|
|
|
QMenu * menu = guiApp->menus().menu(toqstr(name), *lyx_view_);
|
2007-12-26 12:40:58 +00:00
|
|
|
if (!menu) {
|
|
|
|
QAbstractScrollArea::contextMenuEvent(e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Position the menu to the right.
|
|
|
|
// FIXME: menu position should be different for RTL text.
|
2008-02-08 23:51:30 +00:00
|
|
|
menu->exec(e->globalPos());
|
2007-12-26 12:48:36 +00:00
|
|
|
e->accept();
|
2007-12-25 20:12:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-21 13:42:49 +00:00
|
|
|
void GuiWorkArea::focusInEvent(QFocusEvent * e)
|
2006-10-27 23:26:52 +00:00
|
|
|
{
|
2008-11-15 23:18:42 +00:00
|
|
|
/*
|
2008-11-15 22:34:52 +00:00
|
|
|
LYXERR(Debug::DEBUG, "GuiWorkArea::focusInEvent(): " << this << std::endl);
|
2008-11-16 11:51:42 +00:00
|
|
|
GuiWorkArea * old_gwa = theGuiApp()->currentView()->currentWorkArea();
|
2008-11-15 22:34:52 +00:00
|
|
|
if (old_gwa)
|
|
|
|
old_gwa->stopBlinkingCursor();
|
|
|
|
lyx_view_->setCurrentWorkArea(this);
|
2008-11-15 23:18:42 +00:00
|
|
|
*/
|
2008-11-15 22:34:52 +00:00
|
|
|
|
2008-11-15 23:18:42 +00:00
|
|
|
if (lyx_view_->currentWorkArea() != this)
|
|
|
|
lyx_view_->setCurrentWorkArea(this);
|
2008-03-03 11:04:17 +00:00
|
|
|
|
2006-12-21 14:50:46 +00:00
|
|
|
startBlinkingCursor();
|
2008-02-21 13:42:49 +00:00
|
|
|
QAbstractScrollArea::focusInEvent(e);
|
2006-10-27 23:26:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-21 13:42:49 +00:00
|
|
|
void GuiWorkArea::focusOutEvent(QFocusEvent * e)
|
2006-10-27 23:26:52 +00:00
|
|
|
{
|
2008-11-15 22:34:52 +00:00
|
|
|
LYXERR(Debug::DEBUG, "GuiWorkArea::focusOutEvent(): " << this << std::endl);
|
2006-10-27 23:26:52 +00:00
|
|
|
stopBlinkingCursor();
|
2008-02-21 13:42:49 +00:00
|
|
|
QAbstractScrollArea::focusOutEvent(e);
|
2006-10-27 23:26:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
2007-10-17 18:28:45 +00:00
|
|
|
FuncRequest cmd(LFUN_MOUSE_TRIPLE, e->x(), e->y(),
|
2007-03-27 17:26:11 +00:00
|
|
|
q_button_state(e->button()));
|
2006-07-13 16:37:55 +00:00
|
|
|
dispatch(cmd);
|
2008-02-21 13:42:49 +00:00
|
|
|
e->accept();
|
2006-03-05 17:24:44 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-04-01 09:14:08 +00:00
|
|
|
inputContext()->reset();
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
FuncRequest const cmd(LFUN_MOUSE_PRESS, e->x(), e->y(),
|
2007-01-27 10:41:03 +00:00
|
|
|
q_button_state(e->button()));
|
|
|
|
dispatch(cmd, q_key_state(e->modifiers()));
|
2008-02-21 13:42:49 +00:00
|
|
|
e->accept();
|
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);
|
2008-02-21 13:42:49 +00:00
|
|
|
e->accept();
|
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
|
|
|
{
|
2007-03-27 17:31:29 +00:00
|
|
|
// we kill the triple click if we move
|
2007-03-27 17:26:11 +00:00
|
|
|
doubleClickTimeout();
|
2006-03-05 17:24:44 +00:00
|
|
|
FuncRequest cmd(LFUN_MOUSE_MOTION, e->x(), e->y(),
|
2008-02-07 13:40:31 +00:00
|
|
|
q_motion_state(e->buttons()));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2008-02-21 13:42:49 +00:00
|
|
|
e->accept();
|
|
|
|
|
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;
|
2008-02-07 13:40:31 +00:00
|
|
|
|
|
|
|
synthetic_mouse_event_.restart_timeout = true;
|
|
|
|
synthetic_mouse_event_.timeout.start();
|
|
|
|
// Fall through to handle this event...
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
} 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?
|
2008-02-07 13:40:31 +00:00
|
|
|
if (e->x() == synthetic_mouse_event_.x_old
|
|
|
|
&& e->y() == synthetic_mouse_event_.y_old
|
2009-04-24 21:04:51 +00:00
|
|
|
&& synthetic_mouse_event_.min_scrollbar_old == verticalScrollBar()->minimum()
|
|
|
|
&& synthetic_mouse_event_.max_scrollbar_old == verticalScrollBar()->maximum()) {
|
2008-02-07 13:40:31 +00:00
|
|
|
// Nothing changed on-screen since the last QMouseEvent.
|
|
|
|
return;
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
2008-02-07 13:40:31 +00:00
|
|
|
|
|
|
|
// Yes something has changed. Store the params used to check this.
|
|
|
|
synthetic_mouse_event_.x_old = e->x();
|
|
|
|
synthetic_mouse_event_.y_old = e->y();
|
2009-04-24 21:04:51 +00:00
|
|
|
synthetic_mouse_event_.min_scrollbar_old = verticalScrollBar()->minimum();
|
|
|
|
synthetic_mouse_event_.max_scrollbar_old = verticalScrollBar()->maximum();
|
2008-02-07 13:40:31 +00:00
|
|
|
|
|
|
|
// ... and dispatch the event to the LyX core.
|
|
|
|
dispatch(cmd);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-08 16:15:10 +00:00
|
|
|
void GuiWorkArea::wheelEvent(QWheelEvent * ev)
|
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)
|
2008-07-01 07:28:37 +00:00
|
|
|
int const delta = ev->delta() / 120;
|
2008-03-08 16:15:10 +00:00
|
|
|
if (ev->modifiers() & Qt::ControlModifier) {
|
2009-04-04 09:14:38 +00:00
|
|
|
docstring arg = convert<docstring>(5 * delta);
|
|
|
|
lyx::dispatch(FuncRequest(LFUN_BUFFER_ZOOM_IN, arg));
|
2008-07-01 07:28:37 +00:00
|
|
|
return;
|
2008-03-08 16:15:10 +00:00
|
|
|
}
|
2008-07-01 07:28:37 +00:00
|
|
|
|
|
|
|
// Take into account the desktop wide settings.
|
|
|
|
int const lines = qApp->wheelScrollLines();
|
|
|
|
int const page_step = verticalScrollBar()->pageStep();
|
|
|
|
// Test if the wheel mouse is set to one screen at a time.
|
|
|
|
int scroll_value = lines > page_step
|
|
|
|
? page_step : lines * verticalScrollBar()->singleStep();
|
|
|
|
|
|
|
|
// Take into account the rotation.
|
|
|
|
scroll_value *= delta;
|
|
|
|
|
|
|
|
// Take into account user preference.
|
|
|
|
scroll_value *= lyxrc.mouse_wheel_speed;
|
|
|
|
LYXERR(Debug::SCROLLING, "wheelScrollLines = " << lines
|
|
|
|
<< " delta = " << delta << " scroll_value = " << scroll_value
|
|
|
|
<< " page_step = " << page_step);
|
|
|
|
// Now scroll.
|
|
|
|
verticalScrollBar()->setValue(verticalScrollBar()->value() - scroll_value);
|
|
|
|
|
2008-03-08 16:15:10 +00:00
|
|
|
ev->accept();
|
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
|
|
|
{
|
2008-02-05 13:26:22 +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?
|
2009-04-24 21:04:51 +00:00
|
|
|
int const min_scrollbar = verticalScrollBar()->minimum();
|
|
|
|
int const max_scrollbar = verticalScrollBar()->maximum();
|
|
|
|
if (min_scrollbar == synthetic_mouse_event_.min_scrollbar_old
|
|
|
|
&& max_scrollbar == synthetic_mouse_event_.max_scrollbar_old) {
|
|
|
|
return;
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
2009-04-24 21:04:51 +00:00
|
|
|
// Yes it has. Store the params used to check this.
|
|
|
|
synthetic_mouse_event_.min_scrollbar_old = min_scrollbar;
|
|
|
|
synthetic_mouse_event_.max_scrollbar_old = max_scrollbar;
|
|
|
|
// ... and dispatch the event to the LyX core.
|
|
|
|
dispatch(synthetic_mouse_event_.cmd);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
|
2007-09-17 18:41:03 +00:00
|
|
|
void GuiWorkArea::keyPressEvent(QKeyEvent * ev)
|
2006-03-12 17:29:34 +00:00
|
|
|
{
|
2008-11-15 22:58:19 +00:00
|
|
|
// Do not process here some keys if dialog_mode_ is set
|
|
|
|
if (dialog_mode_
|
2008-11-15 22:34:52 +00:00
|
|
|
&& (ev->modifiers() == Qt::NoModifier
|
|
|
|
|| ev->modifiers() == Qt::ShiftModifier)
|
|
|
|
&& (ev->key() == Qt::Key_Escape
|
|
|
|
|| ev->key() == Qt::Key_Enter
|
|
|
|
|| ev->key() == Qt::Key_Return)
|
|
|
|
) {
|
|
|
|
ev->ignore();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
// intercept some keys if completion popup is visible
|
2008-04-21 19:12:15 +00:00
|
|
|
if (completer_->popupVisible()) {
|
2008-02-21 19:42:34 +00:00
|
|
|
switch (ev->key()) {
|
|
|
|
case Qt::Key_Enter:
|
|
|
|
case Qt::Key_Return:
|
2008-04-21 19:12:15 +00:00
|
|
|
completer_->activate();
|
2008-02-21 19:42:34 +00:00
|
|
|
ev->accept();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2008-02-26 19:19:34 +00:00
|
|
|
|
2007-06-02 07:58:11 +00:00
|
|
|
// do nothing if there are other events
|
|
|
|
// (the auto repeated events come too fast)
|
2007-06-02 08:01:12 +00:00
|
|
|
// \todo FIXME: remove hard coded Qt keys, process the key binding
|
2007-06-02 07:58:11 +00:00
|
|
|
#ifdef Q_WS_X11
|
2008-10-13 11:25:37 +00:00
|
|
|
if (XEventsQueued(QX11Info::display(), 0) > 1 && ev->isAutoRepeat()
|
2007-06-02 07:58:11 +00:00
|
|
|
&& (Qt::Key_PageDown || Qt::Key_PageUp)) {
|
2007-11-29 21:10:35 +00:00
|
|
|
LYXERR(Debug::KEY, "system is busy: scroll key event ignored");
|
2007-09-17 18:41:03 +00:00
|
|
|
ev->ignore();
|
2007-06-02 07:58:11 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2007-05-17 08:24:44 +00:00
|
|
|
|
2008-04-20 21:05:35 +00:00
|
|
|
LYXERR(Debug::KEY, " count: " << ev->count() << " text: " << ev->text()
|
2007-11-29 21:10:35 +00:00
|
|
|
<< " isAutoRepeat: " << ev->isAutoRepeat() << " key: " << ev->key());
|
2006-03-12 17:29:34 +00:00
|
|
|
|
2007-09-17 18:41:03 +00:00
|
|
|
KeySymbol sym;
|
|
|
|
setKeySymbol(&sym, ev);
|
|
|
|
processKeySym(sym, q_key_state(ev->modifiers()));
|
2008-01-10 09:04:30 +00:00
|
|
|
ev->accept();
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
|
|
|
|
void GuiWorkArea::doubleClickTimeout()
|
|
|
|
{
|
2006-03-05 17:24:44 +00:00
|
|
|
dc_event_.active = false;
|
|
|
|
}
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
|
2007-09-17 18:41:03 +00:00
|
|
|
void GuiWorkArea::mouseDoubleClickEvent(QMouseEvent * ev)
|
2007-03-27 08:05:31 +00:00
|
|
|
{
|
2007-11-12 22:15:51 +00:00
|
|
|
dc_event_ = DoubleClick(ev);
|
2007-03-27 17:31:29 +00:00
|
|
|
QTimer::singleShot(QApplication::doubleClickInterval(), this,
|
|
|
|
SLOT(doubleClickTimeout()));
|
2007-03-27 17:26:11 +00:00
|
|
|
FuncRequest cmd(LFUN_MOUSE_DOUBLE,
|
2007-09-17 18:41:03 +00:00
|
|
|
ev->x(), ev->y(),
|
|
|
|
q_button_state(ev->button()));
|
2007-03-27 17:26:11 +00:00
|
|
|
dispatch(cmd);
|
2008-02-21 13:42:49 +00:00
|
|
|
ev->accept();
|
2007-03-27 08:05:31 +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;
|
2008-02-21 13:42:49 +00:00
|
|
|
ev->accept();
|
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
|
|
|
{
|
2008-06-18 14:15:48 +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::paintEvent(QPaintEvent * ev)
|
|
|
|
{
|
2007-05-28 22:27:45 +00:00
|
|
|
QRect const rc = ev->rect();
|
2007-11-29 21:10:35 +00:00
|
|
|
// LYXERR(Debug::PAINTING, "paintEvent begin: x: " << rc.x()
|
|
|
|
// << " y: " << rc.y() << " w: " << rc.width() << " h: " << rc.height());
|
2006-11-02 22:53:10 +00:00
|
|
|
|
2007-01-04 12:36:17 +00:00
|
|
|
if (need_resize_) {
|
|
|
|
screen_ = QPixmap(viewport()->width(), viewport()->height());
|
|
|
|
resizeBufferView();
|
2007-11-12 22:15:51 +00:00
|
|
|
hideCursor();
|
|
|
|
showCursor();
|
2007-01-04 12:36:17 +00:00
|
|
|
}
|
|
|
|
|
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);
|
2008-02-21 13:42:49 +00:00
|
|
|
ev->accept();
|
2006-11-02 22:53:10 +00:00
|
|
|
}
|
2006-10-23 08:46:09 +00:00
|
|
|
|
|
|
|
|
2007-01-04 12:36:17 +00:00
|
|
|
void GuiWorkArea::updateScreen()
|
2006-11-02 22:53:10 +00:00
|
|
|
{
|
2007-08-31 22:16:11 +00:00
|
|
|
GuiPainter pain(&screen_);
|
2007-08-27 22:53:16 +00:00
|
|
|
buffer_view_->draw(pain);
|
2006-06-02 12:01:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 12:41:43 +00:00
|
|
|
void GuiWorkArea::showCursor(int x, int y, int h,
|
|
|
|
bool l_shape, bool rtl, bool completable)
|
2006-06-02 12:01:28 +00:00
|
|
|
{
|
2007-01-18 21:47:27 +00:00
|
|
|
if (schedule_redraw_) {
|
2008-06-20 12:31:03 +00:00
|
|
|
// This happens when a graphic conversion is finished. As we don't know
|
|
|
|
// the size of the new graphics, it's better the update everything.
|
|
|
|
// We can't use redraw() here because this would trigger a infinite
|
|
|
|
// recursive loop with showCursor().
|
|
|
|
buffer_view_->resize(viewport()->width(), viewport()->height());
|
2007-08-21 07:33:46 +00:00
|
|
|
updateScreen();
|
2008-06-20 12:31:03 +00:00
|
|
|
updateScrollbar();
|
2007-08-21 07:33:46 +00:00
|
|
|
viewport()->update(QRect(0, 0, viewport()->width(), viewport()->height()));
|
2007-01-18 21:47:27 +00:00
|
|
|
schedule_redraw_ = false;
|
2007-01-16 15:16:09 +00:00
|
|
|
// Show the cursor immediately after the update.
|
|
|
|
hideCursor();
|
|
|
|
toggleCursor();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-02-28 12:41:43 +00:00
|
|
|
cursor_->update(x, y, h, l_shape, rtl, completable);
|
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
|
|
|
{
|
2007-04-01 09:14:08 +00:00
|
|
|
QString const & commit_string = e->commitString();
|
|
|
|
docstring const & preedit_string
|
|
|
|
= qstring_to_ucs4(e->preeditString());
|
|
|
|
|
|
|
|
if (!commit_string.isEmpty()) {
|
2006-06-26 16:55:35 +00:00
|
|
|
|
2008-04-20 21:05:35 +00:00
|
|
|
LYXERR(Debug::KEY, "preeditString: " << e->preeditString()
|
|
|
|
<< " commitString: " << e->commitString());
|
2006-06-26 16:55:35 +00:00
|
|
|
|
2006-03-12 17:29:34 +00:00
|
|
|
int key = 0;
|
2007-02-10 16:30:11 +00:00
|
|
|
|
2007-04-01 09:14:08 +00:00
|
|
|
// FIXME Iwami 04/01/07: we should take care also of UTF16 surrogates here.
|
2007-11-29 21:10:35 +00:00
|
|
|
for (int i = 0; i != commit_string.size(); ++i) {
|
2007-04-01 09:14:08 +00:00
|
|
|
QKeyEvent ev(QEvent::KeyPress, key, Qt::NoModifier, commit_string[i]);
|
2007-02-10 16:30:11 +00:00
|
|
|
keyPressEvent(&ev);
|
|
|
|
}
|
2006-03-12 17:29:34 +00:00
|
|
|
}
|
2007-04-01 09:14:08 +00:00
|
|
|
|
2007-05-28 22:27:45 +00:00
|
|
|
// Hide the cursor during the kana-kanji transformation.
|
2007-04-01 09:14:08 +00:00
|
|
|
if (preedit_string.empty())
|
|
|
|
startBlinkingCursor();
|
|
|
|
else
|
|
|
|
stopBlinkingCursor();
|
|
|
|
|
2007-04-01 15:12:19 +00:00
|
|
|
// last_width : for checking if last preedit string was/wasn't empty.
|
2007-04-01 14:56:55 +00:00
|
|
|
static bool last_width = false;
|
2007-04-01 09:14:08 +00:00
|
|
|
if (!last_width && preedit_string.empty()) {
|
2007-05-28 22:27:45 +00:00
|
|
|
// if last_width is last length of preedit string.
|
2007-04-01 09:14:08 +00:00
|
|
|
e->accept();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-08-31 22:16:11 +00:00
|
|
|
GuiPainter pain(&screen_);
|
2007-11-06 08:32:25 +00:00
|
|
|
buffer_view_->updateMetrics();
|
2007-08-27 22:53:16 +00:00
|
|
|
buffer_view_->draw(pain);
|
2007-10-28 18:51:54 +00:00
|
|
|
FontInfo font = buffer_view_->cursor().getFont().fontInfo();
|
2007-04-01 09:14:08 +00:00
|
|
|
FontMetrics const & fm = theFontMetrics(font);
|
|
|
|
int height = fm.maxHeight();
|
|
|
|
int cur_x = cursor_->rect().left();
|
|
|
|
int cur_y = cursor_->rect().bottom();
|
|
|
|
|
|
|
|
// redraw area of preedit string.
|
2007-11-14 14:34:55 +00:00
|
|
|
update(0, cur_y - height, viewport()->width(),
|
2007-04-01 09:14:08 +00:00
|
|
|
(height + 1) * preedit_lines_);
|
|
|
|
|
|
|
|
if (preedit_string.empty()) {
|
2007-04-01 14:56:55 +00:00
|
|
|
last_width = false;
|
2007-04-01 09:14:08 +00:00
|
|
|
preedit_lines_ = 1;
|
|
|
|
e->accept();
|
|
|
|
return;
|
|
|
|
}
|
2007-04-01 14:56:55 +00:00
|
|
|
last_width = true;
|
2007-04-01 09:14:08 +00:00
|
|
|
|
2007-04-01 15:12:19 +00:00
|
|
|
// att : stores an IM attribute.
|
2007-04-01 14:56:55 +00:00
|
|
|
QList<QInputMethodEvent::Attribute> const & att = e->attributes();
|
2007-04-01 09:14:08 +00:00
|
|
|
|
|
|
|
// get attributes of input method cursor.
|
2007-04-01 15:12:19 +00:00
|
|
|
// cursor_pos : cursor position in preedit string.
|
2007-04-01 14:56:55 +00:00
|
|
|
size_t cursor_pos = 0;
|
|
|
|
bool cursor_is_visible = false;
|
2007-11-29 21:10:35 +00:00
|
|
|
for (int i = 0; i != att.size(); ++i) {
|
2007-04-01 09:14:08 +00:00
|
|
|
if (att.at(i).type == QInputMethodEvent::Cursor) {
|
2007-04-01 14:56:55 +00:00
|
|
|
cursor_pos = att.at(i).start;
|
|
|
|
cursor_is_visible = att.at(i).length != 0;
|
2007-04-01 09:14:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t preedit_length = preedit_string.length();
|
|
|
|
|
|
|
|
// get position of selection in input method.
|
|
|
|
// FIXME: isn't there a way to do this simplier?
|
2007-04-01 15:12:19 +00:00
|
|
|
// rStart : cursor position in selected string in IM.
|
2007-04-01 14:56:55 +00:00
|
|
|
size_t rStart = 0;
|
2007-04-01 15:12:19 +00:00
|
|
|
// rLength : selected string length in IM.
|
2007-04-01 14:56:55 +00:00
|
|
|
size_t rLength = 0;
|
|
|
|
if (cursor_pos < preedit_length) {
|
2007-11-29 21:10:35 +00:00
|
|
|
for (int i = 0; i != att.size(); ++i) {
|
2007-04-01 09:14:08 +00:00
|
|
|
if (att.at(i).type == QInputMethodEvent::TextFormat) {
|
2007-04-01 14:56:55 +00:00
|
|
|
if (att.at(i).start <= int(cursor_pos)
|
|
|
|
&& int(cursor_pos) < att.at(i).start + att.at(i).length) {
|
2007-04-01 09:14:08 +00:00
|
|
|
rStart = att.at(i).start;
|
|
|
|
rLength = att.at(i).length;
|
2007-04-01 14:56:55 +00:00
|
|
|
if (!cursor_is_visible)
|
|
|
|
cursor_pos += rLength;
|
2007-04-01 09:14:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2007-04-01 14:56:55 +00:00
|
|
|
rStart = cursor_pos;
|
2007-04-01 09:14:08 +00:00
|
|
|
rLength = 0;
|
|
|
|
}
|
|
|
|
|
2008-02-09 17:20:23 +00:00
|
|
|
int const right_margin = buffer_view_->rightMargin();
|
2007-04-01 09:14:08 +00:00
|
|
|
Painter::preedit_style ps;
|
|
|
|
// Most often there would be only one line:
|
|
|
|
preedit_lines_ = 1;
|
|
|
|
for (size_t pos = 0; pos != preedit_length; ++pos) {
|
|
|
|
char_type const typed_char = preedit_string[pos];
|
|
|
|
// reset preedit string style
|
|
|
|
ps = Painter::preedit_default;
|
|
|
|
|
|
|
|
// if we reached the right extremity of the screen, go to next line.
|
2007-11-14 14:34:55 +00:00
|
|
|
if (cur_x + fm.width(typed_char) > viewport()->width() - right_margin) {
|
2007-04-01 09:14:08 +00:00
|
|
|
cur_x = right_margin;
|
|
|
|
cur_y += height + 1;
|
|
|
|
++preedit_lines_;
|
|
|
|
}
|
|
|
|
// preedit strings are displayed with dashed underline
|
|
|
|
// and partial strings are displayed white on black indicating
|
|
|
|
// that we are in selecting mode in the input method.
|
|
|
|
// FIXME: rLength == preedit_length is not a changing condition
|
|
|
|
// FIXME: should be put out of the loop.
|
2007-05-28 22:27:45 +00:00
|
|
|
if (pos >= rStart
|
2007-04-01 09:14:08 +00:00
|
|
|
&& pos < rStart + rLength
|
2007-04-01 14:56:55 +00:00
|
|
|
&& !(cursor_pos < rLength && rLength == preedit_length))
|
2007-04-01 09:14:08 +00:00
|
|
|
ps = Painter::preedit_selecting;
|
|
|
|
|
2007-04-01 14:56:55 +00:00
|
|
|
if (pos == cursor_pos
|
|
|
|
&& (cursor_pos < rLength && rLength == preedit_length))
|
2007-04-01 09:14:08 +00:00
|
|
|
ps = Painter::preedit_cursor;
|
|
|
|
|
|
|
|
// draw one character and update cur_x.
|
|
|
|
cur_x += pain.preeditText(cur_x, cur_y, typed_char, font, ps);
|
|
|
|
}
|
|
|
|
|
|
|
|
// update the preedit string screen area.
|
2007-11-14 14:34:55 +00:00
|
|
|
update(0, cur_y - preedit_lines_*height, viewport()->width(),
|
2007-04-01 09:14:08 +00:00
|
|
|
(height + 1) * preedit_lines_);
|
|
|
|
|
|
|
|
// Don't forget to accept the event!
|
2006-03-12 17:29:34 +00:00
|
|
|
e->accept();
|
|
|
|
}
|
2006-06-26 16:55:35 +00:00
|
|
|
|
2007-04-01 09:14:08 +00:00
|
|
|
|
|
|
|
QVariant GuiWorkArea::inputMethodQuery(Qt::InputMethodQuery query) const
|
|
|
|
{
|
2008-09-08 01:18:33 +00:00
|
|
|
QRect cur_r(0, 0, 0, 0);
|
2007-04-01 09:14:08 +00:00
|
|
|
switch (query) {
|
|
|
|
// this is the CJK-specific composition window position.
|
|
|
|
case Qt::ImMicroFocus:
|
|
|
|
cur_r = cursor_->rect();
|
|
|
|
if (preedit_lines_ != 1)
|
|
|
|
cur_r.moveLeft(10);
|
|
|
|
cur_r.moveBottom(cur_r.bottom() + cur_r.height() * preedit_lines_);
|
|
|
|
// return lower right of cursor in LyX.
|
|
|
|
return cur_r;
|
|
|
|
default:
|
|
|
|
return QWidget::inputMethodQuery(query);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-17 18:28:45 +00:00
|
|
|
|
2007-11-12 22:15:51 +00:00
|
|
|
void GuiWorkArea::updateWindowTitle()
|
|
|
|
{
|
|
|
|
docstring maximize_title;
|
|
|
|
docstring minimize_title;
|
|
|
|
|
|
|
|
Buffer & buf = buffer_view_->buffer();
|
|
|
|
FileName const fileName = buf.fileName();
|
|
|
|
if (!fileName.empty()) {
|
|
|
|
maximize_title = fileName.displayName(30);
|
|
|
|
minimize_title = from_utf8(fileName.onlyFileName());
|
2009-01-31 18:17:36 +00:00
|
|
|
if (buf.lyxvc().inUse()) {
|
|
|
|
if (buf.lyxvc().locker().empty())
|
|
|
|
maximize_title += _(" (version control)");
|
|
|
|
else
|
|
|
|
maximize_title += _(" (version control, locking)");
|
|
|
|
}
|
2007-11-12 22:15:51 +00:00
|
|
|
if (!buf.isClean()) {
|
|
|
|
maximize_title += _(" (changed)");
|
|
|
|
minimize_title += char_type('*');
|
|
|
|
}
|
|
|
|
if (buf.isReadonly())
|
|
|
|
maximize_title += _(" (read only)");
|
|
|
|
}
|
|
|
|
|
2007-11-14 12:31:31 +00:00
|
|
|
QString title = windowTitle();
|
|
|
|
QString new_title = toqstr(maximize_title);
|
|
|
|
if (title == new_title)
|
|
|
|
return;
|
|
|
|
|
|
|
|
QWidget::setWindowTitle(new_title);
|
|
|
|
QWidget::setWindowIconText(toqstr(minimize_title));
|
|
|
|
titleChanged(this);
|
2007-11-12 22:15:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiWorkArea::setReadOnly(bool)
|
|
|
|
{
|
|
|
|
updateWindowTitle();
|
|
|
|
if (this == lyx_view_->currentWorkArea())
|
2008-04-27 22:24:20 +00:00
|
|
|
lyx_view_->updateDialogs();
|
2007-11-12 22:15:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 21:04:33 +00:00
|
|
|
bool GuiWorkArea::isFullScreen()
|
|
|
|
{
|
|
|
|
return lyx_view_ && lyx_view_->isFullScreen();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-22 14:45:47 +00:00
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// EmbeddedWorkArea
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2008-11-22 17:35:17 +00:00
|
|
|
EmbeddedWorkArea::EmbeddedWorkArea(QWidget * w): GuiWorkArea(w)
|
2008-11-22 14:45:47 +00:00
|
|
|
{
|
|
|
|
buffer_ = theBufferList().newBuffer(
|
|
|
|
support::FileName::tempName().absFilename() + "_embedded.internal");
|
|
|
|
buffer_->setUnnamed(true);
|
|
|
|
buffer_->setFullyLoaded(true);
|
|
|
|
setBuffer(*buffer_);
|
|
|
|
setDialogMode(true);
|
|
|
|
}
|
|
|
|
|
2008-11-22 15:21:45 +00:00
|
|
|
|
2008-11-22 14:45:47 +00:00
|
|
|
EmbeddedWorkArea::~EmbeddedWorkArea()
|
|
|
|
{
|
|
|
|
// No need to destroy buffer and bufferview here, because it is done
|
|
|
|
// in theBuffeerList() destruction loop at application exit
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-22 17:35:17 +00:00
|
|
|
void EmbeddedWorkArea::closeEvent(QCloseEvent * ev)
|
2008-11-22 15:21:45 +00:00
|
|
|
{
|
2008-11-22 17:35:17 +00:00
|
|
|
disable();
|
|
|
|
GuiWorkArea::closeEvent(ev);
|
2008-11-22 15:21:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-22 17:35:17 +00:00
|
|
|
void EmbeddedWorkArea::hideEvent(QHideEvent * ev)
|
2008-11-22 15:21:45 +00:00
|
|
|
{
|
|
|
|
disable();
|
2008-11-22 17:35:17 +00:00
|
|
|
GuiWorkArea::hideEvent(ev);
|
2008-11-22 15:21:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EmbeddedWorkArea::disable()
|
|
|
|
{
|
|
|
|
stopBlinkingCursor();
|
2008-11-22 17:35:17 +00:00
|
|
|
if (view().currentWorkArea() != this)
|
|
|
|
return;
|
|
|
|
LASSERT(view().currentMainWorkArea(), /* */);
|
|
|
|
view().setCurrentWorkArea(view().currentMainWorkArea());
|
2008-11-22 15:21:45 +00:00
|
|
|
}
|
|
|
|
|
2007-10-06 15:48:58 +00:00
|
|
|
////////////////////////////////////////////////////////////////////
|
2007-10-17 18:28:45 +00:00
|
|
|
//
|
2008-10-13 11:25:37 +00:00
|
|
|
// TabWorkArea
|
2007-10-17 18:28:45 +00:00
|
|
|
//
|
2007-10-06 15:48:58 +00:00
|
|
|
////////////////////////////////////////////////////////////////////
|
2007-10-17 18:28:45 +00:00
|
|
|
|
2008-03-04 18:53:44 +00:00
|
|
|
#ifdef Q_WS_MACX
|
|
|
|
class NoTabFrameMacStyle : public QMacStyle {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
QRect subElementRect(SubElement element, const QStyleOption * option,
|
2008-03-21 09:30:19 +00:00
|
|
|
const QWidget * widget = 0) const
|
2008-03-04 18:53:44 +00:00
|
|
|
{
|
|
|
|
QRect rect = QMacStyle::subElementRect(element, option, widget);
|
|
|
|
bool noBar = static_cast<QTabWidget const *>(widget)->count() <= 1;
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-03-04 18:53:44 +00:00
|
|
|
// The Qt Mac style puts the contents into a 3 pixel wide box
|
|
|
|
// which looks very ugly and not like other Mac applications.
|
|
|
|
// Hence we remove this here, and moreover the 16 pixel round
|
|
|
|
// frame above if the tab bar is hidden.
|
|
|
|
if (element == QStyle::SE_TabWidgetTabContents) {
|
|
|
|
rect.adjust(- rect.left(), 0, rect.left(), 0);
|
|
|
|
if (noBar)
|
|
|
|
rect.setTop(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rect;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-03-14 16:35:44 +00:00
|
|
|
NoTabFrameMacStyle noTabFrameMacStyle;
|
2008-03-04 18:53:44 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2008-03-15 01:00:25 +00:00
|
|
|
TabWorkArea::TabWorkArea(QWidget * parent)
|
|
|
|
: QTabWidget(parent), clicked_tab_(-1)
|
2007-10-06 15:48:58 +00:00
|
|
|
{
|
2008-03-04 18:53:44 +00:00
|
|
|
#ifdef Q_WS_MACX
|
2008-03-14 16:35:44 +00:00
|
|
|
setStyle(&noTabFrameMacStyle);
|
2008-03-04 18:53:44 +00:00
|
|
|
#endif
|
|
|
|
|
2007-10-11 19:00:18 +00:00
|
|
|
QPalette pal = palette();
|
2007-11-12 22:15:51 +00:00
|
|
|
pal.setColor(QPalette::Active, QPalette::Button,
|
|
|
|
pal.color(QPalette::Active, QPalette::Window));
|
|
|
|
pal.setColor(QPalette::Disabled, QPalette::Button,
|
|
|
|
pal.color(QPalette::Disabled, QPalette::Window));
|
|
|
|
pal.setColor(QPalette::Inactive, QPalette::Button,
|
|
|
|
pal.color(QPalette::Inactive, QPalette::Window));
|
2007-10-11 19:00:18 +00:00
|
|
|
|
2008-02-21 12:29:26 +00:00
|
|
|
QObject::connect(this, SIGNAL(currentChanged(int)),
|
|
|
|
this, SLOT(on_currentTabChanged(int)));
|
|
|
|
|
2009-05-02 12:43:45 +00:00
|
|
|
#if QT_VERSION < 0x040500
|
2009-03-08 10:21:33 +00:00
|
|
|
closeBufferButton = new QToolButton(this);
|
2008-03-05 15:45:43 +00:00
|
|
|
closeBufferButton->setPalette(pal);
|
2008-02-21 12:29:26 +00:00
|
|
|
// FIXME: rename the icon to closebuffer.png
|
2009-04-03 17:00:09 +00:00
|
|
|
closeBufferButton->setIcon(QIcon(getPixmap("images/", "closetab", "png")));
|
2008-02-21 22:19:22 +00:00
|
|
|
closeBufferButton->setText("Close File");
|
2008-02-21 12:29:26 +00:00
|
|
|
closeBufferButton->setAutoRaise(true);
|
|
|
|
closeBufferButton->setCursor(Qt::ArrowCursor);
|
2008-02-21 22:19:22 +00:00
|
|
|
closeBufferButton->setToolTip(qt_("Close File"));
|
2008-02-21 12:29:26 +00:00
|
|
|
closeBufferButton->setEnabled(true);
|
|
|
|
QObject::connect(closeBufferButton, SIGNAL(clicked()),
|
|
|
|
this, SLOT(closeCurrentBuffer()));
|
|
|
|
setCornerWidget(closeBufferButton, Qt::TopRightCorner);
|
2009-05-02 12:43:45 +00:00
|
|
|
#endif
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-03-15 02:13:01 +00:00
|
|
|
// setup drag'n'drop
|
|
|
|
QTabBar* tb = new DragTabBar;
|
|
|
|
connect(tb, SIGNAL(tabMoveRequested(int, int)),
|
|
|
|
this, SLOT(moveTab(int, int)));
|
2008-04-29 15:45:06 +00:00
|
|
|
tb->setElideMode(Qt::ElideNone);
|
2008-03-15 02:13:01 +00:00
|
|
|
setTabBar(tb);
|
2008-02-21 12:29:26 +00:00
|
|
|
|
2008-03-15 01:00:25 +00:00
|
|
|
// make us responsible for the context menu of the tabbar
|
2008-03-15 02:13:01 +00:00
|
|
|
tb->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
connect(tb, SIGNAL(customContextMenuRequested(const QPoint &)),
|
2008-03-15 01:00:25 +00:00
|
|
|
this, SLOT(showContextMenu(const QPoint &)));
|
2009-05-02 12:43:42 +00:00
|
|
|
#if QT_VERSION >= 0x040500
|
|
|
|
connect(tb, SIGNAL(tabCloseRequested(int)),
|
|
|
|
tb, SLOT(on_tabCloseRequested(int)));
|
|
|
|
#endif
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2007-10-06 15:48:58 +00:00
|
|
|
setUsesScrollButtons(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-09 18:29:15 +00:00
|
|
|
void TabWorkArea::setFullScreen(bool full_screen)
|
|
|
|
{
|
|
|
|
for (int i = 0; i != count(); ++i) {
|
|
|
|
if (GuiWorkArea * wa = dynamic_cast<GuiWorkArea *>(widget(i)))
|
|
|
|
wa->setFullScreen(full_screen);
|
|
|
|
}
|
2008-02-19 21:51:55 +00:00
|
|
|
|
|
|
|
if (lyxrc.full_screen_tabbar)
|
|
|
|
showBar(!full_screen && count()>1);
|
2008-02-09 18:29:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-06 15:48:58 +00:00
|
|
|
void TabWorkArea::showBar(bool show)
|
|
|
|
{
|
2007-11-19 11:21:45 +00:00
|
|
|
tabBar()->setEnabled(show);
|
2007-10-06 15:48:58 +00:00
|
|
|
tabBar()->setVisible(show);
|
2009-05-02 12:43:45 +00:00
|
|
|
#if QT_VERSION < 0x040500
|
2009-03-08 10:21:33 +00:00
|
|
|
closeBufferButton->setVisible(show);
|
2009-05-02 12:43:45 +00:00
|
|
|
#endif
|
2007-10-06 15:48:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-16 06:50:09 +00:00
|
|
|
GuiWorkArea * TabWorkArea::currentWorkArea()
|
|
|
|
{
|
|
|
|
if (count() == 0)
|
|
|
|
return 0;
|
|
|
|
|
2008-10-13 11:25:37 +00:00
|
|
|
GuiWorkArea * wa = dynamic_cast<GuiWorkArea *>(currentWidget());
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(wa, /**/);
|
2007-10-16 06:50:09 +00:00
|
|
|
return wa;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GuiWorkArea * TabWorkArea::workArea(Buffer & buffer)
|
|
|
|
{
|
|
|
|
for (int i = 0; i != count(); ++i) {
|
|
|
|
GuiWorkArea * wa = dynamic_cast<GuiWorkArea *>(widget(i));
|
2008-04-15 18:04:49 +00:00
|
|
|
LASSERT(wa, return 0);
|
2007-10-16 06:50:09 +00:00
|
|
|
if (&wa->bufferView().buffer() == &buffer)
|
|
|
|
return wa;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 08:12:20 +00:00
|
|
|
void TabWorkArea::closeAll()
|
|
|
|
{
|
|
|
|
while (count()) {
|
|
|
|
GuiWorkArea * wa = dynamic_cast<GuiWorkArea *>(widget(0));
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(wa, /**/);
|
2007-10-07 08:12:20 +00:00
|
|
|
removeTab(0);
|
|
|
|
delete wa;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 08:05:02 +00:00
|
|
|
bool TabWorkArea::setCurrentWorkArea(GuiWorkArea * work_area)
|
|
|
|
{
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(work_area, /**/);
|
2007-10-07 08:05:02 +00:00
|
|
|
int index = indexOf(work_area);
|
|
|
|
if (index == -1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (index == currentIndex())
|
|
|
|
// Make sure the work area is up to date.
|
|
|
|
on_currentTabChanged(index);
|
|
|
|
else
|
|
|
|
// Switch to the work area.
|
|
|
|
setCurrentIndex(index);
|
|
|
|
work_area->setFocus();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-19 10:04:14 +00:00
|
|
|
GuiWorkArea * TabWorkArea::addWorkArea(Buffer & buffer, GuiView & view)
|
|
|
|
{
|
|
|
|
GuiWorkArea * wa = new GuiWorkArea(buffer, view);
|
|
|
|
wa->setUpdatesEnabled(false);
|
2007-11-19 12:03:38 +00:00
|
|
|
// Hide tabbar if there's no tab (avoid a resize and a flashing tabbar
|
|
|
|
// when hiding it again below).
|
2008-02-27 21:04:33 +00:00
|
|
|
if (!(currentWorkArea() && currentWorkArea()->isFullScreen()))
|
|
|
|
showBar(count() > 0);
|
2007-11-19 10:04:14 +00:00
|
|
|
addTab(wa, wa->windowTitle());
|
|
|
|
QObject::connect(wa, SIGNAL(titleChanged(GuiWorkArea *)),
|
2008-04-29 15:44:07 +00:00
|
|
|
this, SLOT(updateTabTexts()));
|
2008-02-27 21:04:33 +00:00
|
|
|
if (currentWorkArea() && currentWorkArea()->isFullScreen())
|
|
|
|
setFullScreen(true);
|
|
|
|
else
|
|
|
|
// Hide tabbar if there's only one tab.
|
|
|
|
showBar(count() > 1);
|
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
updateTabTexts();
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2007-11-19 10:04:14 +00:00
|
|
|
return wa;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 08:05:02 +00:00
|
|
|
bool TabWorkArea::removeWorkArea(GuiWorkArea * work_area)
|
|
|
|
{
|
2008-04-15 18:04:49 +00:00
|
|
|
LASSERT(work_area, return false);
|
2007-10-07 08:05:02 +00:00
|
|
|
int index = indexOf(work_area);
|
|
|
|
if (index == -1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
work_area->setUpdatesEnabled(false);
|
|
|
|
removeTab(index);
|
|
|
|
delete work_area;
|
|
|
|
|
|
|
|
if (count()) {
|
|
|
|
// make sure the next work area is enabled.
|
|
|
|
currentWidget()->setUpdatesEnabled(true);
|
2008-03-21 09:30:19 +00:00
|
|
|
if (currentWorkArea() && currentWorkArea()->isFullScreen())
|
2008-02-27 21:04:33 +00:00
|
|
|
setFullScreen(true);
|
|
|
|
else
|
2009-05-05 06:24:43 +00:00
|
|
|
// Show tabbar only if there's more than one tab.
|
2009-05-05 06:22:55 +00:00
|
|
|
showBar(count() > 1);
|
2008-04-15 18:04:49 +00:00
|
|
|
} else {
|
2008-03-14 23:24:59 +00:00
|
|
|
lastWorkAreaRemoved();
|
2008-04-15 18:04:49 +00:00
|
|
|
}
|
2008-03-14 23:24:59 +00:00
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
updateTabTexts();
|
|
|
|
|
2007-10-07 08:05:02 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-06 15:48:58 +00:00
|
|
|
void TabWorkArea::on_currentTabChanged(int i)
|
|
|
|
{
|
2008-04-15 17:00:53 +00:00
|
|
|
// returns e.g. on application destruction
|
|
|
|
if (i == -1)
|
|
|
|
return;
|
2007-10-06 15:48:58 +00:00
|
|
|
GuiWorkArea * wa = dynamic_cast<GuiWorkArea *>(widget(i));
|
2008-04-15 18:04:49 +00:00
|
|
|
LASSERT(wa, return);
|
2007-10-06 15:48:58 +00:00
|
|
|
BufferView & bv = wa->bufferView();
|
|
|
|
bv.cursor().fixIfBroken();
|
2008-06-16 19:51:00 +00:00
|
|
|
bv.updateMetrics();
|
2007-10-06 15:48:58 +00:00
|
|
|
wa->setUpdatesEnabled(true);
|
|
|
|
wa->redraw();
|
|
|
|
wa->setFocus();
|
|
|
|
///
|
|
|
|
currentWorkAreaChanged(wa);
|
|
|
|
|
2007-11-15 20:04:51 +00:00
|
|
|
LYXERR(Debug::GUI, "currentTabChanged " << i
|
|
|
|
<< "File" << bv.buffer().absFileName());
|
2007-10-06 15:48:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-21 12:29:26 +00:00
|
|
|
void TabWorkArea::closeCurrentBuffer()
|
2007-10-06 15:48:58 +00:00
|
|
|
{
|
2008-03-15 01:00:25 +00:00
|
|
|
if (clicked_tab_ != -1)
|
|
|
|
setCurrentIndex(clicked_tab_);
|
2009-02-28 13:56:41 +00:00
|
|
|
else
|
|
|
|
// Before dispatching the LFUN we should be sure this
|
|
|
|
// is the current workarea.
|
|
|
|
currentWorkAreaChanged(currentWorkArea());
|
2008-03-15 01:00:25 +00:00
|
|
|
|
2007-10-06 15:48:58 +00:00
|
|
|
lyx::dispatch(FuncRequest(LFUN_BUFFER_CLOSE));
|
|
|
|
}
|
|
|
|
|
2007-11-11 22:30:21 +00:00
|
|
|
|
2008-02-21 12:29:26 +00:00
|
|
|
void TabWorkArea::closeCurrentTab()
|
|
|
|
{
|
2008-03-15 01:00:25 +00:00
|
|
|
if (clicked_tab_ == -1)
|
|
|
|
removeWorkArea(currentWorkArea());
|
|
|
|
else {
|
2008-10-13 11:25:37 +00:00
|
|
|
GuiWorkArea * wa = dynamic_cast<GuiWorkArea *>(widget(clicked_tab_));
|
2008-04-10 21:49:34 +00:00
|
|
|
LASSERT(wa, /**/);
|
2008-03-15 01:00:25 +00:00
|
|
|
removeWorkArea(wa);
|
|
|
|
}
|
2008-02-21 12:29:26 +00:00
|
|
|
}
|
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
///
|
|
|
|
class DisplayPath {
|
|
|
|
public:
|
|
|
|
/// make vector happy
|
|
|
|
DisplayPath() {}
|
|
|
|
///
|
|
|
|
DisplayPath(int tab, FileName const & filename)
|
|
|
|
: tab_(tab)
|
|
|
|
{
|
|
|
|
filename_ = toqstr(filename.onlyFileNameWithoutExt());
|
2008-05-02 16:59:39 +00:00
|
|
|
postfix_ = toqstr(filename.absoluteFilePath()).
|
|
|
|
split("/", QString::SkipEmptyParts);
|
2008-04-29 15:44:07 +00:00
|
|
|
postfix_.pop_back();
|
|
|
|
abs_ = toqstr(filename.absoluteFilePath());
|
|
|
|
dottedPrefix_ = false;
|
|
|
|
}
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
/// Absolute path for debugging.
|
|
|
|
QString abs() const
|
|
|
|
{
|
|
|
|
return abs_;
|
|
|
|
}
|
|
|
|
/// Add the first segment from the postfix or three dots to the prefix.
|
|
|
|
/// Merge multiple dot tripples. In fact dots are added lazily, i.e. only
|
|
|
|
/// when really needed.
|
|
|
|
void shiftPathSegment(bool dotted)
|
|
|
|
{
|
2008-05-02 16:59:39 +00:00
|
|
|
if (postfix_.count() <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!dotted) {
|
|
|
|
if (dottedPrefix_ && !prefix_.isEmpty())
|
|
|
|
prefix_ += ".../";
|
|
|
|
prefix_ += postfix_.front() + "/";
|
2008-04-29 15:44:07 +00:00
|
|
|
}
|
2008-05-02 16:59:39 +00:00
|
|
|
dottedPrefix_ = dotted && !prefix_.isEmpty();
|
|
|
|
postfix_.pop_front();
|
2008-04-29 15:44:07 +00:00
|
|
|
}
|
|
|
|
///
|
|
|
|
QString displayString() const
|
|
|
|
{
|
|
|
|
if (prefix_.isEmpty())
|
|
|
|
return filename_;
|
2008-05-02 16:59:39 +00:00
|
|
|
|
|
|
|
bool dots = dottedPrefix_ || !postfix_.isEmpty();
|
|
|
|
return prefix_ + (dots ? ".../" : "") + filename_;
|
2008-04-29 15:44:07 +00:00
|
|
|
}
|
|
|
|
///
|
2008-04-29 15:45:06 +00:00
|
|
|
QString forecastPathString() const
|
2008-04-29 15:44:07 +00:00
|
|
|
{
|
|
|
|
if (postfix_.count() == 0)
|
|
|
|
return displayString();
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
return prefix_
|
|
|
|
+ (dottedPrefix_ ? ".../" : "")
|
2008-04-29 15:45:06 +00:00
|
|
|
+ postfix_.front() + "/";
|
2008-04-29 15:44:07 +00:00
|
|
|
}
|
|
|
|
///
|
2008-05-02 16:59:39 +00:00
|
|
|
bool final() const { return postfix_.empty(); }
|
2008-04-29 15:44:07 +00:00
|
|
|
///
|
2008-05-02 16:59:39 +00:00
|
|
|
int tab() const { return tab_; }
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
private:
|
|
|
|
///
|
|
|
|
QString prefix_;
|
|
|
|
///
|
|
|
|
QStringList postfix_;
|
|
|
|
///
|
|
|
|
QString filename_;
|
|
|
|
///
|
|
|
|
QString abs_;
|
|
|
|
///
|
|
|
|
int tab_;
|
|
|
|
///
|
|
|
|
bool dottedPrefix_;
|
|
|
|
};
|
2008-02-21 12:29:26 +00:00
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
|
|
|
|
///
|
|
|
|
bool operator<(DisplayPath const & a, DisplayPath const & b)
|
2007-11-11 22:30:21 +00:00
|
|
|
{
|
2008-04-29 15:44:07 +00:00
|
|
|
return a.displayString() < b.displayString();
|
|
|
|
}
|
|
|
|
|
|
|
|
///
|
|
|
|
bool operator==(DisplayPath const & a, DisplayPath const & b)
|
|
|
|
{
|
|
|
|
return a.displayString() == b.displayString();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void TabWorkArea::updateTabTexts()
|
|
|
|
{
|
|
|
|
size_t n = count();
|
|
|
|
if (n == 0)
|
2007-11-11 22:30:21 +00:00
|
|
|
return;
|
2008-04-29 15:44:07 +00:00
|
|
|
std::list<DisplayPath> paths;
|
|
|
|
typedef std::list<DisplayPath>::iterator It;
|
2008-10-13 11:25:37 +00:00
|
|
|
|
|
|
|
// collect full names first: path into postfix, empty prefix and
|
2008-04-29 15:44:07 +00:00
|
|
|
// filename without extension
|
|
|
|
for (size_t i = 0; i < n; ++i) {
|
2008-10-13 11:25:37 +00:00
|
|
|
GuiWorkArea * i_wa = dynamic_cast<GuiWorkArea *>(widget(i));
|
2008-04-29 15:44:07 +00:00
|
|
|
FileName const fn = i_wa->bufferView().buffer().fileName();
|
|
|
|
paths.push_back(DisplayPath(i, fn));
|
|
|
|
}
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
// go through path segments and see if it helps to make the path more unique
|
|
|
|
bool somethingChanged = true;
|
|
|
|
bool allFinal = false;
|
|
|
|
while (somethingChanged && !allFinal) {
|
|
|
|
// adding path segments changes order
|
|
|
|
paths.sort();
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
LYXERR(Debug::GUI, "updateTabTexts() iteration start");
|
|
|
|
somethingChanged = false;
|
|
|
|
allFinal = true;
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
// find segments which are not unique (i.e. non-atomic)
|
|
|
|
It it = paths.begin();
|
|
|
|
It segStart = it;
|
|
|
|
QString segString = it->displayString();
|
|
|
|
for (; it != paths.end(); ++it) {
|
|
|
|
// look to the next item
|
|
|
|
It next = it;
|
|
|
|
++next;
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
// final?
|
|
|
|
allFinal = allFinal && it->final();
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-05-02 22:07:51 +00:00
|
|
|
LYXERR(Debug::GUI, "it = " << it->abs()
|
|
|
|
<< " => " << it->displayString());
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
// still the same segment?
|
|
|
|
QString nextString;
|
|
|
|
if ((next != paths.end()
|
|
|
|
&& (nextString = next->displayString()) == segString))
|
|
|
|
continue;
|
|
|
|
LYXERR(Debug::GUI, "segment ended");
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
// only a trivial one with one element?
|
|
|
|
if (it == segStart) {
|
|
|
|
// start new segment
|
|
|
|
segStart = next;
|
|
|
|
segString = nextString;
|
|
|
|
continue;
|
|
|
|
}
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
// we found a non-atomic segment segStart <= sit <= it < next.
|
|
|
|
// Shift path segments and hope for the best
|
|
|
|
// that it makes the path more unique.
|
|
|
|
somethingChanged = true;
|
|
|
|
It sit = segStart;
|
2008-04-29 15:45:06 +00:00
|
|
|
QString dspString = sit->forecastPathString();
|
2008-04-29 15:44:07 +00:00
|
|
|
LYXERR(Debug::GUI, "first forecast found for "
|
2008-05-02 22:07:51 +00:00
|
|
|
<< sit->abs() << " => " << dspString);
|
2008-04-29 15:44:07 +00:00
|
|
|
++sit;
|
|
|
|
bool moreUnique = false;
|
|
|
|
for (; sit != next; ++sit) {
|
2008-04-29 15:45:06 +00:00
|
|
|
if (sit->forecastPathString() != dspString) {
|
2008-04-29 15:44:07 +00:00
|
|
|
LYXERR(Debug::GUI, "different forecast found for "
|
2008-05-02 22:07:51 +00:00
|
|
|
<< sit->abs() << " => " << sit->forecastPathString());
|
2008-04-29 15:44:07 +00:00
|
|
|
moreUnique = true;
|
|
|
|
break;
|
|
|
|
}
|
2008-05-02 16:59:39 +00:00
|
|
|
LYXERR(Debug::GUI, "same forecast found for "
|
2008-05-02 22:07:51 +00:00
|
|
|
<< sit->abs() << " => " << dspString);
|
2008-04-29 15:44:07 +00:00
|
|
|
}
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
// if the path segment helped, add it. Otherwise add dots
|
|
|
|
bool dots = !moreUnique;
|
|
|
|
LYXERR(Debug::GUI, "using dots = " << dots);
|
|
|
|
for (sit = segStart; sit != next; ++sit) {
|
|
|
|
sit->shiftPathSegment(dots);
|
2008-05-02 22:07:51 +00:00
|
|
|
LYXERR(Debug::GUI, "shifting "
|
|
|
|
<< sit->abs() << " => " << sit->displayString());
|
2008-04-29 15:44:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// start new segment
|
|
|
|
segStart = next;
|
|
|
|
segString = nextString;
|
|
|
|
}
|
|
|
|
}
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-04-29 15:44:07 +00:00
|
|
|
// set new tab titles
|
|
|
|
for (It it = paths.begin(); it != paths.end(); ++it) {
|
2008-10-13 11:25:37 +00:00
|
|
|
GuiWorkArea * i_wa = dynamic_cast<GuiWorkArea *>(widget(it->tab()));
|
2008-04-29 15:44:07 +00:00
|
|
|
Buffer & buf = i_wa->bufferView().buffer();
|
|
|
|
if (!buf.fileName().empty() && !buf.isClean())
|
|
|
|
setTabText(it->tab(), it->displayString() + "*");
|
|
|
|
else
|
|
|
|
setTabText(it->tab(), it->displayString());
|
|
|
|
}
|
2007-11-11 22:30:21 +00:00
|
|
|
}
|
|
|
|
|
2008-03-15 01:00:25 +00:00
|
|
|
|
|
|
|
void TabWorkArea::showContextMenu(const QPoint & pos)
|
|
|
|
{
|
|
|
|
// which tab?
|
2008-03-15 02:13:01 +00:00
|
|
|
clicked_tab_ = static_cast<DragTabBar *>(tabBar())->tabAt(pos);
|
2008-05-02 16:59:39 +00:00
|
|
|
if (clicked_tab_ == -1)
|
|
|
|
return;
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-05-02 16:59:39 +00:00
|
|
|
// show tab popup
|
|
|
|
QMenu popup;
|
2009-04-03 17:00:09 +00:00
|
|
|
popup.addAction(QIcon(getPixmap("images/", "hidetab", "png")),
|
2008-05-02 16:59:39 +00:00
|
|
|
qt_("Hide tab"), this, SLOT(closeCurrentTab()));
|
2009-04-03 17:00:09 +00:00
|
|
|
popup.addAction(QIcon(getPixmap("images/", "closetab", "png")),
|
2008-05-02 16:59:39 +00:00
|
|
|
qt_("Close tab"), this, SLOT(closeCurrentBuffer()));
|
|
|
|
popup.exec(tabBar()->mapToGlobal(pos));
|
|
|
|
|
|
|
|
clicked_tab_ = -1;
|
2008-03-15 01:00:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-15 02:13:01 +00:00
|
|
|
void TabWorkArea::moveTab(int fromIndex, int toIndex)
|
|
|
|
{
|
|
|
|
QWidget * w = widget(fromIndex);
|
|
|
|
QIcon icon = tabIcon(fromIndex);
|
|
|
|
QString text = tabText(fromIndex);
|
|
|
|
|
|
|
|
setCurrentIndex(fromIndex);
|
|
|
|
removeTab(fromIndex);
|
|
|
|
insertTab(toIndex, w, icon, text);
|
|
|
|
setCurrentIndex(toIndex);
|
|
|
|
}
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-03-15 02:13:01 +00:00
|
|
|
|
|
|
|
DragTabBar::DragTabBar(QWidget* parent)
|
|
|
|
: QTabBar(parent)
|
|
|
|
{
|
|
|
|
setAcceptDrops(true);
|
2009-05-02 12:43:42 +00:00
|
|
|
#if QT_VERSION >= 0x040500
|
|
|
|
setTabsClosable(true);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DragTabBar::on_tabCloseRequested(int index)
|
|
|
|
{
|
|
|
|
setCurrentIndex(index);
|
|
|
|
lyx::dispatch(FuncRequest(LFUN_BUFFER_CLOSE));
|
2008-03-15 02:13:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if QT_VERSION < 0x040300
|
|
|
|
int DragTabBar::tabAt(QPoint const & position) const
|
|
|
|
{
|
|
|
|
const int max = count();
|
|
|
|
for (int i = 0; i < max; ++i) {
|
|
|
|
if (tabRect(i).contains(position))
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
void DragTabBar::mousePressEvent(QMouseEvent * event)
|
|
|
|
{
|
|
|
|
if (event->button() == Qt::LeftButton)
|
|
|
|
dragStartPos_ = event->pos();
|
|
|
|
QTabBar::mousePressEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DragTabBar::mouseMoveEvent(QMouseEvent * event)
|
|
|
|
{
|
|
|
|
// If the left button isn't pressed anymore then return
|
|
|
|
if (!(event->buttons() & Qt::LeftButton))
|
|
|
|
return;
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-03-15 02:13:01 +00:00
|
|
|
// If the distance is too small then return
|
|
|
|
if ((event->pos() - dragStartPos_).manhattanLength()
|
|
|
|
< QApplication::startDragDistance())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// did we hit something after all?
|
|
|
|
int tab = tabAt(dragStartPos_);
|
|
|
|
if (tab == -1)
|
|
|
|
return;
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-03-15 02:13:01 +00:00
|
|
|
// simulate button release to remove highlight from button
|
|
|
|
int i = currentIndex();
|
|
|
|
QMouseEvent me(QEvent::MouseButtonRelease, dragStartPos_,
|
|
|
|
event->button(), event->buttons(), 0);
|
|
|
|
QTabBar::mouseReleaseEvent(&me);
|
|
|
|
setCurrentIndex(i);
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-03-15 02:13:01 +00:00
|
|
|
// initiate Drag
|
|
|
|
QDrag * drag = new QDrag(this);
|
|
|
|
QMimeData * mimeData = new QMimeData;
|
|
|
|
// a crude way to distinguish tab-reodering drops from other ones
|
|
|
|
mimeData->setData("action", "tab-reordering") ;
|
|
|
|
drag->setMimeData(mimeData);
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-03-15 02:13:01 +00:00
|
|
|
#if QT_VERSION >= 0x040300
|
|
|
|
// get tab pixmap as cursor
|
|
|
|
QRect r = tabRect(tab);
|
|
|
|
QPixmap pixmap(r.size());
|
2008-03-15 02:42:48 +00:00
|
|
|
render(&pixmap, - r.topLeft());
|
2008-03-15 02:13:01 +00:00
|
|
|
drag->setPixmap(pixmap);
|
2008-03-15 10:19:12 +00:00
|
|
|
drag->exec();
|
|
|
|
#else
|
|
|
|
drag->start(Qt::MoveAction);
|
2008-03-15 02:13:01 +00:00
|
|
|
#endif
|
2008-10-13 11:25:37 +00:00
|
|
|
|
2008-03-15 02:13:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DragTabBar::dragEnterEvent(QDragEnterEvent * event)
|
|
|
|
{
|
|
|
|
// Only accept if it's an tab-reordering request
|
|
|
|
QMimeData const * m = event->mimeData();
|
|
|
|
QStringList formats = m->formats();
|
2008-10-13 11:25:37 +00:00
|
|
|
if (formats.contains("action")
|
2008-03-15 02:13:01 +00:00
|
|
|
&& m->data("action") == "tab-reordering")
|
|
|
|
event->acceptProposedAction();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DragTabBar::dropEvent(QDropEvent * event)
|
|
|
|
{
|
|
|
|
int fromIndex = tabAt(dragStartPos_);
|
|
|
|
int toIndex = tabAt(event->pos());
|
2008-10-13 11:25:37 +00:00
|
|
|
|
|
|
|
// Tell interested objects that
|
2008-03-15 02:13:01 +00:00
|
|
|
if (fromIndex != toIndex)
|
|
|
|
tabMoveRequested(fromIndex, toIndex);
|
|
|
|
event->acceptProposedAction();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2008-11-14 14:28:50 +00:00
|
|
|
#include "moc_GuiWorkArea.cpp"
|