Browse Source

Qt: Rename confusingly-named "address prefix" to "search string"

0.16
Luke Dashjr 7 years ago
parent
commit
b1f634242e
  1. 8
      src/qt/transactionfilterproxy.cpp
  2. 4
      src/qt/transactionfilterproxy.h
  3. 14
      src/qt/transactionview.cpp
  4. 4
      src/qt/transactionview.h

8
src/qt/transactionfilterproxy.cpp

@ -20,7 +20,7 @@ TransactionFilterProxy::TransactionFilterProxy(QObject *parent) :
QSortFilterProxyModel(parent), QSortFilterProxyModel(parent),
dateFrom(MIN_DATE), dateFrom(MIN_DATE),
dateTo(MAX_DATE), dateTo(MAX_DATE),
addrPrefix(), m_search_string(),
typeFilter(ALL_TYPES), typeFilter(ALL_TYPES),
watchOnlyFilter(WatchOnlyFilter_All), watchOnlyFilter(WatchOnlyFilter_All),
minAmount(0), minAmount(0),
@ -51,7 +51,7 @@ bool TransactionFilterProxy::filterAcceptsRow(int sourceRow, const QModelIndex &
return false; return false;
if(datetime < dateFrom || datetime > dateTo) if(datetime < dateFrom || datetime > dateTo)
return false; return false;
if (!address.contains(addrPrefix, Qt::CaseInsensitive) && !label.contains(addrPrefix, Qt::CaseInsensitive)) if (!address.contains(m_search_string, Qt::CaseInsensitive) && !label.contains(m_search_string, Qt::CaseInsensitive))
return false; return false;
if(amount < minAmount) if(amount < minAmount)
return false; return false;
@ -66,9 +66,9 @@ void TransactionFilterProxy::setDateRange(const QDateTime &from, const QDateTime
invalidateFilter(); invalidateFilter();
} }
void TransactionFilterProxy::setAddressPrefix(const QString &_addrPrefix) void TransactionFilterProxy::setSearchString(const QString &search_string)
{ {
this->addrPrefix = _addrPrefix; m_search_string = search_string;
invalidateFilter(); invalidateFilter();
} }

4
src/qt/transactionfilterproxy.h

@ -35,7 +35,7 @@ public:
}; };
void setDateRange(const QDateTime &from, const QDateTime &to); void setDateRange(const QDateTime &from, const QDateTime &to);
void setAddressPrefix(const QString &addrPrefix); void setSearchString(const QString &);
/** /**
@note Type filter takes a bit field created with TYPE() or ALL_TYPES @note Type filter takes a bit field created with TYPE() or ALL_TYPES
*/ */
@ -57,7 +57,7 @@ protected:
private: private:
QDateTime dateFrom; QDateTime dateFrom;
QDateTime dateTo; QDateTime dateTo;
QString addrPrefix; QString m_search_string;
quint32 typeFilter; quint32 typeFilter;
WatchOnlyFilter watchOnlyFilter; WatchOnlyFilter watchOnlyFilter;
CAmount minAmount; CAmount minAmount;

14
src/qt/transactionview.cpp

@ -95,11 +95,11 @@ TransactionView::TransactionView(const PlatformStyle *platformStyle, QWidget *pa
hlayout->addWidget(typeWidget); hlayout->addWidget(typeWidget);
addressWidget = new QLineEdit(this); search_widget = new QLineEdit(this);
#if QT_VERSION >= 0x040700 #if QT_VERSION >= 0x040700
addressWidget->setPlaceholderText(tr("Enter address or label to search")); search_widget->setPlaceholderText(tr("Enter address or label to search"));
#endif #endif
hlayout->addWidget(addressWidget); hlayout->addWidget(search_widget);
amountWidget = new QLineEdit(this); amountWidget = new QLineEdit(this);
#if QT_VERSION >= 0x040700 #if QT_VERSION >= 0x040700
@ -187,8 +187,8 @@ TransactionView::TransactionView(const PlatformStyle *platformStyle, QWidget *pa
connect(watchOnlyWidget, SIGNAL(activated(int)), this, SLOT(chooseWatchonly(int))); connect(watchOnlyWidget, SIGNAL(activated(int)), this, SLOT(chooseWatchonly(int)));
connect(amountWidget, SIGNAL(textChanged(QString)), amount_typing_delay, SLOT(start())); connect(amountWidget, SIGNAL(textChanged(QString)), amount_typing_delay, SLOT(start()));
connect(amount_typing_delay, SIGNAL(timeout()), this, SLOT(changedAmount())); connect(amount_typing_delay, SIGNAL(timeout()), this, SLOT(changedAmount()));
connect(addressWidget, SIGNAL(textChanged(QString)), prefix_typing_delay, SLOT(start())); connect(search_widget, SIGNAL(textChanged(QString)), prefix_typing_delay, SLOT(start()));
connect(prefix_typing_delay, SIGNAL(timeout()), this, SLOT(changedPrefix())); connect(prefix_typing_delay, SIGNAL(timeout()), this, SLOT(changedSearch()));
connect(view, SIGNAL(doubleClicked(QModelIndex)), this, SIGNAL(doubleClicked(QModelIndex))); connect(view, SIGNAL(doubleClicked(QModelIndex)), this, SIGNAL(doubleClicked(QModelIndex)));
connect(view, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextualMenu(QPoint))); connect(view, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextualMenu(QPoint)));
@ -326,11 +326,11 @@ void TransactionView::chooseWatchonly(int idx)
(TransactionFilterProxy::WatchOnlyFilter)watchOnlyWidget->itemData(idx).toInt()); (TransactionFilterProxy::WatchOnlyFilter)watchOnlyWidget->itemData(idx).toInt());
} }
void TransactionView::changedPrefix() void TransactionView::changedSearch()
{ {
if(!transactionProxyModel) if(!transactionProxyModel)
return; return;
transactionProxyModel->setAddressPrefix(addressWidget->text()); transactionProxyModel->setSearchString(search_widget->text());
} }
void TransactionView::changedAmount() void TransactionView::changedAmount()

4
src/qt/transactionview.h

@ -66,7 +66,7 @@ private:
QComboBox *dateWidget; QComboBox *dateWidget;
QComboBox *typeWidget; QComboBox *typeWidget;
QComboBox *watchOnlyWidget; QComboBox *watchOnlyWidget;
QLineEdit *addressWidget; QLineEdit *search_widget;
QLineEdit *amountWidget; QLineEdit *amountWidget;
QMenu *contextMenu; QMenu *contextMenu;
@ -113,7 +113,7 @@ public Q_SLOTS:
void chooseType(int idx); void chooseType(int idx);
void chooseWatchonly(int idx); void chooseWatchonly(int idx);
void changedAmount(); void changedAmount();
void changedPrefix(); void changedSearch();
void exportClicked(); void exportClicked();
void focusTransaction(const QModelIndex&); void focusTransaction(const QModelIndex&);

Loading…
Cancel
Save