Anoncoin  0.9.4
P2P Digital Currency
coincontroltreewidget.cpp
Go to the documentation of this file.
1 // Copyright (c) 2011-2013 The Bitcoin developers
2 // Copyright (c) 2013-2014 The Anoncoin Core developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
7 #include "coincontroldialog.h"
8 
10  QTreeWidget(parent)
11 {
12 
13 }
14 
16 {
17  if (event->key() == Qt::Key_Space) // press spacebar -> select checkbox
18  {
19  event->ignore();
20  int COLUMN_CHECKBOX = 0;
21  this->currentItem()->setCheckState(COLUMN_CHECKBOX, ((this->currentItem()->checkState(COLUMN_CHECKBOX) == Qt::Checked) ? Qt::Unchecked : Qt::Checked));
22  }
23  else if (event->key() == Qt::Key_Escape) // press esc -> close dialog
24  {
25  event->ignore();
26  CoinControlDialog *coinControlDialog = (CoinControlDialog*)this->parentWidget();
27  coinControlDialog->done(QDialog::Accepted);
28  }
29  else
30  {
31  this->QTreeWidget::keyPressEvent(event);
32  }
33 }
virtual void keyPressEvent(QKeyEvent *event)
CoinControlTreeWidget(QWidget *parent=0)