Newer
Older
/**************************************************************************
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Nokia Corporation (qt-info@nokia.com)
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
** If you are unsure which license is appropriate for your use, please
**************************************************************************/
#include "completionwidget.h"
#include "completionsupport.h"
#include "icompletioncollector.h"
#include <texteditor/itexteditable.h>
#include <QtGui/QDesktopWidget>
#include <QtGui/QKeyEvent>
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#include <QtGui/QVBoxLayout>
#include <limits.h>
using namespace TextEditor;
using namespace TextEditor::Internal;
#define NUMBER_OF_VISIBLE_ITEMS 10
class AutoCompletionModel : public QAbstractListModel
{
public:
AutoCompletionModel(QObject *parent, const QList<CompletionItem> &items);
inline const CompletionItem &itemAt(const QModelIndex &index) const
{ return m_items.at(index.row()); }
void setItems(const QList<CompletionItem> &items);
int rowCount(const QModelIndex &parent = QModelIndex()) const;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
private:
QList<CompletionItem> m_items;
};
AutoCompletionModel::AutoCompletionModel(QObject *parent, const QList<CompletionItem> &items)
: QAbstractListModel(parent)
{
m_items = items;
}
void AutoCompletionModel::setItems(const QList<CompletionItem> &items)
{
m_items = items;
reset();
}
int AutoCompletionModel::rowCount(const QModelIndex &) const
{
return m_items.count();
}
QVariant AutoCompletionModel::data(const QModelIndex &index, int role) const
{
if (index.row() >= m_items.count())
return QVariant();
if (role == Qt::DisplayRole) {
return itemAt(index).m_text;
} else if (role == Qt::DecorationRole) {
return itemAt(index).m_icon;
} else if (role == Qt::ToolTipRole) {
return itemAt(index).m_details;
}
return QVariant();
}
CompletionWidget::CompletionWidget(CompletionSupport *support, ITextEditable *editor)
: QListView(),
m_blockFocusOut(false),
m_editor(editor),
m_editorWidget(editor->widget()),
m_model(0),
m_support(support)
{
setUniformItemSizes(true);
setSelectionBehavior(QAbstractItemView::SelectItems);
setSelectionMode(QAbstractItemView::SingleSelection);
connect(this, SIGNAL(activated(const QModelIndex &)),
this, SLOT(completionActivated(const QModelIndex &)));
// We disable the frame on this list view and use a QFrame around it instead.
// This fixes the missing frame on Mac and improves the look with QGTKStyle.
m_popupFrame = new QFrame(0, Qt::Popup);
m_popupFrame->setFrameStyle(frameStyle());
setFrameStyle(QFrame::NoFrame);
setParent(m_popupFrame);
m_popupFrame->setObjectName("m_popupFrame");
m_popupFrame->setAttribute(Qt::WA_DeleteOnClose);
QVBoxLayout *layout = new QVBoxLayout(m_popupFrame);
layout->setMargin(0);
layout->addWidget(this);
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
m_popupFrame->setMinimumSize(1, 1);
setMinimumSize(1, 1);
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
}
bool CompletionWidget::event(QEvent *e)
{
if (m_blockFocusOut)
return QListView::event(e);
bool forwardKeys = true;
if (e->type() == QEvent::FocusOut) {
closeList();
return true;
} else if (e->type() == QEvent::KeyPress) {
QKeyEvent *ke = static_cast<QKeyEvent *>(e);
switch (ke->key()) {
case Qt::Key_Escape:
closeList();
return true;
case Qt::Key_Right:
case Qt::Key_Left:
break;
case Qt::Key_Tab:
case Qt::Key_Return:
//independently from style, accept current entry if return is pressed
closeList(currentIndex());
return true;
case Qt::Key_Up:
case Qt::Key_Down:
case Qt::Key_Enter:
case Qt::Key_PageDown:
case Qt::Key_PageUp:
forwardKeys = false;
break;
default:
break;
}
m_blockFocusOut = true;
QApplication::sendEvent(m_editorWidget, e);
m_blockFocusOut = false;
// Have the completion support update the list of items
m_support->autoComplete(m_editor, false);
return true;
}
}
return QListView::event(e);
}
void CompletionWidget::keyboardSearch(const QString &search)
{
}
void CompletionWidget::closeList(const QModelIndex &index)
{
m_blockFocusOut = true;
if (index.isValid())
emit itemSelected(m_model->itemAt(index));
close();
if (m_popupFrame) {
m_popupFrame->close();
m_popupFrame = 0;
}
emit completionListClosed();
m_blockFocusOut = false;
}
void CompletionWidget::setQuickFix(bool quickFix)
{
m_quickFix = quickFix;
}
void CompletionWidget::setCompletionItems(const QList<TextEditor::CompletionItem> &completionItems)
{
if (!m_model) {
m_model = new AutoCompletionModel(this, completionItems);
setModel(m_model);
} else {
m_model->setItems(completionItems);
}
// Select the first of the most relevant completion items
int relevance = INT_MIN;
int mostRelevantIndex = 0;
for (int i = 0; i < completionItems.size(); ++i) {
const CompletionItem &item = completionItems.at(i);
if (item.m_relevance > relevance) {
relevance = item.m_relevance;
mostRelevantIndex = i;
}
}
setCurrentIndex(m_model->index(mostRelevantIndex));
}
void CompletionWidget::showCompletions(int startPos)
{
updatePositionAndSize(startPos);
void CompletionWidget::updatePositionAndSize(int startPos)
// Determine size by calculating the space of the visible items
int visibleItems = m_model->rowCount();
if (visibleItems > NUMBER_OF_VISIBLE_ITEMS)
visibleItems = NUMBER_OF_VISIBLE_ITEMS;
const QStyleOptionViewItem &option = viewOptions();
QSize shint;
for (int i = 0; i < visibleItems; ++i) {
QSize tmp = itemDelegate()->sizeHint(option, m_model->index(i));
if (shint.width() < tmp.width())
shint = tmp;
}
const int frameWidth = m_popupFrame->frameWidth();
const int width = shint.width() + frameWidth * 2 + 30;
const int height = shint.height() * visibleItems + frameWidth * 2;
// Determine the position, keeping the popup on the screen
const QRect cursorRect = m_editor->cursorRect(startPos);
const QDesktopWidget *desktop = QApplication::desktop();
const QRect screen = desktop->availableGeometry(desktop->screenNumber(m_editorWidget));
const QRect screen = desktop->screenGeometry(desktop->screenNumber(m_editorWidget));
QPoint pos = cursorRect.bottomLeft();
pos.rx() -= 16 + frameWidth; // Space for the icons
if (pos.y() + height > screen.bottom())
pos.setY(cursorRect.top() - height);
if (pos.x() + width > screen.right())
pos.setX(screen.right() - width);
m_popupFrame->setGeometry(pos.x(), pos.y(), width, height);