您当前的位置:首页 > IT编程 > C++
| C语言 | Java | VB | VC | python | Android | TensorFlow | C++ | oracle | 学术与代码 | cnn卷积神经网络 | gnn | 图像修复 | Keras | 数据集 | Neo4j | 自然语言处理 | 深度学习 | 医学CAD | 医学影像 | 超参数 | pointnet | pytorch | 异常检测 | Transformers | 情感分类 | 知识图谱 |

自学教程:C++ startExecutor函数代码示例

51自学网 2021-06-03 08:21:37
  C++
这篇教程C++ startExecutor函数代码示例写得很实用,希望能帮到您。

本文整理汇总了C++中startExecutor函数的典型用法代码示例。如果您正苦于以下问题:C++ startExecutor函数的具体用法?C++ startExecutor怎么用?C++ startExecutor使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。

在下文中一共展示了startExecutor函数的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。

示例1: QDialog

RPCConsole::RPCConsole(QWidget *parent) :    QDialog(parent),    ui(new Ui::RPCConsole),    historyPtr(0){    ui->setupUi(this);#ifndef Q_OS_MAC    ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export"));    ui->showCLOptionsButton->setIcon(QIcon(":/icons/options"));#endif    // Install event filter for up and down arrow    ui->lineEdit->installEventFilter(this);    ui->messagesWidget->installEventFilter(this);    connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));    // set OpenSSL version label    ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION));    startExecutor();    setTrafficGraphRange(INITIAL_TRAFFIC_GRAPH_MINS);    clear();}
开发者ID:bitoncoin,项目名称:stakecoin,代码行数:26,


示例2: QDialog

RPCConsole::RPCConsole(QWidget *parent) :    QDialog(parent),    ui(new Ui::RPCConsole),    clientModel(0),    historyPtr(0){    ui->setupUi(this);    GUIUtil::restoreWindowGeometry("nRPCConsoleWindow", this->size(), this);#ifndef Q_OS_MAC    ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export"));    ui->showCLOptionsButton->setIcon(QIcon(":/icons/options"));#endif    // Install event filter for up and down arrow    ui->lineEdit->installEventFilter(this);    ui->messagesWidget->installEventFilter(this);    connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));    // set OpenSSL version label    ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION));    startExecutor();    clear();}
开发者ID:randayh,项目名称:umaro,代码行数:27,


示例3: QDialog

RPCConsole::RPCConsole(QWidget *parent) :    QDialog(parent),    ui(new Ui::RPCConsole),    clientModel(0),    historyPtr(0),    cachedNodeid(-1){    ui->setupUi(this);    //GUIUtil::restoreWindowGeometry("nRPCConsoleWindow", this->size(), this);#ifndef Q_OS_MAC    ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export"));    ui->showCLOptionsButton->setIcon(QIcon(":/icons/options"));#endif    ui->clearButton->setIcon(QIcon(":/icons/remove"));        // Install event filter for up and down arrow    ui->lineEdit->installEventFilter(this);    ui->messagesWidget->installEventFilter(this);    connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));    connect(ui->btnClearTrafficGraph, SIGNAL(clicked()), ui->trafficGraph, SLOT(clear()));    // set library version labels    ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION));    ui->berkeleyDBVersion->setText(DbEnv::version(0, 0, 0));    startExecutor();    setTrafficGraphRange(INITIAL_TRAFFIC_GRAPH_MINS);    ui->detailWidget->hide();    ui->peerHeading->setText(tr("Select a peer to view detailed information."));    clear();}
开发者ID:butterflypay,项目名称:butterflymaster,代码行数:35,


示例4: QDialog

RPCConsole::RPCConsole(QWidget *parent) :    QDialog(parent),    ui(new Ui::RPCConsole),    historyPtr(0){    ui->setupUi(this);#ifndef Q_OS_MAC    ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export"));    ui->showCLOptionsButton->setIcon(QIcon(":/icons/options"));#endif    // Install event filter for up and down arrow    ui->lineEdit->installEventFilter(this);    ui->messagesWidget->installEventFilter(this);    ui->messagesWidget->setStyleSheet("{background-color:#ffffff;color:#000000;}");    connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));    // set OpenSSL version label    ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION));    startExecutor();    clear();}
开发者ID:gikopool,项目名称:kumacoin,代码行数:25,


示例5: QWidget

RPCConsole::RPCConsole(const PlatformStyle *platformStyle, QWidget *parent) :    QWidget(parent),    ui(new Ui::RPCConsole),    clientModel(0),    historyPtr(0),    cachedNodeid(-1),    platformStyle(platformStyle),    peersTableContextMenu(0),    banTableContextMenu(0),    consoleFontSize(0){    ui->setupUi(this);    GUIUtil::restoreWindowGeometry("nRPCConsoleWindow", this->size(), this);    ui->openDebugLogfileButton->setToolTip(ui->openDebugLogfileButton->toolTip().arg(tr(PACKAGE_NAME)));    if (platformStyle->getImagesOnButtons()) {        ui->openDebugLogfileButton->setIcon(platformStyle->SingleColorIcon(":/icons/export"));    }    ui->clearButton->setIcon(platformStyle->SingleColorIcon(":/icons/remove"));    ui->fontBiggerButton->setIcon(platformStyle->SingleColorIcon(":/icons/fontbigger"));    ui->fontSmallerButton->setIcon(platformStyle->SingleColorIcon(":/icons/fontsmaller"));    // Install event filter for up and down arrow    ui->lineEdit->installEventFilter(this);    ui->messagesWidget->installEventFilter(this);    connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));    connect(ui->fontBiggerButton, SIGNAL(clicked()), this, SLOT(fontBigger()));    connect(ui->fontSmallerButton, SIGNAL(clicked()), this, SLOT(fontSmaller()));    connect(ui->btnClearTrafficGraph, SIGNAL(clicked()), ui->trafficGraph, SLOT(clear()));    // set library version labels#ifdef ENABLE_WALLET    ui->berkeleyDBVersion->setText(DbEnv::version(0, 0, 0));#else    ui->label_berkeleyDBVersion->hide();    ui->berkeleyDBVersion->hide();#endif    // Register RPC timer interface    rpcTimerInterface = new QtRPCTimerInterface();    // avoid accidentally overwriting an existing, non QTThread    // based timer interface    RPCSetTimerInterfaceIfUnset(rpcTimerInterface);    startExecutor();    setTrafficGraphRange(INITIAL_TRAFFIC_GRAPH_MINS);    ui->detailWidget->hide();    ui->peerHeading->setText(tr("Select a peer to view detailed information."));    QSettings settings;    consoleFontSize = settings.value(fontSizeSettingsKey, QFontInfo(QFont()).pointSize()).toInt();    clear();}
开发者ID:2GOOD,项目名称:Ladybug-pupa,代码行数:55,


示例6: QWidget

RPCConsole::RPCConsole(const PlatformStyle *platformStyle, QWidget *parent) :    QWidget(parent),    ui(new Ui::RPCConsole),    clientModel(0),    historyPtr(0),    cachedNodeid(-1),    platformStyle(platformStyle),    peersTableContextMenu(0),    banTableContextMenu(0){    ui->setupUi(this);    GUIUtil::restoreWindowGeometry("nRPCConsoleWindow", this->size(), this);    if (platformStyle->getImagesOnButtons()) {        ui->openDebugLogfileButton->setIcon(platformStyle->SingleColorIcon(":/icons/export"));    }    ui->clearButton->setIcon(platformStyle->SingleColorIcon(":/icons/remove"));    // Install event filter for up and down arrow    ui->lineEdit->installEventFilter(this);    ui->messagesWidget->installEventFilter(this);    connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));    connect(ui->btnClearTrafficGraph, SIGNAL(clicked()), ui->trafficGraph, SLOT(clear()));    // set library version labels#if (OPENSSL_VERSION_NUMBER < 0x10100000L)    ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION));#else    ui->openSSLVersion->setText(OpenSSL_version(OPENSSL_VERSION));#endif#ifdef ENABLE_WALLET    ui->berkeleyDBVersion->setText(DbEnv::version(0, 0, 0));#else    ui->label_berkeleyDBVersion->hide();    ui->berkeleyDBVersion->hide();#endif    // Register RPC timer interface    rpcTimerInterface = new QtRPCTimerInterface();    RPCRegisterTimerInterface(rpcTimerInterface);    startExecutor();    setTrafficGraphRange(INITIAL_TRAFFIC_GRAPH_MINS);    ui->detailWidget->hide();    ui->peerHeading->setText(tr("Select a peer to view detailed information."));    clear();}
开发者ID:austinvernsonger,项目名称:bitcoinclassic,代码行数:51,


示例7: QDialog

RPCConsole::RPCConsole(QWidget *parent) :    QDialog(parent),    ui(new Ui::RPCConsole),    historyPtr(0){    ui->setupUi(this);    // Install event filter for up and down arrow    ui->lineEdit->installEventFilter(this);    ui->messagesWidget->installEventFilter(this);    connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));    startExecutor();    clear();}
开发者ID:MystPhysX,项目名称:DigiCube,代码行数:17,


示例8: QDialog

RPCConsole::RPCConsole(QWidget* parent) : QDialog(parent),                                          ui(new Ui::RPCConsole),                                          clientModel(0),                                          historyPtr(0),                                          cachedNodeid(-1){    ui->setupUi(this);    GUIUtil::restoreWindowGeometry("nRPCConsoleWindow", this->size(), this);#ifndef Q_OS_MAC    ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export"));#endif    // Install event filter for up and down arrow    ui->lineEdit->installEventFilter(this);    ui->messagesWidget->installEventFilter(this);    connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));    connect(ui->btnClearTrafficGraph, SIGNAL(clicked()), ui->trafficGraph, SLOT(clear()));    // Wallet Repair Buttons    connect(ui->btn_salvagewallet, SIGNAL(clicked()), this, SLOT(walletSalvage()));    connect(ui->btn_rescan, SIGNAL(clicked()), this, SLOT(walletRescan()));    connect(ui->btn_zapwallettxes1, SIGNAL(clicked()), this, SLOT(walletZaptxes1()));    connect(ui->btn_zapwallettxes2, SIGNAL(clicked()), this, SLOT(walletZaptxes2()));    connect(ui->btn_upgradewallet, SIGNAL(clicked()), this, SLOT(walletUpgrade()));    connect(ui->btn_reindex, SIGNAL(clicked()), this, SLOT(walletReindex()));    // set library version labels    ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION));#ifdef ENABLE_WALLET    ui->berkeleyDBVersion->setText(DbEnv::version(0, 0, 0));    ui->wallet_path->setText(QString::fromStdString(GetDataDir().string() + QDir::separator().toLatin1() + GetArg("-wallet", "wallet.dat")));#else    ui->label_berkeleyDBVersion->hide();    ui->berkeleyDBVersion->hide();#endif    startExecutor();    setTrafficGraphRange(INITIAL_TRAFFIC_GRAPH_MINS);    ui->peerHeading->setText(tr("Select a peer to view detailed information."));    clear();}
开发者ID:nashanas,项目名称:ColossusCoinXT,代码行数:45,


示例9: QWidget

ConsolePage::ConsolePage(QWidget *parent) :    QWidget(parent),    ui(new Ui::ConsolePage),    historyPtr(0){    ui->setupUi(this);    // Install event filter for up and down arrow    ui->lineEdit->installEventFilter(this);    ui->messagesWidget->installEventFilter(this);    ui->clearButton->setVisible(false);    connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));    startExecutor();    clear();    //connect(&networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(onResult(QNetworkReply*)));}
开发者ID:BluntCoin,项目名称:bluntcoin,代码行数:18,


示例10: QDialog

RPCConsole::RPCConsole(QWidget *parent) :    QDialog(parent),    ui(new Ui::RPCConsole),    historyPtr(0){    ui->setupUi(this);    // Install event filter for up and down arrow    ui->lineEdit->installEventFilter(this);    ui->messagesWidget->installEventFilter(this);    connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));    // set OpenSSL version label    ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION));    startExecutor();    clear();}
开发者ID:noise23,项目名称:version,代码行数:19,


示例11: QDialog

RPCConsole::RPCConsole(QWidget *parent) :    QDialog(parent),    ui(new Ui::RPCConsole),    historyPtr(0){    ui->setupUi(this);#ifndef Q_WS_MAC    ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export"));    ui->showCLOptionsButton->setIcon(QIcon(":/icons/options"));#endif    // Install event filter for up and down arrow    ui->lineEdit->installEventFilter(this);    connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));    startExecutor();    clear();}
开发者ID:ed-ro0t,项目名称:Bytecoin-MM,代码行数:21,


示例12: QDialog

RPCConsole::RPCConsole(QWidget *parent) :    QDialog(parent),    ui(new Ui::RPCConsole),    clientModel(0),    historyPtr(0){    detailNodeStats = CNodeCombinedStats();    detailNodeStats.nodestats.nodeid = -1;    detailNodeStats.statestats.nMisbehavior = -1;    ui->setupUi(this);    GUIUtil::restoreWindowGeometry("nRPCConsoleWindow", this->size(), this);#ifndef Q_OS_MAC    ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export"));#endif    // Install event filter for up and down arrow    ui->lineEdit->installEventFilter(this);    ui->messagesWidget->installEventFilter(this);    connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));    connect(ui->btnClearTrafficGraph, SIGNAL(clicked()), ui->trafficGraph, SLOT(clear()));    // set library version labels    ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION));#ifdef ENABLE_WALLET    ui->berkeleyDBVersion->setText(DbEnv::version(0, 0, 0));#else    ui->label_berkeleyDBVersion->hide();    ui->berkeleyDBVersion->hide();#endif    startExecutor();    setTrafficGraphRange(INITIAL_TRAFFIC_GRAPH_MINS);    ui->detailWidget->hide();    clear();}
开发者ID:KaSt,项目名称:ekwicoin,代码行数:40,


示例13: setNumConnections

//.........这里部分代码省略.........        ui->peerWidget->setContextMenuPolicy(Qt::CustomContextMenu);        ui->peerWidget->setColumnWidth(PeerTableModel::Address, ADDRESS_COLUMN_WIDTH);        ui->peerWidget->setColumnWidth(PeerTableModel::Subversion, SUBVERSION_COLUMN_WIDTH);        ui->peerWidget->setColumnWidth(PeerTableModel::Ping, PING_COLUMN_WIDTH);        ui->peerWidget->horizontalHeader()->setStretchLastSection(true);        // create peer table context menu actions        QAction* disconnectAction = new QAction(tr("&Disconnect"), this);        QAction* banAction1h      = new QAction(tr("Ban for") + " " + tr("1 &hour"), this);        QAction* banAction24h     = new QAction(tr("Ban for") + " " + tr("1 &day"), this);        QAction* banAction7d      = new QAction(tr("Ban for") + " " + tr("1 &week"), this);        QAction* banAction365d    = new QAction(tr("Ban for") + " " + tr("1 &year"), this);        // create peer table context menu        peersTableContextMenu = new QMenu(this);        peersTableContextMenu->addAction(disconnectAction);        peersTableContextMenu->addAction(banAction1h);        peersTableContextMenu->addAction(banAction24h);        peersTableContextMenu->addAction(banAction7d);        peersTableContextMenu->addAction(banAction365d);        // Add a signal mapping to allow dynamic context menu arguments.        // We need to use int (instead of int64_t), because signal mapper only supports        // int or objects, which is okay because max bantime (1 year) is < int_max.        QSignalMapper* signalMapper = new QSignalMapper(this);        signalMapper->setMapping(banAction1h, 60*60);        signalMapper->setMapping(banAction24h, 60*60*24);        signalMapper->setMapping(banAction7d, 60*60*24*7);        signalMapper->setMapping(banAction365d, 60*60*24*365);        connect(banAction1h, SIGNAL(triggered()), signalMapper, SLOT(map()));        connect(banAction24h, SIGNAL(triggered()), signalMapper, SLOT(map()));        connect(banAction7d, SIGNAL(triggered()), signalMapper, SLOT(map()));        connect(banAction365d, SIGNAL(triggered()), signalMapper, SLOT(map()));        connect(signalMapper, SIGNAL(mapped(int)), this, SLOT(banSelectedNode(int)));        // peer table context menu signals        connect(ui->peerWidget, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(showPeersTableContextMenu(const QPoint&)));        connect(disconnectAction, SIGNAL(triggered()), this, SLOT(disconnectSelectedNode()));        // peer table signal handling - update peer details when selecting new node        connect(ui->peerWidget->selectionModel(), SIGNAL(selectionChanged(const QItemSelection &, const QItemSelection &)),            this, SLOT(peerSelected(const QItemSelection &, const QItemSelection &)));        // peer table signal handling - update peer details when new nodes are added to the model        connect(model->getPeerTableModel(), SIGNAL(layoutChanged()), this, SLOT(peerLayoutChanged()));        // peer table signal handling - cache selected node ids        connect(model->getPeerTableModel(), SIGNAL(layoutAboutToBeChanged()), this, SLOT(peerLayoutAboutToChange()));                // set up ban table        ui->banlistWidget->setModel(model->getBanTableModel());        ui->banlistWidget->verticalHeader()->hide();        ui->banlistWidget->setEditTriggers(QAbstractItemView::NoEditTriggers);        ui->banlistWidget->setSelectionBehavior(QAbstractItemView::SelectRows);        ui->banlistWidget->setSelectionMode(QAbstractItemView::SingleSelection);        ui->banlistWidget->setContextMenuPolicy(Qt::CustomContextMenu);        ui->banlistWidget->setColumnWidth(BanTableModel::Address, BANSUBNET_COLUMN_WIDTH);        ui->banlistWidget->setColumnWidth(BanTableModel::Bantime, BANTIME_COLUMN_WIDTH);        ui->banlistWidget->horizontalHeader()->setStretchLastSection(true);        // create ban table context menu action        QAction* unbanAction = new QAction(tr("&Unban"), this);        // create ban table context menu        banTableContextMenu = new QMenu(this);        banTableContextMenu->addAction(unbanAction);        // ban table context menu signals        connect(ui->banlistWidget, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(showBanTableContextMenu(const QPoint&)));        connect(unbanAction, SIGNAL(triggered()), this, SLOT(unbanSelectedNode()));        // ban table signal handling - clear peer details when clicking a peer in the ban table        connect(ui->banlistWidget, SIGNAL(clicked(const QModelIndex&)), this, SLOT(clearSelectedNode()));        // ban table signal handling - ensure ban table is shown or hidden (if empty)        connect(model->getBanTableModel(), SIGNAL(layoutChanged()), this, SLOT(showOrHideBanTableIfRequired()));        showOrHideBanTableIfRequired();        // Provide initial values        ui->clientVersion->setText(model->formatFullVersion());        ui->clientUserAgent->setText(model->formatSubVersion());        ui->dataDir->setText(model->dataDir());        ui->startupTime->setText(model->formatClientStartupTime());        ui->networkName->setText(QString::fromStdString(Params().NetworkIDString()));        //Setup autocomplete and attach it        QStringList wordList;        std::vector<std::string> commandList = tableRPC.listCommands();        for (size_t i = 0; i < commandList.size(); ++i)        {            wordList << commandList[i].c_str();            wordList << ("help " + commandList[i]).c_str();        }        wordList << "help-console";        wordList.sort();        autoCompleter = new QCompleter(wordList, this);        autoCompleter->setModelSorting(QCompleter::CaseSensitivelySortedModel);        ui->lineEdit->setCompleter(autoCompleter);        autoCompleter->popup()->installEventFilter(this);        // Start thread to execute RPC commands.        startExecutor();    }
开发者ID:AmesianX,项目名称:bitcoin,代码行数:101,


示例14: QDialog

RPCConsole::RPCConsole(QWidget* parent) : QDialog(parent, Qt::WindowSystemMenuHint | Qt::WindowTitleHint | Qt::WindowCloseButtonHint),                                          ui(new Ui::RPCConsole),                                          clientModel(0),                                          historyPtr(0),                                          cachedNodeid(-1),                                          peersTableContextMenu(0),                                          banTableContextMenu(0){    ui->setupUi(this);    GUIUtil::restoreWindowGeometry("nRPCConsoleWindow", this->size(), this);#ifndef Q_OS_MAC    ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export"));#endif    // Install event filter for up and down arrow    ui->lineEdit->installEventFilter(this);    ui->messagesWidget->installEventFilter(this);    connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear()));    connect(ui->btnClearTrafficGraph, SIGNAL(clicked()), ui->trafficGraph, SLOT(clear()));    // Wallet Repair Buttons    connect(ui->btn_salvagewallet, SIGNAL(clicked()), this, SLOT(walletSalvage()));    connect(ui->btn_rescan, SIGNAL(clicked()), this, SLOT(walletRescan()));    connect(ui->btn_zapwallettxes1, SIGNAL(clicked()), this, SLOT(walletZaptxes1()));    connect(ui->btn_zapwallettxes2, SIGNAL(clicked()), this, SLOT(walletZaptxes2()));    connect(ui->btn_upgradewallet, SIGNAL(clicked()), this, SLOT(walletUpgrade()));    connect(ui->btn_reindex, SIGNAL(clicked()), this, SLOT(walletReindex()));    connect(ui->btn_resync, SIGNAL(clicked()), this, SLOT(walletResync()));    // set library version labels    ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION));#ifdef ENABLE_WALLET    std::string strPathCustom = GetArg("-backuppath", "");    std::string strxIONPathCustom = GetArg("-xionbackuppath", "");    int nCustomBackupThreshold = GetArg("-custombackupthreshold", DEFAULT_CUSTOMBACKUPTHRESHOLD);    if(!strPathCustom.empty()) {        ui->wallet_custombackuppath->setText(QString::fromStdString(strPathCustom));        ui->wallet_custombackuppath_label->show();        ui->wallet_custombackuppath->show();    }    if(!strxIONPathCustom.empty()) {        ui->wallet_customxionbackuppath->setText(QString::fromStdString(strxIONPathCustom));        ui->wallet_customxionbackuppath_label->setVisible(true);        ui->wallet_customxionbackuppath->setVisible(true);    }    if((!strPathCustom.empty() || !strxIONPathCustom.empty()) && nCustomBackupThreshold > 0) {        ui->wallet_custombackupthreshold->setText(QString::fromStdString(std::to_string(nCustomBackupThreshold)));        ui->wallet_custombackupthreshold_label->setVisible(true);        ui->wallet_custombackupthreshold->setVisible(true);    }    ui->berkeleyDBVersion->setText(DbEnv::version(0, 0, 0));    ui->wallet_path->setText(QString::fromStdString(GetDataDir().string() + QDir::separator().toLatin1() + GetArg("-wallet", "wallet.dat")));#else    ui->label_berkeleyDBVersion->hide();    ui->berkeleyDBVersion->hide();#endif    // Register RPC timer interface    rpcTimerInterface = new QtRPCTimerInterface();    // avoid accidentally overwriting an existing, non QTThread    // based timer interface    RPCSetTimerInterfaceIfUnset(rpcTimerInterface);    startExecutor();    setTrafficGraphRange(INITIAL_TRAFFIC_GRAPH_MINS);    ui->peerHeading->setText(tr("Select a peer to view detailed information."));    clear();}
开发者ID:ionomy,项目名称:ion,代码行数:76,



注:本文中的startExecutor函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


C++ startGame函数代码示例
C++ startDrag函数代码示例
万事OK自学网:51自学网_软件自学网_CAD自学网自学excel、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。