Browse Source

Improve documentation for UI classes

0.8
Wladimir J. van der Laan 13 years ago
parent
commit
af836ad588
  1. 1
      src/qt/aboutdialog.h
  2. 6
      src/qt/addressbookpage.h
  3. 27
      src/qt/addresstablemodel.h
  4. 10
      src/qt/askpassphrasedialog.h
  5. 2
      src/qt/bitcoinaddressvalidator.h
  6. 18
      src/qt/bitcoinamountfield.h
  7. 47
      src/qt/bitcoinunits.h
  8. 10
      src/qt/clientmodel.h
  9. 9
      src/qt/csvmodelwriter.h
  10. 2
      src/qt/editaddressdialog.h
  11. 2
      src/qt/guiutil.h
  12. 2
      src/qt/macdockiconhandler.h
  13. 5
      src/qt/monitoreddatamapper.h
  14. 35
      src/qt/notificator.h
  15. 3
      src/qt/optionsdialog.h
  16. 2
      src/qt/optionsmodel.h
  17. 1
      src/qt/overviewpage.h
  18. 5
      src/qt/qvalidatedlineedit.h
  19. 7
      src/qt/qvaluecombobox.h
  20. 5
      src/qt/sendcoinsdialog.h
  21. 7
      src/qt/sendcoinsentry.h
  22. 3
      src/qt/transactiondesc.h
  23. 1
      src/qt/transactiondescdialog.h
  24. 14
      src/qt/transactionfilterproxy.h
  25. 37
      src/qt/transactionrecord.h
  26. 33
      src/qt/transactiontablemodel.h
  27. 3
      src/qt/transactionview.h
  28. 2
      src/qt/walletmodel.h

1
src/qt/aboutdialog.h

@ -8,6 +8,7 @@ namespace Ui {
} }
class ClientModel; class ClientModel;
/** "About" dialog box */
class AboutDialog : public QDialog class AboutDialog : public QDialog
{ {
Q_OBJECT Q_OBJECT

6
src/qt/addressbookpage.h

@ -14,6 +14,8 @@ class QItemSelection;
class QSortFilterProxyModel; class QSortFilterProxyModel;
QT_END_NAMESPACE QT_END_NAMESPACE
/** Widget that shows a list of sending or receiving addresses.
*/
class AddressBookPage : public QDialog class AddressBookPage : public QDialog
{ {
Q_OBJECT Q_OBJECT
@ -25,8 +27,8 @@ public:
}; };
enum Mode { enum Mode {
ForSending, // Pick address for sending ForSending, /**< Open address book to pick address for sending */
ForEditing // Open address book for editing ForEditing /**< Open address book for editing */
}; };
explicit AddressBookPage(Mode mode, Tabs tab, QWidget *parent = 0); explicit AddressBookPage(Mode mode, Tabs tab, QWidget *parent = 0);

27
src/qt/addresstablemodel.h

@ -8,6 +8,9 @@ class AddressTablePriv;
class CWallet; class CWallet;
class WalletModel; class WalletModel;
/**
Qt model of the address book in the core. This allows views to access and modify the address book.
*/
class AddressTableModel : public QAbstractTableModel class AddressTableModel : public QAbstractTableModel
{ {
Q_OBJECT Q_OBJECT
@ -16,27 +19,28 @@ public:
~AddressTableModel(); ~AddressTableModel();
enum ColumnIndex { enum ColumnIndex {
Label = 0, /* User specified label */ Label = 0, /**< User specified label */
Address = 1 /* Bitcoin address */ Address = 1 /**< Bitcoin address */
}; };
enum RoleIndex { enum RoleIndex {
TypeRole = Qt::UserRole TypeRole = Qt::UserRole /**< Type of address (#Send or #Receive) */
}; };
// Return status of last edit/insert operation /** Return status of edit/insert operation */
enum EditStatus { enum EditStatus {
OK, OK,
INVALID_ADDRESS, INVALID_ADDRESS, /**< Unparseable address */
DUPLICATE_ADDRESS, DUPLICATE_ADDRESS, /**< Address already in address book */
WALLET_UNLOCK_FAILURE, WALLET_UNLOCK_FAILURE, /**< Wallet could not be unlocked to create new receiving address */
KEY_GENERATION_FAILURE KEY_GENERATION_FAILURE /**< Generating a new public key for a receiving address failed */
}; };
static const QString Send; /* Send addres */ static const QString Send; /**< Specifies send address */
static const QString Receive; /* Receive address */ static const QString Receive; /**< Specifies receive address */
/* Overridden methods from QAbstractTableModel */ /** @name Methods overridden from QAbstractTableModel
@{*/
int rowCount(const QModelIndex &parent) const; int rowCount(const QModelIndex &parent) const;
int columnCount(const QModelIndex &parent) const; int columnCount(const QModelIndex &parent) const;
QVariant data(const QModelIndex &index, int role) const; QVariant data(const QModelIndex &index, int role) const;
@ -45,6 +49,7 @@ public:
QModelIndex index(int row, int column, const QModelIndex & parent) const; QModelIndex index(int row, int column, const QModelIndex & parent) const;
bool removeRows(int row, int count, const QModelIndex & parent = QModelIndex()); bool removeRows(int row, int count, const QModelIndex & parent = QModelIndex());
Qt::ItemFlags flags(const QModelIndex & index) const; Qt::ItemFlags flags(const QModelIndex & index) const;
/*@}*/
/* Add an address to the model. /* Add an address to the model.
Returns the added address on success, and an empty string otherwise. Returns the added address on success, and an empty string otherwise.

10
src/qt/askpassphrasedialog.h

@ -9,16 +9,18 @@ namespace Ui {
class WalletModel; class WalletModel;
/** Multifunctional dialog to ask for passphrases. Used for encryption, unlocking, and changing the passphrase.
*/
class AskPassphraseDialog : public QDialog class AskPassphraseDialog : public QDialog
{ {
Q_OBJECT Q_OBJECT
public: public:
enum Mode { enum Mode {
Encrypt, // Ask passphrase x2 Encrypt, /**< Ask passphrase twice and encrypt */
Unlock, // Ask passphrase Unlock, /**< Ask passphrase and unlock */
ChangePass, // Ask old passphrase + new passphrase x2 ChangePass, /**< Ask old passphrase + new passphrase twice */
Decrypt // Ask passphrase Decrypt /**< Ask passphrase and decrypt wallet */
}; };
explicit AskPassphraseDialog(Mode mode, QWidget *parent = 0); explicit AskPassphraseDialog(Mode mode, QWidget *parent = 0);

2
src/qt/bitcoinaddressvalidator.h

@ -3,7 +3,7 @@
#include <QRegExpValidator> #include <QRegExpValidator>
/* Base48 entry widget validator. /** Base48 entry widget validator.
Corrects near-miss characters and refuses characters that are no part of base48. Corrects near-miss characters and refuses characters that are no part of base48.
*/ */
class BitcoinAddressValidator : public QValidator class BitcoinAddressValidator : public QValidator

18
src/qt/bitcoinamountfield.h

@ -8,8 +8,8 @@ class QDoubleSpinBox;
class QValueComboBox; class QValueComboBox;
QT_END_NAMESPACE QT_END_NAMESPACE
// Coin amount entry widget with separate parts for whole /** Widget for entering bitcoin amounts.
// coins and decimals. */
class BitcoinAmountField: public QWidget class BitcoinAmountField: public QWidget
{ {
Q_OBJECT Q_OBJECT
@ -20,25 +20,27 @@ public:
qint64 value(bool *valid=0) const; qint64 value(bool *valid=0) const;
void setValue(qint64 value); void setValue(qint64 value);
// Mark current valid as invalid in UI /** Mark current value as invalid in UI. */
void setValid(bool valid); void setValid(bool valid);
/** Perform input validation, mark field as invalid if entered value is not valid. */
bool validate(); bool validate();
// Change current unit /** Change unit used to display amount. */
void setDisplayUnit(int unit); void setDisplayUnit(int unit);
// Make field empty and ready for new input /** Make field empty and ready for new input. */
void clear(); void clear();
// Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907) /** Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907),
// Hence we have to set it up manually in these cases we have to set it up manually.
*/
QWidget *setupTabChain(QWidget *prev); QWidget *setupTabChain(QWidget *prev);
signals: signals:
void textChanged(); void textChanged();
protected: protected:
// Intercept focus-in event and ',' keypresses /** Intercept focus-in event and ',' keypresses */
bool eventFilter(QObject *object, QEvent *event); bool eventFilter(QObject *object, QEvent *event);
private: private:

47
src/qt/bitcoinunits.h

@ -4,51 +4,60 @@
#include <QString> #include <QString>
#include <QAbstractListModel> #include <QAbstractListModel>
// Bitcoin unit definitions, encapsulates parsing and formatting /** Bitcoin unit definitions. Encapsulates parsing and formatting
// and serves as list model for dropdown selection boxes. and serves as list model for dropdown selection boxes.
*/
class BitcoinUnits: public QAbstractListModel class BitcoinUnits: public QAbstractListModel
{ {
public: public:
explicit BitcoinUnits(QObject *parent); explicit BitcoinUnits(QObject *parent);
/** Bitcoin units.
@note Source: https://en.bitcoin.it/wiki/Units . Please add only sensible ones
*/
enum Unit enum Unit
{ {
// Source: https://en.bitcoin.it/wiki/Units
// Please add only sensible ones
BTC, BTC,
mBTC, mBTC,
uBTC uBTC
}; };
/// Static API //! @name Static API
// Get list of units, for dropdown box //! Unit conversion and formatting
///@{
//! Get list of units, for dropdown box
static QList<Unit> availableUnits(); static QList<Unit> availableUnits();
// Is unit ID valid? //! Is unit ID valid?
static bool valid(int unit); static bool valid(int unit);
// Short name //! Short name
static QString name(int unit); static QString name(int unit);
// Longer description //! Longer description
static QString description(int unit); static QString description(int unit);
// Number of satoshis / unit //! Number of Satoshis (1e-8) per unit
static qint64 factor(int unit); static qint64 factor(int unit);
// Number of amount digits (to represent max number of coins) //! Number of amount digits (to represent max number of coins)
static int amountDigits(int unit); static int amountDigits(int unit);
// Number of decimals left //! Number of decimals left
static int decimals(int unit); static int decimals(int unit);
// Format as string //! Format as string
static QString format(int unit, qint64 amount, bool plussign=false); static QString format(int unit, qint64 amount, bool plussign=false);
// Format as string (with unit) //! Format as string (with unit)
static QString formatWithUnit(int unit, qint64 amount, bool plussign=false); static QString formatWithUnit(int unit, qint64 amount, bool plussign=false);
// Parse string to coin amount //! Parse string to coin amount
static bool parse(int unit, const QString &value, qint64 *val_out); static bool parse(int unit, const QString &value, qint64 *val_out);
///@}
/// AbstractListModel implementation //! @name AbstractListModel implementation
enum { //! List model for unit dropdown selection box.
// Unit identifier ///@{
enum RoleIndex {
/** Unit identifier */
UnitRole = Qt::UserRole UnitRole = Qt::UserRole
} RoleIndex; };
int rowCount(const QModelIndex &parent) const; int rowCount(const QModelIndex &parent) const;
QVariant data(const QModelIndex &index, int role) const; QVariant data(const QModelIndex &index, int role) const;
///@}
private: private:
QList<BitcoinUnits::Unit> unitlist; QList<BitcoinUnits::Unit> unitlist;
}; };

10
src/qt/clientmodel.h

@ -12,7 +12,7 @@ QT_BEGIN_NAMESPACE
class QDateTime; class QDateTime;
QT_END_NAMESPACE QT_END_NAMESPACE
// Model for Bitcoin network client /** Model for Bitcoin network client. */
class ClientModel : public QObject class ClientModel : public QObject
{ {
Q_OBJECT Q_OBJECT
@ -27,11 +27,11 @@ public:
QDateTime getLastBlockDate() const; QDateTime getLastBlockDate() const;
// Return true if client connected to testnet //! Return true if client connected to testnet
bool isTestNet() const; bool isTestNet() const;
// Return true if core is doing initial block download //! Return true if core is doing initial block download
bool inInitialBlockDownload() const; bool inInitialBlockDownload() const;
// Return conservative estimate of total number of blocks, or 0 if unknown //! Return conservative estimate of total number of blocks, or 0 if unknown
int getNumBlocksOfPeers() const; int getNumBlocksOfPeers() const;
QString formatFullVersion() const; QString formatFullVersion() const;
@ -48,7 +48,7 @@ signals:
void numConnectionsChanged(int count); void numConnectionsChanged(int count);
void numBlocksChanged(int count); void numBlocksChanged(int count);
// Asynchronous error notification //! Asynchronous error notification
void error(const QString &title, const QString &message); void error(const QString &title, const QString &message);
public slots: public slots:

9
src/qt/csvmodelwriter.h

@ -8,7 +8,9 @@ QT_BEGIN_NAMESPACE
class QAbstractItemModel; class QAbstractItemModel;
QT_END_NAMESPACE QT_END_NAMESPACE
// Export TableModel to CSV file /** Export a Qt table model to a CSV file. This is useful for analyzing or post-processing the data in
a spreadsheet.
*/
class CSVModelWriter : public QObject class CSVModelWriter : public QObject
{ {
Q_OBJECT Q_OBJECT
@ -18,8 +20,9 @@ public:
void setModel(const QAbstractItemModel *model); void setModel(const QAbstractItemModel *model);
void addColumn(const QString &title, int column, int role=Qt::EditRole); void addColumn(const QString &title, int column, int role=Qt::EditRole);
// Perform write operation /** Perform export of the model to CSV.
// Returns true on success, false otherwise @returns true on success, false otherwise
*/
bool write(); bool write();
private: private:

2
src/qt/editaddressdialog.h

@ -12,6 +12,8 @@ namespace Ui {
} }
class AddressTableModel; class AddressTableModel;
/** Dialog for editing an address and associated information.
*/
class EditAddressDialog : public QDialog class EditAddressDialog : public QDialog
{ {
Q_OBJECT Q_OBJECT

2
src/qt/guiutil.h

@ -12,6 +12,8 @@ class QUrl;
QT_END_NAMESPACE QT_END_NAMESPACE
class SendCoinsRecipient; class SendCoinsRecipient;
/** Static utility functions used by the Bitcoin Qt UI.
*/
class GUIUtil class GUIUtil
{ {
public: public:

2
src/qt/macdockiconhandler.h

@ -8,6 +8,8 @@ class QIcon;
class QWidget; class QWidget;
class objc_object; class objc_object;
/** Macintosh-specific dock icon handler.
*/
class MacDockIconHandler : public QObject class MacDockIconHandler : public QObject
{ {
Q_OBJECT Q_OBJECT

5
src/qt/monitoreddatamapper.h

@ -7,9 +7,8 @@ QT_BEGIN_NAMESPACE
class QWidget; class QWidget;
QT_END_NAMESPACE QT_END_NAMESPACE
/* Data <-> Widget mapper that watches for changes, /** Data to Widget mapper that watches for edits and notifies listeners when a field is edited.
to be able to notify when 'dirty' (for example, to This can be used, for example, to enable a commit/apply button in a configuration dialog.
enable a commit/apply button).
*/ */
class MonitoredDataMapper : public QDataWidgetMapper class MonitoredDataMapper : public QDataWidgetMapper
{ {

35
src/qt/notificator.h

@ -11,33 +11,34 @@ class QDBusInterface;
#endif #endif
QT_END_NAMESPACE QT_END_NAMESPACE
// Cross-platform desktop notification client /** Cross-platform desktop notification client. */
class Notificator: public QObject class Notificator: public QObject
{ {
Q_OBJECT Q_OBJECT
public: public:
// Create a new notificator /** Create a new notificator.
// Ownership of trayIcon is not transferred to this object @note Ownership of trayIcon is not transferred to this object.
*/
Notificator(const QString &programName=QString(), QSystemTrayIcon *trayIcon=0, QWidget *parent=0); Notificator(const QString &programName=QString(), QSystemTrayIcon *trayIcon=0, QWidget *parent=0);
~Notificator(); ~Notificator();
// Message class // Message class
enum Class enum Class
{ {
Information, Information, /**< Informational message */
Warning, Warning, /**< Notify user of potential problem */
Critical, Critical /**< An error occured */
}; };
public slots: public slots:
/* Show notification message. /** Show notification message.
* @param[in] cls general message class
* cls: general message class @param[in] title title shown with message
* title: title shown with message @param[in] text message content
* text: message content @param[in] icon optional icon to show with message
* icon: optional icon to show with message @param[in] millisTimeout notification timeout in milliseconds (defaults to 10 seconds)
* millisTimeout: notification timeout in milliseconds (default 10 seconds) @note Platform implementations are free to ignore any of the provided fields except for \a text.
*/ */
void notify(Class cls, const QString &title, const QString &text, void notify(Class cls, const QString &title, const QString &text,
const QIcon &icon = QIcon(), int millisTimeout = 10000); const QIcon &icon = QIcon(), int millisTimeout = 10000);
@ -45,10 +46,10 @@ public slots:
private: private:
QWidget *parent; QWidget *parent;
enum Mode { enum Mode {
None, None, /**< Ignore informational notifications, and show a modal pop-up dialog for Critical notifications. */
Freedesktop, // Use DBus org.freedesktop.Notifications Freedesktop, /**< Use DBus org.freedesktop.Notifications */
QSystemTray, // Use QSystemTray::showMessage QSystemTray, /**< Use QSystemTray::showMessage */
Growl // Use the Growl notification system (Mac only) Growl /**< Use the Growl notification system (Mac only) */
}; };
QString programName; QString programName;
Mode mode; Mode mode;

3
src/qt/optionsdialog.h

@ -14,6 +14,7 @@ class MainOptionsPage;
class DisplayOptionsPage; class DisplayOptionsPage;
class MonitoredDataMapper; class MonitoredDataMapper;
/** Preferences dialog. */
class OptionsDialog : public QDialog class OptionsDialog : public QDialog
{ {
Q_OBJECT Q_OBJECT
@ -25,6 +26,7 @@ public:
signals: signals:
public slots: public slots:
/** Change the current page to \a index. */
void changePage(int index); void changePage(int index);
private slots: private slots:
@ -33,6 +35,7 @@ private slots:
void applyClicked(); void applyClicked();
void enableApply(); void enableApply();
void disableApply(); void disableApply();
private: private:
QListWidget *contents_widget; QListWidget *contents_widget;
QStackedWidget *pages_widget; QStackedWidget *pages_widget;

2
src/qt/optionsmodel.h

@ -5,7 +5,7 @@
class CWallet; class CWallet;
/* Interface from QT to configuration data structure for bitcoin client. /** Interface from QT to configuration data structure for bitcoin client.
To QT, the options are presented as a list with the different options To QT, the options are presented as a list with the different options
laid out vertically. laid out vertically.
This can be changed to a tree once the settings become sufficiently This can be changed to a tree once the settings become sufficiently

1
src/qt/overviewpage.h

@ -13,6 +13,7 @@ namespace Ui {
class WalletModel; class WalletModel;
class TxViewDelegate; class TxViewDelegate;
/** Overview ("home") page widget */
class OverviewPage : public QWidget class OverviewPage : public QWidget
{ {
Q_OBJECT Q_OBJECT

5
src/qt/qvalidatedlineedit.h

@ -3,8 +3,9 @@
#include <QLineEdit> #include <QLineEdit>
// Line edit that can be marked as "invalid". When marked as invalid, /** Line edit that can be marked as "invalid" to show input validation feedback. When marked as invalid,
// it will get a red background until it is focused. it will get a red background until it is focused.
*/
class QValidatedLineEdit : public QLineEdit class QValidatedLineEdit : public QLineEdit
{ {
Q_OBJECT Q_OBJECT

7
src/qt/qvaluecombobox.h

@ -3,19 +3,18 @@
#include <QComboBox> #include <QComboBox>
// QComboBox that can be used with QDataWidgetMapper to select /* QComboBox that can be used with QDataWidgetMapper to select ordinal values from a model. */
// ordinal values from a model.
class QValueComboBox : public QComboBox class QValueComboBox : public QComboBox
{ {
Q_OBJECT Q_OBJECT
Q_PROPERTY(int value READ value WRITE setValue NOTIFY valueChanged USER true); Q_PROPERTY(int value READ value WRITE setValue NOTIFY valueChanged USER true)
public: public:
explicit QValueComboBox(QWidget *parent = 0); explicit QValueComboBox(QWidget *parent = 0);
int value() const; int value() const;
void setValue(int value); void setValue(int value);
// Model role to use as value /** Specify model role to use as ordinal value */
void setRole(int role); void setRole(int role);
signals: signals:

5
src/qt/sendcoinsdialog.h

@ -14,6 +14,7 @@ QT_BEGIN_NAMESPACE
class QUrl; class QUrl;
QT_END_NAMESPACE QT_END_NAMESPACE
/** Dialog for sending bitcoins */
class SendCoinsDialog : public QDialog class SendCoinsDialog : public QDialog
{ {
Q_OBJECT Q_OBJECT
@ -24,8 +25,8 @@ public:
void setModel(WalletModel *model); void setModel(WalletModel *model);
// Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907) /** Set up the tab chain manually, as Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907).
// Hence we have to set it up manually */
QWidget *setupTabChain(QWidget *prev); QWidget *setupTabChain(QWidget *prev);
void pasteEntry(const SendCoinsRecipient &rv); void pasteEntry(const SendCoinsRecipient &rv);

7
src/qt/sendcoinsentry.h

@ -9,6 +9,7 @@ namespace Ui {
class WalletModel; class WalletModel;
class SendCoinsRecipient; class SendCoinsRecipient;
/** A single entry in the dialog for sending bitcoins. */
class SendCoinsEntry : public QFrame class SendCoinsEntry : public QFrame
{ {
Q_OBJECT Q_OBJECT
@ -21,13 +22,13 @@ public:
bool validate(); bool validate();
SendCoinsRecipient getValue(); SendCoinsRecipient getValue();
// Return true if the entry is still empty and unedited /** Return whether the entry is still empty and unedited */
bool isClear(); bool isClear();
void setValue(const SendCoinsRecipient &value); void setValue(const SendCoinsRecipient &value);
// Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907) /** Set up the tab chain manually, as Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907).
// Hence we have to set it up manually */
QWidget *setupTabChain(QWidget *prev); QWidget *setupTabChain(QWidget *prev);
public slots: public slots:

3
src/qt/transactiondesc.h

@ -8,11 +8,12 @@
class CWallet; class CWallet;
class CWalletTx; class CWalletTx;
/** Provide a human-readable extended HTML description of a transaction.
*/
class TransactionDesc: public QObject class TransactionDesc: public QObject
{ {
Q_OBJECT Q_OBJECT
public: public:
// Provide human-readable extended HTML description of a transaction
static QString toHTML(CWallet *wallet, CWalletTx &wtx); static QString toHTML(CWallet *wallet, CWalletTx &wtx);
private: private:
TransactionDesc() {} TransactionDesc() {}

1
src/qt/transactiondescdialog.h

@ -10,6 +10,7 @@ QT_BEGIN_NAMESPACE
class QModelIndex; class QModelIndex;
QT_END_NAMESPACE QT_END_NAMESPACE
/** Dialog showing transaction details. */
class TransactionDescDialog : public QDialog class TransactionDescDialog : public QDialog
{ {
Q_OBJECT Q_OBJECT

14
src/qt/transactionfilterproxy.h

@ -4,29 +4,31 @@
#include <QSortFilterProxyModel> #include <QSortFilterProxyModel>
#include <QDateTime> #include <QDateTime>
// Filter transaction list according to pre-specified rules /** Filter the transaction list according to pre-specified rules. */
class TransactionFilterProxy : public QSortFilterProxyModel class TransactionFilterProxy : public QSortFilterProxyModel
{ {
Q_OBJECT Q_OBJECT
public: public:
explicit TransactionFilterProxy(QObject *parent = 0); explicit TransactionFilterProxy(QObject *parent = 0);
// Earliest date that can be represented (far in the past) /** Earliest date that can be represented (far in the past) */
static const QDateTime MIN_DATE; static const QDateTime MIN_DATE;
// Last date that can be represented (far in the future) /** Last date that can be represented (far in the future) */
static const QDateTime MAX_DATE; static const QDateTime MAX_DATE;
// Type filter bit field (all types) /** Type filter bit field (all types) */
static const quint32 ALL_TYPES = 0xFFFFFFFF; static const quint32 ALL_TYPES = 0xFFFFFFFF;
static quint32 TYPE(int type) { return 1<<type; } static quint32 TYPE(int type) { return 1<<type; }
void setDateRange(const QDateTime &from, const QDateTime &to); void setDateRange(const QDateTime &from, const QDateTime &to);
void setAddressPrefix(const QString &addrPrefix); void setAddressPrefix(const QString &addrPrefix);
// Type filter takes a bitfield created with TYPE() or ALL_TYPES /**
@note Type filter takes a bitfield created with TYPE() or ALL_TYPES
*/
void setTypeFilter(quint32 modes); void setTypeFilter(quint32 modes);
void setMinAmount(qint64 minimum); void setMinAmount(qint64 minimum);
// Set maximum number of rows returned, -1 if unlimited /** Set maximum number of rows returned, -1 if unlimited. */
void setLimit(int limit); void setLimit(int limit);
int rowCount(const QModelIndex &parent = QModelIndex()) const; int rowCount(const QModelIndex &parent = QModelIndex()) const;

37
src/qt/transactionrecord.h

@ -8,6 +8,8 @@
class CWallet; class CWallet;
class CWalletTx; class CWalletTx;
/** UI model for transaction status. The transaction status is the part of a transaction that will change over time.
*/
class TransactionStatus class TransactionStatus
{ {
public: public:
@ -20,7 +22,7 @@ public:
{ {
Immature, Immature,
Mature, Mature,
MaturesWarning, /* Will likely not mature because no nodes have confirmed */ MaturesWarning, /**< Transaction will likely not mature because no nodes have confirmed */
NotAccepted NotAccepted
}; };
@ -35,19 +37,26 @@ public:
bool confirmed; bool confirmed;
std::string sortKey; std::string sortKey;
/* For "Generated" transactions */ /** @name Generated (mined) transactions
@{*/
Maturity maturity; Maturity maturity;
int matures_in; int matures_in;
/**@}*/
/* Reported status */ /** @name Reported status
@{*/
Status status; Status status;
int64 depth; int64 depth;
int64 open_for; /* Timestamp if status==OpenUntilDate, otherwise number of blocks */ int64 open_for; /**< Timestamp if status==OpenUntilDate, otherwise number of blocks */
/**@}*/
/* Current number of blocks (to know whether cached status is still valid. */ /** Current number of blocks (to know whether cached status is still valid) */
int cur_num_blocks; int cur_num_blocks;
}; };
/** UI model for a transaction. A core transaction can be represented by multiple UI transactions if it has
multiple outputs.
*/
class TransactionRecord class TransactionRecord
{ {
public: public:
@ -62,7 +71,7 @@ public:
SendToSelf SendToSelf
}; };
/* Number of confirmation needed for transaction */ /** Number of confirmation needed for transaction */
static const int NumConfirmations = 6; static const int NumConfirmations = 6;
TransactionRecord(): TransactionRecord():
@ -84,33 +93,35 @@ public:
{ {
} }
/* Decompose CWallet transaction to model transaction records. /** Decompose CWallet transaction to model transaction records.
*/ */
static bool showTransaction(const CWalletTx &wtx); static bool showTransaction(const CWalletTx &wtx);
static QList<TransactionRecord> decomposeTransaction(const CWallet *wallet, const CWalletTx &wtx); static QList<TransactionRecord> decomposeTransaction(const CWallet *wallet, const CWalletTx &wtx);
/* Fixed */ /** @name Immutable transaction attributes
@{*/
uint256 hash; uint256 hash;
int64 time; int64 time;
Type type; Type type;
std::string address; std::string address;
int64 debit; int64 debit;
int64 credit; int64 credit;
/**@}*/
/* Subtransaction index, for sort key */ /** Subtransaction index, for sort key */
int idx; int idx;
/* Status: can change with block chain update */ /** Status: can change with block chain update */
TransactionStatus status; TransactionStatus status;
/* Return the unique identifier for this transaction (part) */ /** Return the unique identifier for this transaction (part) */
std::string getTxID(); std::string getTxID();
/* Update status from wallet tx. /** Update status from core wallet tx.
*/ */
void updateStatus(const CWalletTx &wtx); void updateStatus(const CWalletTx &wtx);
/* Is a status update needed? /** Return whether a status update is needed.
*/ */
bool statusUpdateNeeded(); bool statusUpdateNeeded();
}; };

33
src/qt/transactiontablemodel.h

@ -9,6 +9,8 @@ class TransactionTablePriv;
class TransactionRecord; class TransactionRecord;
class WalletModel; class WalletModel;
/** UI model for the transaction table of a wallet.
*/
class TransactionTableModel : public QAbstractTableModel class TransactionTableModel : public QAbstractTableModel
{ {
Q_OBJECT Q_OBJECT
@ -16,36 +18,37 @@ public:
explicit TransactionTableModel(CWallet* wallet, WalletModel *parent = 0); explicit TransactionTableModel(CWallet* wallet, WalletModel *parent = 0);
~TransactionTableModel(); ~TransactionTableModel();
enum { enum ColumnIndex {
Status = 0, Status = 0,
Date = 1, Date = 1,
Type = 2, Type = 2,
ToAddress = 3, ToAddress = 3,
Amount = 4 Amount = 4
} ColumnIndex; };
// Roles to get specific information from a transaction row /** Roles to get specific information from a transaction row.
// These are independent of column These are independent of column.
enum { */
// Type of transaction enum RoleIndex {
/** Type of transaction */
TypeRole = Qt::UserRole, TypeRole = Qt::UserRole,
// Date and time this transaction was created /** Date and time this transaction was created */
DateRole, DateRole,
// Long description (HTML format) /** Long description (HTML format) */
LongDescriptionRole, LongDescriptionRole,
// Address of transaction /** Address of transaction */
AddressRole, AddressRole,
// Label of address related to transaction /** Label of address related to transaction */
LabelRole, LabelRole,
// Net amount of transaction /** Net amount of transaction */
AmountRole, AmountRole,
// Unique identifier /** Unique identifier */
TxIDRole, TxIDRole,
// Is transaction confirmed? /** Is transaction confirmed? */
ConfirmedRole, ConfirmedRole,
// Formatted amount, without brackets when unconfirmed /** Formatted amount, without brackets when unconfirmed */
FormattedAmountRole FormattedAmountRole
} RoleIndex; };
int rowCount(const QModelIndex &parent) const; int rowCount(const QModelIndex &parent) const;
int columnCount(const QModelIndex &parent) const; int columnCount(const QModelIndex &parent) const;

3
src/qt/transactionview.h

@ -16,6 +16,9 @@ class QFrame;
class QDateTimeEdit; class QDateTimeEdit;
QT_END_NAMESPACE QT_END_NAMESPACE
/** Widget showing the transaction list for a wallet, including a filter row.
Using the filter row, the user can view or export a subset of the transactions.
*/
class TransactionView : public QWidget class TransactionView : public QWidget
{ {
Q_OBJECT Q_OBJECT

2
src/qt/walletmodel.h

@ -16,7 +16,7 @@ struct SendCoinsRecipient
qint64 amount; qint64 amount;
}; };
// Interface to Bitcoin wallet from Qt view code /** Interface to Bitcoin wallet from Qt view code. */
class WalletModel : public QObject class WalletModel : public QObject
{ {
Q_OBJECT Q_OBJECT

Loading…
Cancel
Save