Files
qt-creator/src/plugins/help/openpagesswitcher.cpp

169 lines
5.4 KiB
C++
Raw Normal View History

/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing
**
** This file is part of Qt Creator.
**
** 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 The Qt Company. For licensing terms and
** conditions see http://www.qt.io/terms-conditions. For further information
** use the contact form at http://www.qt.io/contact-us.
**
** 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 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, The Qt Company gives you certain additional
** rights. These rights are described in The Qt Company LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
2010-04-12 16:43:23 +02:00
#include "openpagesswitcher.h"
#include "centralwidget.h"
#include "openpagesmodel.h"
#include "openpageswidget.h"
#include <utils/hostosinfo.h>
#include <QEvent>
#include <QKeyEvent>
#include <QVBoxLayout>
using namespace Help::Internal;
const int gWidth = 300;
const int gHeight = 200;
2010-04-12 16:43:23 +02:00
OpenPagesSwitcher::OpenPagesSwitcher(OpenPagesModel *model)
: QFrame(0, Qt::Popup)
, m_openPagesModel(model)
{
resize(gWidth, gHeight);
m_openPagesWidget = new OpenPagesWidget(m_openPagesModel, this);
// We disable the frame on this list view and use a QFrame around it instead.
// This improves the look with QGTKStyle.
if (!Utils::HostOsInfo::isMacHost())
setFrameStyle(m_openPagesWidget->frameStyle());
m_openPagesWidget->setFrameStyle(QFrame::NoFrame);
m_openPagesWidget->allowContextMenu(false);
m_openPagesWidget->installEventFilter(this);
QVBoxLayout *layout = new QVBoxLayout(this);
layout->setMargin(0);
layout->addWidget(m_openPagesWidget);
connect(m_openPagesWidget, &OpenPagesWidget::closePage,
this, &OpenPagesSwitcher::closePage);
connect(m_openPagesWidget, &OpenPagesWidget::setCurrentPage,
this, &OpenPagesSwitcher::setCurrentPage);
}
2010-04-12 16:43:23 +02:00
OpenPagesSwitcher::~OpenPagesSwitcher()
{
}
2010-04-12 16:43:23 +02:00
void OpenPagesSwitcher::gotoNextPage()
{
selectPageUpDown(-1);
}
2010-04-12 16:43:23 +02:00
void OpenPagesSwitcher::gotoPreviousPage()
{
selectPageUpDown(1);
}
2010-04-12 16:43:23 +02:00
void OpenPagesSwitcher::selectAndHide()
{
setVisible(false);
emit setCurrentPage(m_openPagesWidget->currentIndex());
}
2010-04-12 16:43:23 +02:00
void OpenPagesSwitcher::selectCurrentPage()
{
m_openPagesWidget->selectCurrentPage();
}
2010-04-12 16:43:23 +02:00
void OpenPagesSwitcher::setVisible(bool visible)
{
QWidget::setVisible(visible);
if (visible)
setFocus();
}
2010-04-12 16:43:23 +02:00
void OpenPagesSwitcher::focusInEvent(QFocusEvent *event)
{
Q_UNUSED(event)
m_openPagesWidget->setFocus();
}
2010-04-12 16:43:23 +02:00
bool OpenPagesSwitcher::eventFilter(QObject *object, QEvent *event)
{
if (object == m_openPagesWidget) {
if (event->type() == QEvent::KeyPress) {
QKeyEvent *ke = static_cast<QKeyEvent*>(event);
if (ke->key() == Qt::Key_Escape) {
setVisible(false);
return true;
}
const int key = ke->key();
if (key == Qt::Key_Return || key == Qt::Key_Enter || key == Qt::Key_Space) {
emit setCurrentPage(m_openPagesWidget->currentIndex());
return true;
}
const Qt::KeyboardModifiers modifier = Utils::HostOsInfo::isMacHost()
? Qt::AltModifier : Qt::ControlModifier;
if (key == Qt::Key_Backtab
&& (ke->modifiers() == (modifier | Qt::ShiftModifier)))
gotoNextPage();
else if (key == Qt::Key_Tab && (ke->modifiers() == modifier))
gotoPreviousPage();
} else if (event->type() == QEvent::KeyRelease) {
QKeyEvent *ke = static_cast<QKeyEvent*>(event);
if (ke->modifiers() == 0
/*HACK this is to overcome some event inconsistencies between platforms*/
|| (ke->modifiers() == Qt::AltModifier
&& (ke->key() == Qt::Key_Alt || ke->key() == -1))) {
selectAndHide();
}
}
}
return QWidget::eventFilter(object, event);
}
2010-04-12 16:43:23 +02:00
void OpenPagesSwitcher::selectPageUpDown(int summand)
{
const int pageCount = m_openPagesModel->rowCount();
if (pageCount < 2)
return;
const QModelIndexList &list = m_openPagesWidget->selectionModel()->selectedIndexes();
if (list.isEmpty())
return;
QModelIndex index = list.first();
if (!index.isValid())
return;
index = m_openPagesModel->index((index.row() + summand + pageCount) % pageCount, 0);
if (index.isValid()) {
m_openPagesWidget->setCurrentIndex(index);
m_openPagesWidget->scrollTo(index, QAbstractItemView::PositionAtCenter);
}
}