X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=blobdiff_plain;f=src%2Fqt%2Fbitcoingui.h;h=f4e72b3a76f0f39335d4aa0e33363d6e2907f79c;hp=df5d93eaf80d1d812551f0e4df6f34a68bec891c;hb=f8ea0dd6459856f2df18ca2ad532d49432a087dd;hpb=91c0b9419a644cb6f72d05711fcfec5aeb348f3f diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index df5d93e..f4e72b3 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -13,8 +13,12 @@ class OverviewPage; class AddressBookPage; class SendCoinsDialog; class SignVerifyMessageDialog; +class SecondAuthDialog; +class MultisigDialog; class Notificator; class RPCConsole; +class AboutDialog; +class OptionsDialog; QT_BEGIN_NAMESPACE class QLabel; @@ -67,6 +71,8 @@ private: AddressBookPage *receiveCoinsPage; SendCoinsDialog *sendCoinsPage; SignVerifyMessageDialog *signVerifyMessageDialog; + SecondAuthDialog *secondAuthDialog; + MultisigDialog *multisigPage; QLabel *labelEncryptionIcon; QLabel *labelConnectionsIcon; @@ -84,6 +90,8 @@ private: QAction *addressBookAction; QAction *signMessageAction; QAction *verifyMessageAction; + QAction *secondAuthAction; + QAction *multisigAction; QAction *aboutAction; QAction *receiveCoinsAction; QAction *optionsAction; @@ -105,15 +113,17 @@ private: TransactionView *transactionView; MintingView *mintingView; RPCConsole *rpcConsole; + AboutDialog *aboutDialog; + OptionsDialog *optionsDialog; QMovie *syncIconMovie; /** Create the main UI actions. */ - void createActions(); + void createActions(int nQtStyle); /** Create the menu bar and sub-menus. */ void createMenuBar(); /** Create the toolbars */ - void createToolBars(); + void createToolBars(int nQtStyle); /** Create system tray (notification) icon */ void createTrayIcon(); @@ -145,6 +155,8 @@ public slots: void askFee(qint64 nFeeRequired, bool *payFee); void handleURI(QString strURI); + void gotoMultisigPage(); + private slots: /** Switch to overview (home) page */ void gotoOverviewPage(); @@ -164,6 +176,9 @@ private slots: /** Show Sign/Verify Message dialog and switch to verify message tab */ void gotoVerifyMessageTab(QString addr = ""); + /** Show Second Auth dialog */ + void gotoSecondAuthPage(QString addr = ""); + /** Show configuration dialog */ void optionsClicked(); /** Show about dialog */