Dash Core  0.12.2.1
P2P Digital Currency
recentrequeststablemodel.cpp
Go to the documentation of this file.
1 // Copyright (c) 2011-2015 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
6 
7 #include "bitcoinunits.h"
8 #include "guiutil.h"
9 #include "optionsmodel.h"
10 
11 #include "clientversion.h"
12 #include "streams.h"
13 
14 #include <boost/foreach.hpp>
15 
17  QAbstractTableModel(parent), walletModel(parent)
18 {
19  Q_UNUSED(wallet);
21 
22  // Load entries from wallet
23  std::vector<std::string> vReceiveRequests;
24  parent->loadReceiveRequests(vReceiveRequests);
25  BOOST_FOREACH(const std::string& request, vReceiveRequests)
26  addNewRequest(request);
27 
28  /* These columns must match the indices in the ColumnIndex enumeration */
29  columns << tr("Date") << tr("Label") << tr("Message") << getAmountTitle();
30 
31  connect(walletModel->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit()));
32 }
33 
35 {
36  /* Intentionally left empty */
37 }
38 
39 int RecentRequestsTableModel::rowCount(const QModelIndex &parent) const
40 {
41  Q_UNUSED(parent);
42 
43  return list.length();
44 }
45 
46 int RecentRequestsTableModel::columnCount(const QModelIndex &parent) const
47 {
48  Q_UNUSED(parent);
49 
50  return columns.length();
51 }
52 
53 QVariant RecentRequestsTableModel::data(const QModelIndex &index, int role) const
54 {
55  if(!index.isValid() || index.row() >= list.length())
56  return QVariant();
57 
58  const RecentRequestEntry *rec = &list[index.row()];
59 
60  if(role == Qt::DisplayRole || role == Qt::EditRole)
61  {
62  switch(index.column())
63  {
64  case Date:
65  return GUIUtil::dateTimeStr(rec->date);
66  case Label:
67  if(rec->recipient.label.isEmpty() && role == Qt::DisplayRole)
68  {
69  return tr("(no label)");
70  }
71  else
72  {
73  return rec->recipient.label;
74  }
75  case Message:
76  if(rec->recipient.message.isEmpty() && role == Qt::DisplayRole)
77  {
78  return tr("(no message)");
79  }
80  else
81  {
82  return rec->recipient.message;
83  }
84  case Amount:
85  if (rec->recipient.amount == 0 && role == Qt::DisplayRole)
86  return tr("(no amount)");
87  else if (role == Qt::EditRole)
89  else
91  }
92  }
93  else if (role == Qt::TextAlignmentRole)
94  {
95  if (index.column() == Amount)
96  return (int)(Qt::AlignRight|Qt::AlignVCenter);
97  }
98  return QVariant();
99 }
100 
101 bool RecentRequestsTableModel::setData(const QModelIndex &index, const QVariant &value, int role)
102 {
103  return true;
104 }
105 
106 QVariant RecentRequestsTableModel::headerData(int section, Qt::Orientation orientation, int role) const
107 {
108  if(orientation == Qt::Horizontal)
109  {
110  if(role == Qt::DisplayRole && section < columns.size())
111  {
112  return columns[section];
113  }
114  }
115  return QVariant();
116 }
117 
120 {
122  Q_EMIT headerDataChanged(Qt::Horizontal,Amount,Amount);
123 }
124 
127 {
128  QString amountTitle = tr("Amount");
129  if (this->walletModel->getOptionsModel() != NULL)
130  {
131  amountTitle += " ("+BitcoinUnits::name(this->walletModel->getOptionsModel()->getDisplayUnit()) + ")";
132  }
133  return amountTitle;
134 }
135 
136 QModelIndex RecentRequestsTableModel::index(int row, int column, const QModelIndex &parent) const
137 {
138  Q_UNUSED(parent);
139 
140  return createIndex(row, column);
141 }
142 
143 bool RecentRequestsTableModel::removeRows(int row, int count, const QModelIndex &parent)
144 {
145  Q_UNUSED(parent);
146 
147  if(count > 0 && row >= 0 && (row+count) <= list.size())
148  {
149  const RecentRequestEntry *rec;
150  for (int i = 0; i < count; ++i)
151  {
152  rec = &list[row+i];
153  if (!walletModel->saveReceiveRequest(rec->recipient.address.toStdString(), rec->id, ""))
154  return false;
155  }
156 
157  beginRemoveRows(parent, row, row + count - 1);
158  list.erase(list.begin() + row, list.begin() + row + count);
159  endRemoveRows();
160  return true;
161  } else {
162  return false;
163  }
164 }
165 
166 Qt::ItemFlags RecentRequestsTableModel::flags(const QModelIndex &index) const
167 {
168  return Qt::ItemIsSelectable | Qt::ItemIsEnabled;
169 }
170 
171 // called when adding a request from the GUI
173 {
174  RecentRequestEntry newEntry;
175  newEntry.id = ++nReceiveRequestsMaxId;
176  newEntry.date = QDateTime::currentDateTime();
177  newEntry.recipient = recipient;
178 
180  ss << newEntry;
181 
182  if (!walletModel->saveReceiveRequest(recipient.address.toStdString(), newEntry.id, ss.str()))
183  return;
184 
185  addNewRequest(newEntry);
186 }
187 
188 // called from ctor when loading from wallet
189 void RecentRequestsTableModel::addNewRequest(const std::string &recipient)
190 {
191  std::vector<char> data(recipient.begin(), recipient.end());
193 
195  ss >> entry;
196 
197  if (entry.id == 0) // should not happen
198  return;
199 
202 
204 }
205 
206 // actually add to table in GUI
208 {
209  beginInsertRows(QModelIndex(), 0, 0);
210  list.prepend(recipient);
211  endInsertRows();
212 }
213 
214 void RecentRequestsTableModel::sort(int column, Qt::SortOrder order)
215 {
216  qSort(list.begin(), list.end(), RecentRequestEntryLessThan(column, order));
217  Q_EMIT dataChanged(index(0, 0, QModelIndex()), index(list.size() - 1, NUMBER_OF_COLUMNS - 1, QModelIndex()));
218 }
219 
221 {
223 }
224 
226 {
227  RecentRequestEntry *pLeft = &left;
228  RecentRequestEntry *pRight = &right;
229  if (order == Qt::DescendingOrder)
230  std::swap(pLeft, pRight);
231 
232  switch(column)
233  {
235  return pLeft->date.toTime_t() < pRight->date.toTime_t();
237  return pLeft->recipient.label < pRight->recipient.label;
239  return pLeft->recipient.message < pRight->recipient.message;
241  return pLeft->recipient.amount < pRight->recipient.amount;
242  default:
243  return pLeft->id < pRight->id;
244  }
245 }
int rowCount(const QModelIndex &parent) const
QVariant headerData(int section, Qt::Orientation orientation, int role) const
RecentRequestsTableModel(CWallet *wallet, WalletModel *parent)
void addNewRequest(const SendCoinsRecipient &recipient)
QVariant data(const QModelIndex &index, int role) const
const RecentRequestEntry & entry(int row) const
Qt::ItemFlags flags(const QModelIndex &index) const
void loadReceiveRequests(std::vector< std::string > &vReceiveRequests)
QModelIndex index(int row, int column, const QModelIndex &parent) const
int columnCount(const QModelIndex &parent) const
static QString format(int unit, const CAmount &amount, bool plussign=false, SeparatorStyle separators=separatorStandard)
Format as string.
OptionsModel * getOptionsModel()
Definition: wallet.py:1
bool setData(const QModelIndex &index, const QVariant &value, int role)
bool saveReceiveRequest(const std::string &sAddress, const int64_t nId, const std::string &sRequest)
bool removeRows(int row, int count, const QModelIndex &parent=QModelIndex())
static int count
Definition: tests.c:41
static QString name(int unit)
Short name.
std::string str() const
Definition: streams.h:109
int getDisplayUnit()
Definition: optionsmodel.h:73
SendCoinsRecipient recipient
bool operator()(RecentRequestEntry &left, RecentRequestEntry &right) const
QList< RecentRequestEntry > list
void sort(int column, Qt::SortOrder order=Qt::AscendingOrder)
static const int CLIENT_VERSION
Definition: clientversion.h:54
QString dateTimeStr(const QDateTime &date)
Definition: guiutil.cpp:87