nesca/progressbardrawer.cpp

18 lines
320 B
C++
Raw Normal View History

2015-02-24 14:00:19 +00:00
#include "progressbardrawer.h"
#include "externData.h"
void ProgressbarDrawer::update()
{
emit pbTh->upd();
};
int nesca_3::perc = 0;
void ProgressbarDrawer::run()
{
while(globalScanFlag)
{
msleep(1000);
nesca_3::perc = (unsigned long)100*indexIP/(gTargetsOverall == 0 ? 1 : gTargetsOverall);
update();
};
};