Klamscan, Scheduler: Reset DirectoryList after use

Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
(cherry picked from commit 69817f0eae)
r14.0.x
Mavridis Philippe 3 years ago committed by Michele Calgaro
parent 769a496bf7
commit b43a934bb7
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -98,6 +98,7 @@ Item::Item( TQListView *parent, CollectionSetup *collection, const TQString &nam
else
setPixmap( 0, SmallIcon( "folder" ) );
setVisible( true );
connect( collectionSetup, SIGNAL(resetDirs()), this, SLOT(reset()) );
}
@ -115,6 +116,7 @@ Item::Item( TQListViewItem *parent, CollectionSetup *collection, const KURL &url
connect( &m_lister, SIGNAL(newItems( const KFileItemList& )), SLOT(newItems( const KFileItemList& )) );
connect( &m_lister, SIGNAL(completed()), SLOT(completed()) );
connect( &m_lister, SIGNAL(canceled()), SLOT(completed()) );
connect( collectionSetup, SIGNAL(resetDirs()), this, SLOT(reset()) );
}
@ -225,6 +227,8 @@ Item::paintCell( TQPainter * p, const TQColorGroup & cg, int column, int width,
setOn(false);
}
void Item::reset() { this->setOn(false); }
//////////////////////////////////////////////////////////////////////////////////////////
// CLASS DeviceItem
//////////////////////////////////////////////////////////////////////////////////////////
@ -237,6 +241,7 @@ DeviceItem::DeviceItem( TQListView *parent, CollectionSetup *collection )
collectionSetup = collection;
m_lister.setDirOnlyMode( true );
connect( &m_lister, SIGNAL(newItems( const KFileItemList& )), SLOT(newItems( const KFileItemList& )) );
connect( collectionSetup, SIGNAL(resetDirs()), this, SLOT(reset()) );
if ( KDE::versionMajor() == 3 && KDE::versionMinor() < 4 )
{
@ -299,6 +304,7 @@ DeviceItem::DeviceItem( TQListViewItem *parent, CollectionSetup *collection, con
connect( &m_lister, SIGNAL(newItems( const KFileItemList& )), SLOT(newItems( const KFileItemList& )) );
connect( &m_lister, SIGNAL(completed()), SLOT(completed()) );
connect( &m_lister, SIGNAL(canceled()), SLOT(completed()) );
connect( collectionSetup, SIGNAL(resetDirs()), this, SLOT(reset()) );
}
@ -475,6 +481,8 @@ DeviceItem::mountDevice( const TQString & device)
}
}
void DeviceItem::reset() { this->setOn(false); }
TQStringList CollectionSetup::pruneSelectedDirs( TQStringList listOfUrls ){
// This gets rid of redundant sub-directories
// from the list of dirs to be scanned.
@ -538,4 +546,9 @@ void CollectionSetup::writeConfig( const char* optGroup, const char* optName )
config->sync();
}
void CollectionSetup::reset()
{
emit resetDirs();
}
#include "directorylist.moc"

@ -48,9 +48,11 @@ public:
static TQStringList pruneSelectedDirs( TQStringList listOfUrls = 0 );
void writeConfig( const char* optGroup, const char* optName );
void reset();
signals:
void dirsSelected(TQStringList& dirs);
void resetDirs();
public slots:
@ -85,6 +87,7 @@ public:
public slots:
void newItems( const KFileItemList& );
void completed() { if( childCount() == 0 ) { setExpandable( false ); repaint(); } }
void reset();
private:
CollectionSetup *collectionSetup;
@ -113,6 +116,7 @@ class DeviceItem : public TQObject, public TQCheckListItem
public slots:
void newItems( const KFileItemList& );
void completed() { if( childCount() == 0 ) { setExpandable( false ); repaint(); } }
void reset();
private:
void mountDevice(const TQString & device);
CollectionSetup *collectionSetup;

@ -415,6 +415,8 @@ void Klamscan::slotStartAgain(){
}else
slotScan();
setup->reset();
//slotManageButtons(tabBrowser->currentPage());
}

@ -198,6 +198,7 @@ void Schedule::slotScheduleScan()
{
// Update directory list
filepattern = setup->dirs();
setup->reset();
/* cthost = new CTHost();*/
/* const CTHost& cth(*cthost);

Loading…
Cancel
Save