mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
Resize columns once when the entry list is set. Based on https://github.com/keepassx/keepassx/pull/158 Closes #478
103 lines
3.5 KiB
C++
103 lines
3.5 KiB
C++
/*
|
|
* Copyright (C) 2012 Felix Geyer <debfx@fobos.de>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
* version 3 of the License.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "AutoTypeSelectDialog.h"
|
|
|
|
#include <QApplication>
|
|
#include <QDesktopWidget>
|
|
#include <QDialogButtonBox>
|
|
#include <QHeaderView>
|
|
#include <QLabel>
|
|
#include <QVBoxLayout>
|
|
|
|
#include "autotype/AutoTypeSelectView.h"
|
|
#include "core/Config.h"
|
|
#include "core/FilePath.h"
|
|
#include "gui/entry/EntryModel.h"
|
|
|
|
AutoTypeSelectDialog::AutoTypeSelectDialog(QWidget* parent)
|
|
: QDialog(parent)
|
|
, m_view(new AutoTypeSelectView(this))
|
|
, m_entryActivatedEmitted(false)
|
|
{
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
|
// Places the window on the active (virtual) desktop instead of where the main window is.
|
|
setAttribute(Qt::WA_X11BypassTransientForHint);
|
|
setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
|
|
setWindowTitle(tr("Auto-Type - KeePassX"));
|
|
setWindowIcon(filePath()->applicationIcon());
|
|
|
|
QRect screenGeometry = QApplication::desktop()->availableGeometry(QCursor::pos());
|
|
QSize size = config()->get("GUI/AutoTypeSelectDialogSize", QSize(400, 250)).toSize();
|
|
size.setWidth(qMin(size.width(), screenGeometry.width()));
|
|
size.setHeight(qMin(size.height(), screenGeometry.height()));
|
|
resize(size);
|
|
|
|
// move dialog to the center of the screen
|
|
QPoint screenCenter = screenGeometry.center();
|
|
move(screenCenter.x() - (size.width() / 2), screenCenter.y() - (size.height() / 2));
|
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
|
|
|
QLabel* descriptionLabel = new QLabel(tr("Select entry to Auto-Type:"), this);
|
|
layout->addWidget(descriptionLabel);
|
|
|
|
connect(m_view, SIGNAL(activated(QModelIndex)), SLOT(emitEntryActivated(QModelIndex)));
|
|
connect(m_view, SIGNAL(clicked(QModelIndex)), SLOT(emitEntryActivated(QModelIndex)));
|
|
connect(m_view->model(), SIGNAL(rowsRemoved(QModelIndex,int,int)), SLOT(entryRemoved()));
|
|
layout->addWidget(m_view);
|
|
|
|
QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Cancel, Qt::Horizontal, this);
|
|
connect(buttonBox, SIGNAL(rejected()), SLOT(reject()));
|
|
layout->addWidget(buttonBox);
|
|
}
|
|
|
|
void AutoTypeSelectDialog::setEntries(const QList<Entry*>& entries, const QHash<Entry*, QString>& sequences)
|
|
{
|
|
m_sequences = sequences;
|
|
m_view->setEntryList(entries);
|
|
|
|
m_view->header()->resizeSections(QHeaderView::ResizeToContents);
|
|
}
|
|
|
|
void AutoTypeSelectDialog::done(int r)
|
|
{
|
|
config()->set("GUI/AutoTypeSelectDialogSize", size());
|
|
|
|
QDialog::done(r);
|
|
}
|
|
|
|
void AutoTypeSelectDialog::emitEntryActivated(const QModelIndex& index)
|
|
{
|
|
// make sure we don't emit the signal twice when both activated() and clicked() are triggered
|
|
if (m_entryActivatedEmitted) {
|
|
return;
|
|
}
|
|
m_entryActivatedEmitted = true;
|
|
|
|
Entry* entry = m_view->entryFromIndex(index);
|
|
accept();
|
|
Q_EMIT entryActivated(entry, m_sequences[entry]);
|
|
}
|
|
|
|
void AutoTypeSelectDialog::entryRemoved()
|
|
{
|
|
if (m_view->model()->rowCount() == 0) {
|
|
reject();
|
|
}
|
|
}
|