2008-02-21 19:42:34 +00:00
|
|
|
/**
|
|
|
|
* \file GuiCompleter.cpp
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Stefan Schimanski
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "GuiWorkArea.h"
|
|
|
|
|
|
|
|
#include "Buffer.h"
|
|
|
|
#include "BufferView.h"
|
|
|
|
#include "Cursor.h"
|
|
|
|
#include "Dimension.h"
|
|
|
|
#include "FuncRequest.h"
|
|
|
|
#include "GuiView.h"
|
|
|
|
#include "LyXFunc.h"
|
|
|
|
#include "LyXRC.h"
|
2008-02-22 21:57:57 +00:00
|
|
|
#include "Paragraph.h"
|
2008-02-21 19:42:34 +00:00
|
|
|
#include "version.h"
|
|
|
|
|
|
|
|
#include "support/debug.h"
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <QHeaderView>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QPixmapCache>
|
|
|
|
#include <QScrollBar>
|
|
|
|
#include <QItemDelegate>
|
|
|
|
#include <QTreeView>
|
|
|
|
#include <QTimer>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace lyx::support;
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2008-02-22 23:15:27 +00:00
|
|
|
class RtlItemDelegate : public QItemDelegate {
|
|
|
|
public:
|
|
|
|
explicit RtlItemDelegate(QObject * parent = 0)
|
|
|
|
: QItemDelegate(parent) {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void drawDisplay(QPainter * painter,
|
|
|
|
QStyleOptionViewItem const & option,
|
|
|
|
QRect const & rect, QString const & text) const
|
|
|
|
{
|
|
|
|
// FIXME: do this more elegantly
|
|
|
|
docstring stltext = qstring_to_ucs4(text);
|
|
|
|
reverse(stltext.begin(), stltext.end());
|
|
|
|
QItemDelegate::drawDisplay(painter, option, rect, toqstr(stltext));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
|
|
|
|
class PixmapItemDelegate : public QItemDelegate {
|
|
|
|
public:
|
|
|
|
explicit PixmapItemDelegate(QObject *parent = 0)
|
|
|
|
: QItemDelegate(parent) {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void paint(QPainter *painter, const QStyleOptionViewItem &option,
|
|
|
|
const QModelIndex &index) const
|
|
|
|
{
|
2008-02-22 10:15:28 +00:00
|
|
|
QStyleOptionViewItem opt = setOptions(index, option);
|
2008-02-21 19:42:34 +00:00
|
|
|
QVariant value = index.data(Qt::DisplayRole);
|
|
|
|
QPixmap pixmap = qvariant_cast<QPixmap>(value);
|
2008-02-21 19:43:53 +00:00
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
// draw
|
|
|
|
painter->save();
|
|
|
|
drawBackground(painter, opt, index);
|
2008-02-21 19:43:53 +00:00
|
|
|
if (!pixmap.isNull()) {
|
|
|
|
const QSize size = pixmap.size();
|
|
|
|
painter->drawPixmap(option.rect.left() + (16 - size.width()) / 2,
|
|
|
|
option.rect.top() + (option.rect.height() - size.height()) / 2,
|
|
|
|
pixmap);
|
|
|
|
}
|
2008-02-21 19:42:34 +00:00
|
|
|
drawFocus(painter, opt, option.rect);
|
|
|
|
painter->restore();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class GuiCompletionModel : public QAbstractListModel {
|
|
|
|
public:
|
|
|
|
///
|
2008-02-22 23:15:27 +00:00
|
|
|
GuiCompletionModel(QObject * parent,
|
|
|
|
Inset::CompletionList const * l)
|
|
|
|
: QAbstractListModel(parent), list_(l) {}
|
2008-02-21 23:36:02 +00:00
|
|
|
///
|
|
|
|
~GuiCompletionModel()
|
|
|
|
{ delete list_; }
|
2008-02-21 19:42:34 +00:00
|
|
|
///
|
2008-02-25 01:55:50 +00:00
|
|
|
bool sorted() const
|
|
|
|
{
|
|
|
|
if (list_)
|
|
|
|
return list_->sorted();
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
///
|
2008-02-21 20:04:17 +00:00
|
|
|
int columnCount(const QModelIndex & /*parent*/ = QModelIndex()) const
|
2008-02-21 19:42:34 +00:00
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
///
|
2008-02-21 20:04:17 +00:00
|
|
|
int rowCount(const QModelIndex & /*parent*/ = QModelIndex()) const
|
2008-02-21 19:42:34 +00:00
|
|
|
{
|
2008-02-21 23:36:02 +00:00
|
|
|
if (list_ == 0)
|
2008-02-21 19:42:34 +00:00
|
|
|
return 0;
|
|
|
|
else
|
2008-02-21 23:36:02 +00:00
|
|
|
return list_->size();
|
2008-02-21 19:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
///
|
|
|
|
QVariant data(const QModelIndex & index, int role) const
|
|
|
|
{
|
2008-02-21 23:36:02 +00:00
|
|
|
if (list_ == 0)
|
2008-02-21 19:42:34 +00:00
|
|
|
return QVariant();
|
|
|
|
|
|
|
|
if (index.row() < 0 || index.row() >= rowCount())
|
|
|
|
return QVariant();
|
|
|
|
|
|
|
|
if (role != Qt::DisplayRole && role != Qt::EditRole)
|
|
|
|
return QVariant();
|
|
|
|
|
2008-02-22 23:15:27 +00:00
|
|
|
if (index.column() == 0)
|
|
|
|
return toqstr(list_->data(index.row()));
|
|
|
|
else if (index.column() == 1) {
|
2008-02-21 19:42:34 +00:00
|
|
|
// get icon from cache
|
|
|
|
QPixmap scaled;
|
2008-02-21 23:36:02 +00:00
|
|
|
QString const name = ":" + toqstr(list_->icon(index.row()));
|
2008-02-21 19:42:34 +00:00
|
|
|
if (!QPixmapCache::find("completion" + name, scaled)) {
|
|
|
|
// load icon from disk
|
|
|
|
QPixmap p = QPixmap(name);
|
2008-02-21 19:43:53 +00:00
|
|
|
if (!p.isNull()) {
|
|
|
|
// scale it to 16x16 or smaller
|
2008-02-25 13:11:09 +00:00
|
|
|
scaled = p.scaled(min(16, p.width()), min(16, p.height()),
|
2008-02-21 19:43:53 +00:00
|
|
|
Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
|
}
|
2008-02-21 19:42:34 +00:00
|
|
|
|
|
|
|
QPixmapCache::insert("completion" + name, scaled);
|
|
|
|
}
|
|
|
|
return scaled;
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2008-02-21 19:43:16 +00:00
|
|
|
///
|
2008-02-21 23:36:02 +00:00
|
|
|
Inset::CompletionList const * list_;
|
2008-02-21 19:42:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
GuiCompleter::GuiCompleter(GuiWorkArea * gui, QObject * parent)
|
2008-02-23 03:15:34 +00:00
|
|
|
: QCompleter(parent), gui_(gui), updateLock_(0),
|
|
|
|
inlineVisible_(false)
|
2008-02-21 19:42:34 +00:00
|
|
|
{
|
|
|
|
// Setup the completion popup
|
2008-02-22 23:15:27 +00:00
|
|
|
setModel(new GuiCompletionModel(this, 0));
|
2008-02-21 19:42:34 +00:00
|
|
|
setCompletionMode(QCompleter::PopupCompletion);
|
|
|
|
setWidget(gui_);
|
|
|
|
|
|
|
|
// create the popup
|
|
|
|
QTreeView *listView = new QTreeView;
|
|
|
|
listView->setEditTriggers(QAbstractItemView::NoEditTriggers);
|
|
|
|
listView->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
|
|
listView->setSelectionBehavior(QAbstractItemView::SelectRows);
|
|
|
|
listView->setSelectionMode(QAbstractItemView::SingleSelection);
|
|
|
|
listView->header()->hide();
|
|
|
|
listView->setIndentation(0);
|
2008-02-25 01:56:30 +00:00
|
|
|
listView->setUniformRowHeights(true);
|
2008-02-21 19:42:34 +00:00
|
|
|
setPopup(listView);
|
2008-02-22 23:15:27 +00:00
|
|
|
popup()->setItemDelegateForColumn(1, new PixmapItemDelegate(this));
|
2008-02-24 00:49:57 +00:00
|
|
|
rtlItemDelegate_ = new RtlItemDelegate(this);
|
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
// create timeout timers
|
|
|
|
popup_timer_.setSingleShot(true);
|
|
|
|
inline_timer_.setSingleShot(true);
|
|
|
|
connect(this, SIGNAL(highlighted(const QString &)),
|
|
|
|
this, SLOT(popupHighlighted(const QString &)));
|
|
|
|
connect(this, SIGNAL(activated(const QString &)),
|
|
|
|
this, SLOT(popupActivated(const QString &)));
|
|
|
|
connect(&popup_timer_, SIGNAL(timeout()),
|
|
|
|
this, SLOT(showPopup()));
|
|
|
|
connect(&inline_timer_, SIGNAL(timeout()),
|
|
|
|
this, SLOT(showInline()));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GuiCompleter::~GuiCompleter()
|
|
|
|
{
|
|
|
|
popup()->hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool GuiCompleter::eventFilter(QObject * watched, QEvent * e)
|
|
|
|
{
|
|
|
|
// hijack back the tab key from the popup
|
|
|
|
// (which stole it from the workspace before)
|
|
|
|
if (e->type() == QEvent::KeyPress && popupVisible()) {
|
|
|
|
QKeyEvent *ke = static_cast<QKeyEvent *>(e);
|
|
|
|
switch (ke->key()) {
|
|
|
|
case Qt::Key_Tab:
|
|
|
|
tab();
|
|
|
|
ke->accept();
|
|
|
|
return true;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return QCompleter::eventFilter(watched, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool GuiCompleter::popupPossible(Cursor const & cur) const
|
|
|
|
{
|
|
|
|
return QApplication::activeWindow()
|
|
|
|
&& gui_->hasFocus()
|
|
|
|
&& cur.inset().completionSupported(cur);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool GuiCompleter::inlinePossible(Cursor const & cur) const
|
|
|
|
{
|
|
|
|
return cur.inset().inlineCompletionSupported(cur);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool GuiCompleter::popupVisible() const
|
|
|
|
{
|
|
|
|
return popup()->isVisible();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool GuiCompleter::inlineVisible() const
|
|
|
|
{
|
2008-02-23 03:15:34 +00:00
|
|
|
// In fact using BufferView::inlineCompletionPos.empty() should be
|
|
|
|
// here. But unfortunately this information is not good enough
|
|
|
|
// because destructive operations like backspace might invalidate
|
|
|
|
// inlineCompletionPos. But then the completion should stay visible
|
|
|
|
// (i.e. reshown on the next update). Hence be keep this information
|
|
|
|
// in the inlineVisible_ variable.
|
|
|
|
return inlineVisible_;
|
2008-02-21 19:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCompleter::updateVisibility(Cursor & cur, bool start, bool keep, bool cursorInView)
|
|
|
|
{
|
|
|
|
// parameters which affect the completion
|
|
|
|
bool moved = cur != old_cursor_;
|
|
|
|
if (moved)
|
|
|
|
old_cursor_ = cur;
|
|
|
|
|
|
|
|
bool possiblePopupState = popupPossible(cur) && cursorInView;
|
|
|
|
bool possibleInlineState = inlinePossible(cur) && cursorInView;
|
|
|
|
|
|
|
|
// we moved or popup state is not ok for popup?
|
|
|
|
if ((moved && !keep) || !possiblePopupState) {
|
|
|
|
// stop an old completion timer
|
|
|
|
if (popup_timer_.isActive())
|
|
|
|
popup_timer_.stop();
|
|
|
|
|
|
|
|
// hide old popup
|
|
|
|
if (popupVisible())
|
|
|
|
popup()->hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
// we moved or inline state is not ok for inline completion?
|
|
|
|
if ((moved && !keep) || !possibleInlineState) {
|
|
|
|
// stop an old completion timer
|
|
|
|
if (inline_timer_.isActive())
|
|
|
|
inline_timer_.stop();
|
|
|
|
|
|
|
|
// hide old inline completion
|
2008-02-23 03:15:34 +00:00
|
|
|
if (inlineVisible()) {
|
2008-02-21 19:43:16 +00:00
|
|
|
gui_->bufferView().setInlineCompletion(cur, DocIterator(), docstring());
|
2008-02-23 03:15:34 +00:00
|
|
|
inlineVisible_ = false;
|
|
|
|
}
|
2008-02-21 19:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// we inserted something and are in a possible popup state?
|
|
|
|
if (!popupVisible() && possiblePopupState && start
|
|
|
|
&& cur.inset().automaticPopupCompletion())
|
2008-02-21 20:04:17 +00:00
|
|
|
popup_timer_.start(int(lyxrc.completion_popup_delay * 1000));
|
2008-02-21 19:42:34 +00:00
|
|
|
|
|
|
|
// we inserted something and are in a possible inline completion state?
|
|
|
|
if (!inlineVisible() && possibleInlineState && start
|
|
|
|
&& cur.inset().automaticInlineCompletion())
|
2008-02-21 20:04:17 +00:00
|
|
|
inline_timer_.start(int(lyxrc.completion_inline_delay * 1000));
|
2008-02-21 19:42:34 +00:00
|
|
|
|
|
|
|
// update prefix if popup is visible or if it will be visible soon
|
|
|
|
if (popupVisible() || inlineVisible()
|
|
|
|
|| popup_timer_.isActive() || inline_timer_.isActive())
|
|
|
|
updatePrefix(cur);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCompleter::updateVisibility(bool start, bool keep)
|
|
|
|
{
|
|
|
|
Cursor cur = gui_->bufferView().cursor();
|
2008-02-21 19:43:16 +00:00
|
|
|
cur.updateFlags(Update::None);
|
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
updateVisibility(cur, start, keep);
|
2008-02-21 19:43:16 +00:00
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
if (cur.disp_.update())
|
|
|
|
gui_->bufferView().processUpdateFlags(cur.disp_.update());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCompleter::updatePrefix(Cursor & cur)
|
|
|
|
{
|
|
|
|
// get new prefix. Do nothing if unchanged
|
|
|
|
QString newPrefix = toqstr(cur.inset().completionPrefix(cur));
|
|
|
|
if (newPrefix == completionPrefix())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// value which should be kept selected
|
|
|
|
QString old = currentCompletion();
|
|
|
|
if (old.length() == 0)
|
|
|
|
old = last_selection_;
|
|
|
|
|
|
|
|
// update completer to new prefix
|
|
|
|
setCompletionPrefix(newPrefix);
|
2008-02-25 13:08:51 +00:00
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
// update popup because its size might have changed
|
|
|
|
if (popupVisible())
|
|
|
|
updatePopup(cur);
|
|
|
|
|
|
|
|
// restore old selection
|
|
|
|
setCurrentCompletion(old);
|
|
|
|
|
|
|
|
// if popup is not empty, the new selection will
|
|
|
|
// be our last valid one
|
|
|
|
QString const & s = currentCompletion();
|
|
|
|
if (s.length() > 0)
|
|
|
|
last_selection_ = s;
|
|
|
|
else
|
|
|
|
last_selection_ = old;
|
|
|
|
|
|
|
|
// update inline completion because the default
|
|
|
|
// completion string might have changed
|
|
|
|
if (inlineVisible())
|
|
|
|
updateInline(cur, s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCompleter::updateInline(Cursor & cur, QString const & completion)
|
|
|
|
{
|
|
|
|
if (!cur.inset().inlineCompletionSupported(cur))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// compute postfix
|
|
|
|
docstring prefix = cur.inset().completionPrefix(cur);
|
|
|
|
docstring postfix = from_utf8(fromqstr(completion.mid(prefix.length())));
|
|
|
|
|
|
|
|
// shorten it if necessary
|
|
|
|
if (lyxrc.completion_inline_dots != -1
|
|
|
|
&& postfix.size() > unsigned(lyxrc.completion_inline_dots))
|
|
|
|
postfix = postfix.substr(0, lyxrc.completion_inline_dots - 1) + "...";
|
|
|
|
|
|
|
|
// set inline completion at cursor position
|
|
|
|
size_t uniqueTo = max(longestUniqueCompletion().size(), prefix.size());
|
2008-02-21 19:43:16 +00:00
|
|
|
gui_->bufferView().setInlineCompletion(cur, cur, postfix, uniqueTo - prefix.size());
|
2008-02-23 03:15:34 +00:00
|
|
|
inlineVisible_ = true;
|
2008-02-21 19:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCompleter::updatePopup(Cursor & cur)
|
|
|
|
{
|
|
|
|
if (!cur.inset().completionSupported(cur))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (completionCount() == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// get dimensions of completion prefix
|
|
|
|
Dimension dim;
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
cur.inset().completionPosAndDim(cur, x, y, dim);
|
2008-02-22 21:57:57 +00:00
|
|
|
|
|
|
|
// and calculate the rect of the popup
|
|
|
|
QRect rect;
|
2008-02-22 23:15:27 +00:00
|
|
|
if (popup()->layoutDirection() == Qt::RightToLeft)
|
2008-02-22 21:57:57 +00:00
|
|
|
rect = QRect(x + dim.width() - 200, y - dim.ascent() - 3, 200, dim.height() + 6);
|
|
|
|
else
|
|
|
|
rect = QRect(x, y - dim.ascent() - 3, 200, dim.height() + 6);
|
2008-02-21 19:42:34 +00:00
|
|
|
|
|
|
|
// show/update popup
|
2008-02-22 21:57:57 +00:00
|
|
|
complete(rect);
|
2008-02-21 19:42:34 +00:00
|
|
|
QTreeView * p = static_cast<QTreeView *>(popup());
|
|
|
|
p->setColumnWidth(0, popup()->width() - 22 - p->verticalScrollBar()->width());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCompleter::updateModel(Cursor & cur, bool popupUpdate, bool inlineUpdate)
|
|
|
|
{
|
|
|
|
// value which should be kept selected
|
|
|
|
QString old = currentCompletion();
|
|
|
|
if (old.length() == 0)
|
|
|
|
old = last_selection_;
|
2008-02-22 21:57:57 +00:00
|
|
|
|
|
|
|
// set whether rtl
|
|
|
|
bool rtl = false;
|
|
|
|
if (cur.inTexted()) {
|
|
|
|
Paragraph const & par = cur.paragraph();
|
|
|
|
Font const font =
|
|
|
|
par.getFontSettings(cur.bv().buffer().params(), cur.pos());
|
|
|
|
rtl = font.isVisibleRightToLeft();
|
|
|
|
}
|
|
|
|
popup()->setLayoutDirection(rtl ? Qt::RightToLeft : Qt::LeftToRight);
|
|
|
|
|
2008-02-22 23:15:27 +00:00
|
|
|
// turn the direction of the strings in the popup.
|
|
|
|
// Qt does not do that itself.
|
2008-02-24 00:49:57 +00:00
|
|
|
popup()->setItemDelegateForColumn(0, rtl ? rtlItemDelegate_ : 0);
|
2008-02-22 23:15:27 +00:00
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
// set new model
|
2008-02-25 13:11:09 +00:00
|
|
|
Inset::CompletionList const * list = cur.inset().createCompletionList(cur);
|
2008-02-22 23:15:27 +00:00
|
|
|
setModel(new GuiCompletionModel(this, list));
|
2008-02-25 01:55:50 +00:00
|
|
|
if (list->sorted())
|
|
|
|
setModelSorting(QCompleter::CaseSensitivelySortedModel);
|
|
|
|
else
|
|
|
|
setModelSorting(QCompleter::UnsortedModel);
|
2008-02-22 21:57:57 +00:00
|
|
|
|
2008-02-25 13:08:51 +00:00
|
|
|
// set prefix
|
|
|
|
QString newPrefix = toqstr(cur.inset().completionPrefix(cur));
|
|
|
|
if (newPrefix != completionPrefix())
|
|
|
|
setCompletionPrefix(newPrefix);
|
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
// show popup
|
|
|
|
if (popupUpdate)
|
|
|
|
updatePopup(cur);
|
|
|
|
|
|
|
|
// restore old selection
|
|
|
|
setCurrentCompletion(old);
|
|
|
|
|
|
|
|
// if popup is not empty, the new selection will
|
|
|
|
// be our last valid one
|
|
|
|
QString const & s = currentCompletion();
|
|
|
|
if (s.length() > 0)
|
|
|
|
last_selection_ = s;
|
|
|
|
else
|
|
|
|
last_selection_ = old;
|
2008-02-25 13:08:51 +00:00
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
// show inline completion
|
|
|
|
if (inlineUpdate)
|
|
|
|
updateInline(cur, currentCompletion());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCompleter::showPopup(Cursor & cur)
|
|
|
|
{
|
|
|
|
if (!popupPossible(cur))
|
|
|
|
return;
|
|
|
|
|
|
|
|
updateModel(cur, true, inlineVisible());
|
|
|
|
}
|
2008-02-25 13:08:51 +00:00
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
|
|
|
|
void GuiCompleter::showInline(Cursor & cur)
|
|
|
|
{
|
|
|
|
if (!inlinePossible(cur))
|
|
|
|
return;
|
|
|
|
|
|
|
|
updateModel(cur, popupVisible(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCompleter::showPopup()
|
|
|
|
{
|
|
|
|
Cursor cur = gui_->bufferView().cursor();
|
2008-02-21 19:43:16 +00:00
|
|
|
cur.updateFlags(Update::None);
|
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
showPopup(cur);
|
|
|
|
|
|
|
|
// redraw if needed
|
|
|
|
if (cur.disp_.update())
|
|
|
|
gui_->bufferView().processUpdateFlags(cur.disp_.update());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCompleter::showInline()
|
|
|
|
{
|
|
|
|
Cursor cur = gui_->bufferView().cursor();
|
2008-02-21 19:43:16 +00:00
|
|
|
cur.updateFlags(Update::None);
|
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
showInline(cur);
|
|
|
|
|
|
|
|
// redraw if needed
|
|
|
|
if (cur.disp_.update())
|
|
|
|
gui_->bufferView().processUpdateFlags(cur.disp_.update());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCompleter::activate()
|
|
|
|
{
|
|
|
|
if (!popupVisible() && !inlineVisible())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Complete with current selection in the popup.
|
|
|
|
QString s = currentCompletion();
|
|
|
|
popup()->hide();
|
|
|
|
popupActivated(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCompleter::tab()
|
|
|
|
{
|
|
|
|
BufferView * bv = &gui_->bufferView();
|
2008-02-21 19:43:16 +00:00
|
|
|
Cursor cur = bv->cursor();
|
|
|
|
cur.updateFlags(Update::None);
|
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
// check that inline completion is active
|
|
|
|
if (!inlineVisible()) {
|
|
|
|
// try to activate the inline completion
|
|
|
|
if (cur.inset().inlineCompletionSupported(cur)) {
|
|
|
|
showInline();
|
2008-02-21 19:44:28 +00:00
|
|
|
|
|
|
|
// show popup without delay because the completion was not unique
|
|
|
|
if (lyxrc.completion_popup_after_complete
|
|
|
|
&& !popupVisible()
|
|
|
|
&& popup()->model()->rowCount() > 1)
|
|
|
|
popup_timer_.start(0);
|
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// or try popup
|
|
|
|
if (!popupVisible() && cur.inset().completionSupported(cur)) {
|
|
|
|
showPopup();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If completion is active, at least complete by one character
|
|
|
|
docstring prefix = cur.inset().completionPrefix(cur);
|
|
|
|
docstring completion = from_utf8(fromqstr(currentCompletion()));
|
|
|
|
if (completion.size() <= prefix.size()) {
|
|
|
|
// finalize completion
|
|
|
|
cur.inset().insertCompletion(cur, docstring(), true);
|
2008-02-23 03:15:34 +00:00
|
|
|
|
|
|
|
// hide popup and inline completion
|
2008-02-21 19:42:34 +00:00
|
|
|
popup()->hide();
|
2008-02-23 03:15:34 +00:00
|
|
|
gui_->bufferView().setInlineCompletion(cur, DocIterator(), docstring());
|
|
|
|
inlineVisible_ = false;
|
2008-02-21 19:42:34 +00:00
|
|
|
updateVisibility(false, false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
docstring nextchar = completion.substr(prefix.size(), 1);
|
|
|
|
if (!cur.inset().insertCompletion(cur, nextchar, false))
|
|
|
|
return;
|
|
|
|
updatePrefix(cur);
|
|
|
|
|
|
|
|
// try to complete as far as it is unique
|
|
|
|
docstring longestCompletion = longestUniqueCompletion();
|
|
|
|
prefix = cur.inset().completionPrefix(cur);
|
|
|
|
docstring postfix = longestCompletion.substr(min(longestCompletion.size(), prefix.size()));
|
|
|
|
cur.inset().insertCompletion(cur, postfix, false);
|
|
|
|
old_cursor_ = bv->cursor();
|
|
|
|
updatePrefix(cur);
|
|
|
|
|
|
|
|
// show popup without delay because the completion was not unique
|
|
|
|
if (lyxrc.completion_popup_after_complete
|
|
|
|
&& !popupVisible()
|
|
|
|
&& popup()->model()->rowCount() > 1)
|
|
|
|
popup_timer_.start(0);
|
|
|
|
|
|
|
|
// redraw if needed
|
|
|
|
if (cur.disp_.update())
|
|
|
|
gui_->bufferView().processUpdateFlags(cur.disp_.update());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString GuiCompleter::currentCompletion() const
|
|
|
|
{
|
|
|
|
if (!popup()->selectionModel()->hasSelection())
|
|
|
|
return QString();
|
|
|
|
|
|
|
|
// Not sure if this is bug in Qt: currentIndex() always
|
|
|
|
// return the first element in the list.
|
|
|
|
QModelIndex idx = popup()->currentIndex();
|
|
|
|
return popup()->model()->data(idx, Qt::EditRole).toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCompleter::setCurrentCompletion(QString const & s)
|
2008-02-21 19:43:16 +00:00
|
|
|
{
|
2008-02-21 19:42:34 +00:00
|
|
|
QAbstractItemModel const & model = *popup()->model();
|
|
|
|
size_t n = model.rowCount();
|
|
|
|
if (n == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// select the first if s is empty
|
|
|
|
if (s.length() == 0) {
|
2008-02-21 19:43:16 +00:00
|
|
|
updateLock_++;
|
2008-02-21 19:42:34 +00:00
|
|
|
popup()->setCurrentIndex(model.index(0, 0));
|
2008-02-21 19:43:16 +00:00
|
|
|
updateLock_--;
|
2008-02-21 19:42:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-02-25 01:56:30 +00:00
|
|
|
// find old selection in model
|
2008-02-21 19:42:34 +00:00
|
|
|
size_t i;
|
2008-02-25 01:56:30 +00:00
|
|
|
if (modelSorting() == QCompleter::UnsortedModel) {
|
|
|
|
// In unsorted models, iterate through list until the s is found
|
|
|
|
for (i = 0; i < n; ++i) {
|
|
|
|
QString const & is
|
|
|
|
= model.data(model.index(i, 0), Qt::EditRole).toString();
|
|
|
|
if (is == s)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// In sorted models, do binary search for s.
|
|
|
|
i = 0;
|
|
|
|
size_t r = n - 1;
|
2008-02-25 15:09:45 +00:00
|
|
|
while (r >= i && i < n) {
|
2008-02-25 01:56:30 +00:00
|
|
|
size_t mid = (r + i) / 2;
|
|
|
|
QString const & mids
|
|
|
|
= model.data(model.index(mid, 0),
|
|
|
|
Qt::EditRole).toString();
|
|
|
|
|
|
|
|
// left or right?
|
|
|
|
// FIXME: is this really the same order that the docstring
|
|
|
|
// from the CompletionList has?
|
2008-02-25 15:09:45 +00:00
|
|
|
int c = s.compare(mids, Qt::CaseSensitive);
|
2008-02-25 01:56:30 +00:00
|
|
|
if (c == 0) {
|
|
|
|
i = mid;
|
|
|
|
break;
|
2008-02-25 15:09:45 +00:00
|
|
|
} else if (i == r) {
|
|
|
|
i = n;
|
|
|
|
break;
|
2008-02-25 01:56:30 +00:00
|
|
|
} else if (c > 0)
|
|
|
|
// middle is not far enough
|
|
|
|
i = mid + 1;
|
|
|
|
else
|
|
|
|
// middle is too far
|
2008-02-25 15:09:45 +00:00
|
|
|
r = mid - 1;
|
|
|
|
}
|
2008-02-25 13:08:51 +00:00
|
|
|
|
2008-02-25 15:09:45 +00:00
|
|
|
// loop was left without finding anything
|
|
|
|
if (r < i)
|
2008-02-25 13:08:51 +00:00
|
|
|
i = n;
|
2008-02-21 19:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// select the first if none was found
|
|
|
|
if (i == n)
|
|
|
|
i = 0;
|
|
|
|
|
2008-02-21 19:43:16 +00:00
|
|
|
updateLock_++;
|
2008-02-21 19:42:34 +00:00
|
|
|
popup()->setCurrentIndex(model.index(i, 0));
|
2008-02-21 19:43:16 +00:00
|
|
|
updateLock_--;
|
2008-02-21 19:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-25 01:56:30 +00:00
|
|
|
size_t commonPrefix(QString const & s1, QString const & s2)
|
|
|
|
{
|
|
|
|
// find common prefix
|
|
|
|
size_t j;
|
|
|
|
size_t n1 = s1.length();
|
|
|
|
size_t n2 = s2.length();
|
|
|
|
for (j = 0; j < n1 && j < n2; ++j) {
|
|
|
|
if (s1.at(j) != s2.at(j))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return j;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
docstring GuiCompleter::longestUniqueCompletion() const
|
|
|
|
{
|
2008-02-21 19:42:34 +00:00
|
|
|
QAbstractItemModel const & model = *popup()->model();
|
|
|
|
QString s = currentCompletion();
|
|
|
|
size_t n = model.rowCount();
|
|
|
|
|
2008-02-25 01:56:30 +00:00
|
|
|
if (modelSorting() == QCompleter::UnsortedModel) {
|
|
|
|
// For unsorted model we cannot do more than iteration.
|
|
|
|
// Iterate through the completions and cut off where s differs
|
|
|
|
for (size_t i = 0; i < n && s.length() > 0; ++i) {
|
|
|
|
QString const & is
|
|
|
|
= model.data(model.index(i, 0), Qt::EditRole).toString();
|
|
|
|
|
|
|
|
s = s.left(commonPrefix(is, s));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// For sorted models we can do binary search multiple times,
|
|
|
|
// each time to find the first string which has s not as prefix.
|
|
|
|
size_t i = 0;
|
|
|
|
while (i < n && s.length() > 0) {
|
|
|
|
// find first string that does not have s as prefix
|
|
|
|
// via binary search in [i,n-1]
|
|
|
|
size_t r = n - 1;
|
|
|
|
do {
|
|
|
|
// get common prefix with the middle string
|
|
|
|
size_t mid = (r + i) / 2;
|
|
|
|
QString const & mids
|
|
|
|
= model.data(model.index(mid, 0),
|
|
|
|
Qt::EditRole).toString();
|
2008-02-25 02:09:39 +00:00
|
|
|
size_t oldLen = s.length();
|
|
|
|
size_t len = commonPrefix(mids, s);
|
|
|
|
s = s.left(len);
|
2008-02-25 01:56:30 +00:00
|
|
|
|
|
|
|
// left or right?
|
2008-02-25 02:09:39 +00:00
|
|
|
if (oldLen == len) {
|
2008-02-25 01:56:30 +00:00
|
|
|
// middle is not far enough
|
|
|
|
i = mid + 1;
|
|
|
|
} else {
|
|
|
|
// middle is maybe too far
|
|
|
|
r = mid;
|
|
|
|
}
|
|
|
|
} while (r - i > 0 && i < n);
|
2008-02-21 19:42:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return from_utf8(fromqstr(s));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCompleter::popupActivated(const QString & completion)
|
|
|
|
{
|
2008-02-21 19:43:16 +00:00
|
|
|
Cursor cur = gui_->bufferView().cursor();
|
|
|
|
cur.updateFlags(Update::None);
|
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
docstring prefix = cur.inset().completionPrefix(cur);
|
|
|
|
docstring postfix = from_utf8(fromqstr(completion.mid(prefix.length())));
|
|
|
|
cur.inset().insertCompletion(cur, postfix, true);
|
|
|
|
updateVisibility(cur, false);
|
2008-02-21 19:43:16 +00:00
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
if (cur.disp_.update())
|
|
|
|
gui_->bufferView().processUpdateFlags(cur.disp_.update());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCompleter::popupHighlighted(const QString & completion)
|
|
|
|
{
|
2008-02-21 19:43:16 +00:00
|
|
|
if (updateLock_ > 0)
|
|
|
|
return;
|
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
Cursor cur = gui_->bufferView().cursor();
|
2008-02-21 19:43:16 +00:00
|
|
|
cur.updateFlags(Update::None);
|
|
|
|
|
2008-02-26 13:08:52 +00:00
|
|
|
if (inlineVisible())
|
|
|
|
updateInline(cur, completion);
|
2008-02-21 19:43:16 +00:00
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
if (cur.disp_.update())
|
|
|
|
gui_->bufferView().processUpdateFlags(cur.disp_.update());
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#include "GuiCompleter_moc.cpp"
|