2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-03-29 14:57:02 +02:00
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2010-03-29 14:57:02 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-03-29 14:57:02 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2010-03-29 14:57:02 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-03-29 14:57:02 +02:00
|
|
|
|
|
|
|
|
#include "openpageswidget.h"
|
2010-04-12 14:55:41 +02:00
|
|
|
|
|
|
|
|
#include "centralwidget.h"
|
2010-03-29 14:57:02 +02:00
|
|
|
#include "openpagesmodel.h"
|
|
|
|
|
|
2010-07-30 22:16:59 +02:00
|
|
|
#include <coreplugin/coreconstants.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QApplication>
|
|
|
|
|
#include <QPainter>
|
2010-03-29 14:57:02 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QHeaderView>
|
|
|
|
|
#include <QKeyEvent>
|
|
|
|
|
#include <QMouseEvent>
|
|
|
|
|
#include <QMenu>
|
2010-03-29 14:57:02 +02:00
|
|
|
|
|
|
|
|
using namespace Help::Internal;
|
|
|
|
|
|
|
|
|
|
// -- OpenPagesDelegate
|
|
|
|
|
|
|
|
|
|
OpenPagesDelegate::OpenPagesDelegate(QObject *parent)
|
|
|
|
|
: QStyledItemDelegate(parent)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void OpenPagesDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option,
|
|
|
|
|
const QModelIndex &index) const
|
|
|
|
|
{
|
|
|
|
|
if (option.state & QStyle::State_MouseOver) {
|
|
|
|
|
if ((QApplication::mouseButtons() & Qt::LeftButton) == 0)
|
|
|
|
|
pressedIndex = QModelIndex();
|
|
|
|
|
QBrush brush = option.palette.alternateBase();
|
|
|
|
|
if (index == pressedIndex)
|
|
|
|
|
brush = option.palette.dark();
|
|
|
|
|
painter->fillRect(option.rect, brush);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QStyledItemDelegate::paint(painter, option, index);
|
|
|
|
|
|
2010-04-26 11:56:37 +02:00
|
|
|
if (index.column() == 1 && index.model()->rowCount() > 1
|
|
|
|
|
&& option.state & QStyle::State_MouseOver) {
|
2010-07-30 22:16:59 +02:00
|
|
|
const QIcon icon(QLatin1String((option.state & QStyle::State_Selected) ?
|
2014-08-01 15:14:15 +02:00
|
|
|
Core::Constants::ICON_CLOSE_BUTTON : Core::Constants::ICON_DARK_CLOSE_BUTTON));
|
2010-03-29 14:57:02 +02:00
|
|
|
|
|
|
|
|
const QRect iconRect(option.rect.right() - option.rect.height(),
|
|
|
|
|
option.rect.top(), option.rect.height(), option.rect.height());
|
|
|
|
|
|
|
|
|
|
icon.paint(painter, iconRect, Qt::AlignRight | Qt::AlignVCenter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -- OpenPagesWidget
|
|
|
|
|
|
2010-04-12 14:55:41 +02:00
|
|
|
OpenPagesWidget::OpenPagesWidget(OpenPagesModel *model, QWidget *parent)
|
|
|
|
|
: QTreeView(parent)
|
|
|
|
|
, m_allowContextMenu(true)
|
2010-03-29 14:57:02 +02:00
|
|
|
{
|
|
|
|
|
setModel(model);
|
|
|
|
|
setIndentation(0);
|
|
|
|
|
setItemDelegate((m_delegate = new OpenPagesDelegate(this)));
|
|
|
|
|
|
|
|
|
|
setTextElideMode(Qt::ElideMiddle);
|
|
|
|
|
setAttribute(Qt::WA_MacShowFocusRect, false);
|
|
|
|
|
|
|
|
|
|
viewport()->setAttribute(Qt::WA_Hover);
|
|
|
|
|
setSelectionBehavior(QAbstractItemView::SelectRows);
|
|
|
|
|
setSelectionMode(QAbstractItemView::SingleSelection);
|
|
|
|
|
|
|
|
|
|
header()->hide();
|
|
|
|
|
header()->setStretchLastSection(false);
|
2014-08-28 17:33:47 +02:00
|
|
|
header()->setSectionResizeMode(0, QHeaderView::Stretch);
|
|
|
|
|
header()->setSectionResizeMode(1, QHeaderView::Fixed);
|
2010-03-29 17:27:04 +02:00
|
|
|
header()->resizeSection(1, 18);
|
2010-03-29 14:57:02 +02:00
|
|
|
|
|
|
|
|
installEventFilter(this);
|
|
|
|
|
setUniformRowHeights(true);
|
|
|
|
|
setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
|
|
|
|
|
|
connect(this, SIGNAL(clicked(QModelIndex)), this,
|
|
|
|
|
SLOT(handleClicked(QModelIndex)));
|
|
|
|
|
connect(this, SIGNAL(pressed(QModelIndex)), this,
|
|
|
|
|
SLOT(handlePressed(QModelIndex)));
|
|
|
|
|
connect(this, SIGNAL(customContextMenuRequested(QPoint)), this,
|
|
|
|
|
SLOT(contextMenuRequested(QPoint)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
OpenPagesWidget::~OpenPagesWidget()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-12 14:55:41 +02:00
|
|
|
void OpenPagesWidget::selectCurrentPage()
|
|
|
|
|
{
|
|
|
|
|
QItemSelectionModel * const selModel = selectionModel();
|
|
|
|
|
selModel->clearSelection();
|
|
|
|
|
selModel->select(model()->index(CentralWidget::instance()->currentIndex(), 0),
|
|
|
|
|
QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows);
|
|
|
|
|
scrollTo(currentIndex());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void OpenPagesWidget::allowContextMenu(bool ok)
|
|
|
|
|
{
|
|
|
|
|
m_allowContextMenu = ok;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-29 14:57:02 +02:00
|
|
|
// -- private slots
|
|
|
|
|
|
|
|
|
|
void OpenPagesWidget::contextMenuRequested(QPoint pos)
|
|
|
|
|
{
|
2010-04-26 11:56:37 +02:00
|
|
|
QModelIndex index = indexAt(pos);
|
2010-04-12 14:55:41 +02:00
|
|
|
if (!index.isValid() || !m_allowContextMenu)
|
2010-03-29 14:57:02 +02:00
|
|
|
return;
|
|
|
|
|
|
2010-04-26 11:56:37 +02:00
|
|
|
if (index.column() == 1)
|
|
|
|
|
index = index.sibling(index.row(), 0);
|
2010-03-29 14:57:02 +02:00
|
|
|
QMenu contextMenu;
|
|
|
|
|
QAction *closeEditor = contextMenu.addAction(tr("Close %1").arg(index.data()
|
|
|
|
|
.toString()));
|
|
|
|
|
QAction *closeOtherEditors = contextMenu.addAction(tr("Close All Except %1")
|
|
|
|
|
.arg(index.data().toString()));
|
|
|
|
|
|
|
|
|
|
if (model()->rowCount() == 1) {
|
|
|
|
|
closeEditor->setEnabled(false);
|
|
|
|
|
closeOtherEditors->setEnabled(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAction *action = contextMenu.exec(mapToGlobal(pos));
|
|
|
|
|
if (action == closeEditor)
|
|
|
|
|
emit closePage(index);
|
|
|
|
|
else if (action == closeOtherEditors)
|
|
|
|
|
emit closePagesExcept(index);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void OpenPagesWidget::handlePressed(const QModelIndex &index)
|
|
|
|
|
{
|
|
|
|
|
if (index.column() == 0)
|
|
|
|
|
emit setCurrentPage(index);
|
|
|
|
|
|
|
|
|
|
if (index.column() == 1)
|
|
|
|
|
m_delegate->pressedIndex = index;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void OpenPagesWidget::handleClicked(const QModelIndex &index)
|
|
|
|
|
{
|
|
|
|
|
// implemented here to handle the funky close button and to work around a
|
|
|
|
|
// bug in item views where the delegate wouldn't get the QStyle::State_MouseOver
|
|
|
|
|
if (index.column() == 1) {
|
|
|
|
|
if (model()->rowCount() > 1)
|
|
|
|
|
emit closePage(index);
|
|
|
|
|
|
|
|
|
|
QWidget *vp = viewport();
|
|
|
|
|
const QPoint &cursorPos = QCursor::pos();
|
|
|
|
|
QMouseEvent e(QEvent::MouseMove, vp->mapFromGlobal(cursorPos), cursorPos,
|
|
|
|
|
Qt::NoButton, 0, 0);
|
|
|
|
|
QCoreApplication::sendEvent(vp, &e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -- private
|
|
|
|
|
|
|
|
|
|
bool OpenPagesWidget::eventFilter(QObject *obj, QEvent *event)
|
|
|
|
|
{
|
|
|
|
|
if (obj == this && event->type() == QEvent::KeyPress) {
|
|
|
|
|
if (currentIndex().isValid()) {
|
|
|
|
|
QKeyEvent *ke = static_cast<QKeyEvent*>(event);
|
|
|
|
|
const int key = ke->key();
|
|
|
|
|
if ((key == Qt::Key_Return || key == Qt::Key_Enter || key == Qt::Key_Space)
|
|
|
|
|
&& ke->modifiers() == 0) {
|
|
|
|
|
emit setCurrentPage(currentIndex());
|
|
|
|
|
} else if ((key == Qt::Key_Delete || key == Qt::Key_Backspace)
|
|
|
|
|
&& ke->modifiers() == 0 && model()->rowCount() > 1) {
|
|
|
|
|
emit closePage(currentIndex());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return QWidget::eventFilter(obj, event);
|
|
|
|
|
}
|