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

173 lines
5.1 KiB
C++
Raw Normal View History

/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
**
** GNU Lesser General Public License Usage
**
2011-04-13 08:42:33 +02:00
** 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.
**
2010-12-17 16:01:08 +01:00
** In addition, as a special exception, Nokia gives you certain additional
2011-04-13 08:42:33 +02:00
** rights. These rights are described in the Nokia Qt LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
2011-04-13 08:42:33 +02:00
** Other Usage
**
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
2010-12-17 16:01:08 +01:00
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
**
**************************************************************************/
2010-04-12 16:43:23 +02:00
#include "openpagesswitcher.h"
#include "centralwidget.h"
#include "openpagesmodel.h"
#include "openpageswidget.h"
#include <QtCore/QEvent>
#include <QtGui/QKeyEvent>
#include <QtGui/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.
#ifndef Q_OS_MAC
setFrameStyle(m_openPagesWidget->frameStyle());
#endif
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, SIGNAL(closePage(QModelIndex)), this,
SIGNAL(closePage(QModelIndex)));
connect(m_openPagesWidget, SIGNAL(setCurrentPage(QModelIndex)), this,
SIGNAL(setCurrentPage(QModelIndex)));
}
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;
}
#ifdef Q_OS_MAC
2010-09-07 14:34:38 +02:00
const Qt::KeyboardModifier modifier = Qt::AltModifier;
#else
const Qt::KeyboardModifier modifier = Qt::ControlModifier;
#endif
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);
}
}