mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 13:32:47 +01:00
f6400a8713
90593ed92
Limit variable scope (practicalswift)
Tree-SHA512: 4719e303688a31aefbe1d239e86b21dd3c2045524e08bd628c6ba0c6c2a97de14d04305b9beafe0b1dcde7229793e6663168953f192e88ed409be5c30fd2a9a9
35 lines
1.1 KiB
C++
35 lines
1.1 KiB
C++
// Copyright (c) 2011-2015 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "coincontroltreewidget.h"
|
|
#include "coincontroldialog.h"
|
|
|
|
CoinControlTreeWidget::CoinControlTreeWidget(QWidget *parent) :
|
|
QTreeWidget(parent)
|
|
{
|
|
|
|
}
|
|
|
|
void CoinControlTreeWidget::keyPressEvent(QKeyEvent *event)
|
|
{
|
|
if (event->key() == Qt::Key_Space) // press spacebar -> select checkbox
|
|
{
|
|
event->ignore();
|
|
if (this->currentItem()) {
|
|
int COLUMN_CHECKBOX = 0;
|
|
this->currentItem()->setCheckState(COLUMN_CHECKBOX, ((this->currentItem()->checkState(COLUMN_CHECKBOX) == Qt::Checked) ? Qt::Unchecked : Qt::Checked));
|
|
}
|
|
}
|
|
else if (event->key() == Qt::Key_Escape) // press esc -> close dialog
|
|
{
|
|
event->ignore();
|
|
CoinControlDialog *coinControlDialog = (CoinControlDialog*)this->parentWidget();
|
|
coinControlDialog->done(QDialog::Accepted);
|
|
}
|
|
else
|
|
{
|
|
this->QTreeWidget::keyPressEvent(event);
|
|
}
|
|
}
|