mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-26 16:25:23 -04:00
Refactor browser Access Control Dialog (#9607)
This commit is contained in:
parent
35baeaff79
commit
190a1fa10c
8 changed files with 253 additions and 53 deletions
42
src/browser/CustomTableWidget.cpp
Normal file
42
src/browser/CustomTableWidget.cpp
Normal file
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* Copyright (C) 2023 KeePassXC Team <team@keepassxc.org>
|
||||
*
|
||||
* 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 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* 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 "CustomTableWidget.h"
|
||||
|
||||
CustomTableWidget::CustomTableWidget(QWidget* parent)
|
||||
: QTableWidget(parent)
|
||||
{
|
||||
}
|
||||
|
||||
void CustomTableWidget::keyPressEvent(QKeyEvent* event)
|
||||
{
|
||||
if ((event->key() == Qt::Key_Enter || event->key() == Qt::Key_Return) && !selectedItems().isEmpty()) {
|
||||
emit acceptSelections();
|
||||
} else {
|
||||
QTableView::keyPressEvent(event);
|
||||
}
|
||||
}
|
||||
|
||||
void CustomTableWidget::focusInEvent(QFocusEvent* event)
|
||||
{
|
||||
// For some reason accept button gets selected if table is clicked without any
|
||||
// selections, even if the button is actually disabled. Connecting to this
|
||||
// signal and adjusting the button focuses fixes the issue.
|
||||
if (event->reason() == Qt::MouseFocusReason && selectedItems().isEmpty()) {
|
||||
emit focusInWithoutSelections();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue