PDF4QT/Pdf4QtViewer/pdfactioncombobox.cpp

212 lines
5.4 KiB
C++
Raw Normal View History

2023-12-25 14:39:47 +01:00
// Copyright (C) 2023 Jakub Melka
//
// This file is part of PDF4QT.
//
// PDF4QT is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// with the written consent of the copyright owner, any later version.
//
// PDF4QT is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with PDF4QT. If not, see <https://www.gnu.org/licenses/>.
#include "pdfactioncombobox.h"
#include "pdfwidgetutils.h"
#include <QLineEdit>
#include <QStandardItemModel>
#include <QSortFilterProxyModel>
#include <QCompleter>
2023-12-26 18:44:28 +01:00
#include <QAbstractItemView>
#include <QKeyEvent>
2023-12-25 14:39:47 +01:00
namespace pdfviewer
{
PDFActionComboBox::PDFActionComboBox(QWidget* parent) :
BaseClass(parent),
m_model(nullptr)
{
2023-12-26 18:44:28 +01:00
setPlaceholderText(tr("Find action..."));
setClearButtonEnabled(true);
2023-12-25 14:39:47 +01:00
setMinimumWidth(pdf::PDFWidgetUtils::scaleDPI_x(this, DEFAULT_WIDTH));
m_model = new QStandardItemModel(this);
2023-12-26 18:44:28 +01:00
QCompleter* completer = new QCompleter(m_model, this);
2023-12-25 14:39:47 +01:00
setFocusPolicy(Qt::StrongFocus);
2023-12-26 18:44:28 +01:00
setCompleter(completer);
completer->setCompletionMode(QCompleter::PopupCompletion);
completer->setCompletionColumn(0);
completer->setCompletionRole(Qt::DisplayRole);
completer->setFilterMode(Qt::MatchContains);
completer->setCaseSensitivity(Qt::CaseInsensitive);
completer->setModelSorting(QCompleter::CaseInsensitivelySortedModel);
completer->setWrapAround(false);
completer->setMaxVisibleItems(20);
connect(this, &QLineEdit::editingFinished, this, &PDFActionComboBox::performExecuteAction, Qt::QueuedConnection);
2023-12-25 14:39:47 +01:00
}
QSize PDFActionComboBox::sizeHint() const
{
QSize sizeHint = BaseClass::sizeHint();
sizeHint.setWidth(pdf::PDFWidgetUtils::scaleDPI_x(this, DEFAULT_WIDTH));
return sizeHint;
}
QSize PDFActionComboBox::minimumSizeHint() const
{
QSize sizeHint = BaseClass::minimumSizeHint();
sizeHint.setWidth(pdf::PDFWidgetUtils::scaleDPI_x(this, DEFAULT_WIDTH));
return sizeHint;
}
void PDFActionComboBox::addQuickFindAction(QAction* action)
{
if (std::find(m_actions.begin(), m_actions.end(), action) == m_actions.end())
{
m_actions.push_back(action);
connect(action, &QAction::changed, this, &PDFActionComboBox::onActionChanged);
updateAction(action);
}
}
2023-12-26 18:44:28 +01:00
bool PDFActionComboBox::event(QEvent* event)
{
if (event->type() == QEvent::ShortcutOverride)
{
QKeyEvent* keyEvent = dynamic_cast<QKeyEvent*>(event);
switch (keyEvent->key())
{
case Qt::Key_Down:
case Qt::Key_Up:
event->accept();
return true;
}
}
if (event->type() == QEvent::KeyPress)
{
QKeyEvent* keyEvent = dynamic_cast<QKeyEvent*>(event);
// Redirect up and down arrows to the completer
switch (keyEvent->key())
{
case Qt::Key_Down:
case Qt::Key_Up:
{
if (completer())
{
if (completer()->popup()->isVisible())
{
QCoreApplication::sendEvent(completer()->popup(), event);
}
else
{
completer()->complete();
}
}
return true;
}
case Qt::Key_Enter:
case Qt::Key_Return:
clearFocus();
return true;
default:
break;
}
}
return BaseClass::event(event);
}
2023-12-25 14:39:47 +01:00
void PDFActionComboBox::onActionChanged()
{
QAction* action = qobject_cast<QAction*>(sender());
updateAction(action);
}
2023-12-26 18:44:28 +01:00
void PDFActionComboBox::performExecuteAction()
2023-12-25 14:39:47 +01:00
{
2023-12-26 18:44:28 +01:00
QString text = this->text();
2023-12-25 14:39:47 +01:00
2023-12-26 18:44:28 +01:00
QAction* action = nullptr;
for (QAction* currentAction : m_actions)
2023-12-25 14:39:47 +01:00
{
2023-12-26 18:44:28 +01:00
if (currentAction->text() == text)
{
action = currentAction;
}
2023-12-25 14:39:47 +01:00
}
2023-12-26 18:44:28 +01:00
clear();
completer()->setCompletionPrefix(QString());
2023-12-25 14:39:47 +01:00
2023-12-26 18:44:28 +01:00
if (action)
2023-12-25 14:39:47 +01:00
{
2023-12-26 18:44:28 +01:00
action->trigger();
2023-12-25 14:39:47 +01:00
}
}
void PDFActionComboBox::updateAction(QAction* action)
{
if (!action)
{
return;
}
int actionIndex = findAction(action);
if (action->isEnabled())
{
if (actionIndex == -1)
{
QStandardItem* item = new QStandardItem(action->icon(), action->text());
item->setData(QVariant::fromValue(action), Qt::UserRole);
m_model->appendRow(item);
}
else
{
QStandardItem* item = m_model->item(actionIndex);
item->setIcon(action->icon());
item->setText(action->text());
}
}
else
{
// Remove action from the model
if (actionIndex != -1)
{
m_model->removeRow(actionIndex);
}
}
}
int PDFActionComboBox::findAction(QAction* action)
{
const int rowCount = m_model->rowCount();
for (int i = 0; i < rowCount; ++i)
{
QModelIndex index = m_model->index(i, 0);
QAction* currentAction = index.data(Qt::UserRole).value<QAction*>();
if (currentAction == action)
{
return i;
}
}
return -1;
}
} // namespace pdfviewer