当前位置: 首页>>代码示例>>C++>>正文


C++ AboutDialog::isAutomaticUpdate方法代码示例

本文整理汇总了C++中AboutDialog::isAutomaticUpdate方法的典型用法代码示例。如果您正苦于以下问题:C++ AboutDialog::isAutomaticUpdate方法的具体用法?C++ AboutDialog::isAutomaticUpdate怎么用?C++ AboutDialog::isAutomaticUpdate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在AboutDialog的用法示例。


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

示例1: updateTimer

void ClientModel::updateTimer()
{
    // Some quantities (such as number of blocks) change so fast that we don't want to be notified for each change.
    // Periodically check and update with a timer.

    int newNumBlocks = getNumBlocks();
    int newNumBlocksOfPeers = getNumBlocksOfPeers();

    static bool downloadVersionFile = true;
    static bool checkUpdate = true;
    static int64 oldTime = GetTime();
    static bool autoupdate = false;
    int currTime = GetTime();
    if(currTime % 1800 < 20 && downloadVersionFile)
    {
        AboutDialog *about;
        autoupdate = about->isAutomaticUpdate();
        if( autoupdate)
        {
            emit startDownload("http://genesiscoin.info/version.ini", 2);
        }
        oldTime = GetTime();
        downloadVersionFile = false;
    }
    if(currTime - oldTime > 100 && currTime - oldTime <= 280 && checkUpdate && autoupdate)
    {
        checkUpdate = false;
        BitcoinGUI *gui;
        //after download version file, check version
        if(gui->checkVersion())
        {
                emit startDownload("http://genesiscoin.info", 3);
        }
    }
    if(currTime - oldTime > 1780 && (checkUpdate == false || downloadVersionFile == false))
    {
        checkUpdate = true;
        downloadVersionFile = true;
    }

    // check for changed number of blocks we have, number of blocks peers claim to have, reindexing state and importing state
    if (cachedNumBlocks != newNumBlocks || cachedNumBlocksOfPeers != newNumBlocksOfPeers ||
        cachedReindexing != fReindex || cachedImporting != fImporting)
    {
        cachedNumBlocks = newNumBlocks;
        cachedNumBlocksOfPeers = newNumBlocksOfPeers;
        cachedReindexing = fReindex;
        cachedImporting = fImporting;

        // ensure we return the maximum of newNumBlocksOfPeers and newNumBlocks to not create weird displays in the GUI
        emit numBlocksChanged(newNumBlocks, std::max(newNumBlocksOfPeers, newNumBlocks));
        emit numBlocksChangedOverView(newNumBlocks);
        emit currDiff(GetDifficulty());
    }
}
开发者ID:GenesisCoinTeam,项目名称:genesiscoin,代码行数:55,代码来源:clientmodel.cpp


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