47894585ae
- add UI-feedback via QValidatedLineEdit - copy button for generated signature was moved to the signature output field - add an addressbook button to verify message tab - input fields are now evenly ordered for sign and verify tabs - update FIRST_CLASS_MESSAGING support to ensure a good UX - add a button and context menu entry in addressbook for verify message (to be consistent with sign message) - focus is now only set/changed, when clearing input fields or adding an address via addressbook - re-work / update some strings - ensure model gets initialized in the SignVerifyMessageDialog constructor - add checks for a valid model to both addressbook buttons - remove unneeded includes for Qt GUI elements that are listed in ui_signverifymessagedialog.h anyway
78 lines
1.9 KiB
C++
78 lines
1.9 KiB
C++
#ifndef ADDRESSBOOKPAGE_H
|
|
#define ADDRESSBOOKPAGE_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class AddressBookPage;
|
|
}
|
|
class AddressTableModel;
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QTableView;
|
|
class QItemSelection;
|
|
class QSortFilterProxyModel;
|
|
class QMenu;
|
|
class QModelIndex;
|
|
QT_END_NAMESPACE
|
|
|
|
/** Widget that shows a list of sending or receiving addresses.
|
|
*/
|
|
class AddressBookPage : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum Tabs {
|
|
SendingTab = 0,
|
|
ReceivingTab = 1
|
|
};
|
|
|
|
enum Mode {
|
|
ForSending, /**< Open address book to pick address for sending */
|
|
ForEditing /**< Open address book for editing */
|
|
};
|
|
|
|
explicit AddressBookPage(Mode mode, Tabs tab, QWidget *parent = 0);
|
|
~AddressBookPage();
|
|
|
|
void setModel(AddressTableModel *model);
|
|
const QString &getReturnValue() const { return returnValue; }
|
|
|
|
public slots:
|
|
void done(int retval);
|
|
void exportClicked();
|
|
|
|
private:
|
|
Ui::AddressBookPage *ui;
|
|
AddressTableModel *model;
|
|
Mode mode;
|
|
Tabs tab;
|
|
QString returnValue;
|
|
QSortFilterProxyModel *proxyModel;
|
|
QMenu *contextMenu;
|
|
QAction *deleteAction;
|
|
QString newAddressToSelect;
|
|
|
|
private slots:
|
|
void on_deleteButton_clicked();
|
|
void on_newAddressButton_clicked();
|
|
/** Copy address of currently selected address entry to clipboard */
|
|
void on_copyToClipboard_clicked();
|
|
void on_signMessage_clicked();
|
|
void on_verifyMessage_clicked();
|
|
void selectionChanged();
|
|
void on_showQRCode_clicked();
|
|
/** Spawn contextual menu (right mouse menu) for address book entry */
|
|
void contextualMenu(const QPoint &point);
|
|
|
|
/** Copy label of currently selected address entry to clipboard */
|
|
void onCopyLabelAction();
|
|
/** Edit currently selected address entry */
|
|
void onEditAction();
|
|
|
|
/** New entry/entries were added to address table */
|
|
void selectNewAddress(const QModelIndex &parent, int begin, int end);
|
|
};
|
|
|
|
#endif // ADDRESSBOOKDIALOG_H
|