本文整理汇总了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());
}
}