2010-04-12 14:55:41 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** Commercial Usage
|
|
|
|
|
**
|
|
|
|
|
** 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
|
|
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2010-04-12 16:43:23 +02:00
|
|
|
#include "openpagesswitcher.h"
|
2010-04-12 14:55:41 +02:00
|
|
|
|
|
|
|
|
#include "centralwidget.h"
|
|
|
|
|
#include "openpagesmodel.h"
|
|
|
|
|
#include "openpageswidget.h"
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QEvent>
|
|
|
|
|
|
|
|
|
|
#include <QtGui/QKeyEvent>
|
|
|
|
|
|
|
|
|
|
using namespace Help::Internal;
|
|
|
|
|
|
|
|
|
|
const int gWidth = 300;
|
|
|
|
|
const int gHeight = 200;
|
|
|
|
|
|
2010-04-12 16:43:23 +02:00
|
|
|
OpenPagesSwitcher::OpenPagesSwitcher(OpenPagesModel *model)
|
2010-04-12 14:55:41 +02:00
|
|
|
: QWidget(0, Qt::Popup)
|
|
|
|
|
, m_openPagesModel(model)
|
|
|
|
|
{
|
|
|
|
|
resize(gWidth, gHeight);
|
|
|
|
|
|
|
|
|
|
m_openPagesWidget = new OpenPagesWidget(m_openPagesModel, this);
|
|
|
|
|
|
|
|
|
|
m_openPagesWidget->allowContextMenu(false);
|
|
|
|
|
m_openPagesWidget->installEventFilter(this);
|
2010-04-13 15:30:11 +02:00
|
|
|
m_openPagesWidget->setGeometry(0, 0, gWidth, gHeight);
|
2010-04-12 14:55:41 +02:00
|
|
|
|
|
|
|
|
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 14:55:41 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-12 16:43:23 +02:00
|
|
|
void OpenPagesSwitcher::gotoNextPage()
|
2010-04-12 14:55:41 +02:00
|
|
|
{
|
|
|
|
|
selectPageUpDown(-1);
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-12 16:43:23 +02:00
|
|
|
void OpenPagesSwitcher::gotoPreviousPage()
|
2010-04-12 14:55:41 +02:00
|
|
|
{
|
|
|
|
|
selectPageUpDown(1);
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-12 16:43:23 +02:00
|
|
|
void OpenPagesSwitcher::selectAndHide()
|
2010-04-12 14:55:41 +02:00
|
|
|
{
|
|
|
|
|
setVisible(false);
|
|
|
|
|
emit setCurrentPage(m_openPagesWidget->currentIndex());
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-12 16:43:23 +02:00
|
|
|
void OpenPagesSwitcher::selectCurrentPage()
|
2010-04-12 14:55:41 +02:00
|
|
|
{
|
|
|
|
|
m_openPagesWidget->selectCurrentPage();
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-12 16:43:23 +02:00
|
|
|
void OpenPagesSwitcher::setVisible(bool visible)
|
2010-04-12 14:55:41 +02:00
|
|
|
{
|
|
|
|
|
QWidget::setVisible(visible);
|
|
|
|
|
if (visible)
|
|
|
|
|
setFocus();
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-12 16:43:23 +02:00
|
|
|
void OpenPagesSwitcher::focusInEvent(QFocusEvent *event)
|
2010-04-12 14:55:41 +02:00
|
|
|
{
|
|
|
|
|
Q_UNUSED(event)
|
|
|
|
|
m_openPagesWidget->setFocus();
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-12 16:43:23 +02:00
|
|
|
bool OpenPagesSwitcher::eventFilter(QObject *object, QEvent *event)
|
2010-04-12 14:55:41 +02:00
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
} 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)
|
2010-04-12 14:55:41 +02:00
|
|
|
{
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|