本文整理汇总了C++中WalletView类的典型用法代码示例。如果您正苦于以下问题:C++ WalletView类的具体用法?C++ WalletView怎么用?C++ WalletView使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了WalletView类的16个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: backupWallet
void WalletStack::backupWallet()
{
WalletView *walletView = (WalletView*)currentWidget();
if (walletView) walletView->backupWallet();
}
开发者ID:007au,项目名称:AmeristralianDollar,代码行数:5,代码来源:walletstack.cpp
示例2: changePassphrase
void WalletStack::changePassphrase()
{
WalletView *walletView = (WalletView*)currentWidget();
if (walletView) walletView->changePassphrase();
}
开发者ID:007au,项目名称:AmeristralianDollar,代码行数:5,代码来源:walletstack.cpp
示例3: currentWalletView
void WalletFrame::gotoBip38Tool()
{
WalletView* walletView = currentWalletView();
if (walletView)
walletView->gotoBip38Tool();
}
开发者ID:ApollonMax,项目名称:ApollonCore,代码行数:6,代码来源:walletframe.cpp
示例4: encryptWallet
void WalletStack::encryptWallet(bool status)
{
WalletView *walletView = (WalletView*)currentWidget();
if (walletView) walletView->encryptWallet(status);
}
开发者ID:007au,项目名称:AmeristralianDollar,代码行数:5,代码来源:walletstack.cpp
示例5: currentWalletView
void WalletFrame::encryptWallet(bool status)
{
WalletView *walletView = currentWalletView();
if (walletView)
walletView->encryptWallet(status);
}
开发者ID:cqtenq,项目名称:feathercoin_core,代码行数:6,代码来源:walletframe.cpp
示例6: backupWallet
void WalletFrame::backupWallet()
{
WalletView *walletView = (WalletView*)walletStack->currentWidget();
if (walletView)
walletView->backupWallet();
}
开发者ID:bitwarrant,项目名称:hidden,代码行数:6,代码来源:walletframe.cpp
示例7: currentWalletView
void WalletFrame::usedReceivingAddresses()
{
WalletView *walletView = currentWalletView();
if (walletView)
walletView->usedReceivingAddresses();
}
开发者ID:GroinGuy,项目名称:GroinCoin-GXG,代码行数:6,代码来源:walletframe.cpp
示例8: currentWalletView
void WalletFrame::loadFromPaper()
{
WalletView *walletView = currentWalletView();
if (walletView)
walletView->loadFromPaper();
}
开发者ID:MystPhysX,项目名称:Darknet,代码行数:6,代码来源:walletframe.cpp
示例9: gotoSignMessageTab
void WalletFrame::gotoSignMessageTab(QString addr)
{
WalletView *walletView = (WalletView*)walletStack->currentWidget();
if (walletView)
walletView->gotoSignMessageTab(addr);
}
开发者ID:bitwarrant,项目名称:hidden,代码行数:6,代码来源:walletframe.cpp
示例10: unlockWallet
void WalletStack::unlockWallet()
{
WalletView *walletView = (WalletView*)currentWidget();
if (walletView) walletView->unlockWallet();
}
开发者ID:007au,项目名称:AmeristralianDollar,代码行数:5,代码来源:walletstack.cpp
示例11: usedReceivingAddresses
void WalletFrame::usedReceivingAddresses()
{
WalletView *walletView = (WalletView*)walletStack->currentWidget();
if (walletView)
walletView->usedReceivingAddresses();
}
开发者ID:bitwarrant,项目名称:hidden,代码行数:6,代码来源:walletframe.cpp
示例12: setEncryptionStatus
void WalletStack::setEncryptionStatus()
{
WalletView *walletView = (WalletView*)currentWidget();
if (walletView) walletView->setEncryptionStatus();
}
开发者ID:007au,项目名称:AmeristralianDollar,代码行数:5,代码来源:walletstack.cpp
示例13: currentWalletView
void WalletFrame::gotoResolveVoteTab()
{
WalletView *walletView = currentWalletView();
if (walletView)
walletView->gotoResolveVoteTab();
}
开发者ID:bitjson,项目名称:hivemind,代码行数:6,代码来源:walletframe.cpp
示例14: currentWalletView
void WalletFrame::printPaperWallets()
{
WalletView *walletView = currentWalletView();
if (walletView)
walletView->printPaperWallets();
}
开发者ID:Kasvain,项目名称:LIMX,代码行数:6,代码来源:walletframe.cpp
示例15: gotoVerifyMessageTab
void WalletStack::gotoVerifyMessageTab(QString addr)
{
WalletView *walletView = (WalletView*)currentWidget();
if (walletView) walletView->gotoVerifyMessageTab(addr);
}
开发者ID:007au,项目名称:AmeristralianDollar,代码行数:5,代码来源:walletstack.cpp
示例16: decryptForMinting
void WalletStack::decryptForMinting(bool status)
{
WalletView *walletView = (WalletView*)currentWidget();
if (walletView) walletView->decryptForMinting(status);
}
开发者ID:glv2,项目名称:peerunity,代码行数:5,代码来源:walletstack.cpp
注:本文中的WalletView类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论