Files
qt-creator/src/plugins/help/openpagesswitcher.cpp
Eike Ziller da18fc1f50 Help: Use nullptr and fix a few warnings
Change-Id: I7f7307a765d8755bf96b0cad1210e61df0a0199f
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
2018-04-19 12:07:59 +00:00

164 lines
5.1 KiB
C++

/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://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 https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
****************************************************************************/
#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;
OpenPagesSwitcher::OpenPagesSwitcher(OpenPagesModel *model)
: QFrame(nullptr, 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);
}
OpenPagesSwitcher::~OpenPagesSwitcher()
{
}
void OpenPagesSwitcher::gotoNextPage()
{
selectPageUpDown(-1);
}
void OpenPagesSwitcher::gotoPreviousPage()
{
selectPageUpDown(1);
}
void OpenPagesSwitcher::selectAndHide()
{
setVisible(false);
emit setCurrentPage(m_openPagesWidget->currentIndex());
}
void OpenPagesSwitcher::selectCurrentPage()
{
m_openPagesWidget->selectCurrentPage();
}
void OpenPagesSwitcher::setVisible(bool visible)
{
QWidget::setVisible(visible);
if (visible)
setFocus();
}
void OpenPagesSwitcher::focusInEvent(QFocusEvent *event)
{
Q_UNUSED(event)
m_openPagesWidget->setFocus();
}
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);
}
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);
}
}