Home
last modified time | relevance | path

Searched refs:progress (Results 1 – 18 of 18) sorted by relevance

/glogg/glogg/src/
H A Dquickfind.cpp
H A Dcrawlerwidget.h
H A Dcrawlerwidget.cpp
H A Dmainwindow.cpp
H A Dmainwindow.h
/glogg/src/
H A Dquickfind.cpp43 qint64 progress; in sendNotification() local
45 progress = ( nb_lines + current_line ) * 100 / nb_lines; in sendNotification()
47 progress = current_line * 100 / nb_lines; in sendNotification()
48 emit notify( QFNotificationProgress( progress ) ); in sendNotification()
H A Dcrawlerwidget.h116 void loadingProgressed( int progress );
148 void updateFilteredView( int nbMatches, int progress, qint64 initial_position );
H A Dmainwindow.cpp600 void MainWindow::updateLoadingProgress( int progress ) in updateLoadingProgress() argument
602 LOG(logDEBUG) << "Loading progress: " << progress; in updateLoadingProgress()
609 if ( progress > 0 && progress < 100 ) { in updateLoadingProgress()
611 tr( " - Indexing lines... (%1 %)" ).arg( progress ) ); in updateLoadingProgress()
612 infoLine->displayGauge( progress ); in updateLoadingProgress()
H A Dcrawlerwidget.cpp299 void CrawlerWidget::updateFilteredView( int nbMatches, int progress, qint64 initial_position ) in updateFilteredView() argument
303 if ( progress == 100 ) { in updateFilteredView()
313 if ( progress > 0 ) { in updateFilteredView()
316 .arg( progress ) in updateFilteredView()
319 searchInfoLine->displayGauge( progress ); in updateFilteredView()
343 if ( ( progress == 100 ) && ( initial_position == 0 ) && ( !isFollowEnabled() ) ) { in updateFilteredView()
H A Dmainwindow.h102 void updateLoadingProgress( int progress );
/glogg/glogg/tests/
H A Dtestlogfiltereddata.cpp
/glogg/tests/
H A Dtestlogfiltereddata.cpp101 std::pair<int,int> progress = waitSearchProgressed(); in simpleSearchTest()
129 std::pair<int,int> progress; in simpleSearchTest() local
131 progress = waitSearchProgressed(); in simpleSearchTest()
133 } while ( progress.second < 100 ); in simpleSearchTest()
517 std::pair<int,int> progress; in lineLengthTest() local
519 progress = waitSearchProgressed(); in lineLengthTest()
522 } while ( progress.second < 100 ); in lineLengthTest()
/glogg/glogg/src/data/
H A Dlogfiltereddata.h
H A Dlogfiltereddata.cpp
H A Dlogdataworkerthread.cpp
/glogg/src/data/
H A Dlogfiltereddata.h119 void searchProgressed( int nbMatches, int progress, qint64 initial_position );
122 void handleSearchProgressed( int NbMatches, int progress, qint64 initial_position );
H A Dlogfiltereddata.cpp278 void LogFilteredData::handleSearchProgressed( int nbMatches, int progress, qint64 initial_position ) in handleSearchProgressed() argument
281 << nbMatches << " progress=" << progress; in handleSearchProgressed()
287 emit searchProgressed( nbMatches, progress, initial_position ); in handleSearchProgressed()
H A Dlogdataworkerthread.cpp270 int progress = ( file.size() > 0 ) ? pos*100 / file.size() : 100; in doIndex() local
271 emit indexingProgressed( progress ); in doIndex()