You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "isubject.h"
|
|
|
|
#include "interfaces/observer.h"
|
|
|
|
|
|
|
|
#include <tqtl.h>
|
|
|
|
|
|
|
|
#include <kdebug.h>
|
|
|
|
|
|
|
|
namespace KMail {
|
|
|
|
|
|
|
|
ISubject::~ISubject()
|
|
|
|
{
|
|
|
|
mObserverList.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ISubject::attach( Interface::Observer * pObserver )
|
|
|
|
{
|
|
|
|
if ( qFind( mObserverList.begin(), mObserverList.end(), pObserver ) == mObserverList.end() )
|
|
|
|
mObserverList.push_back( pObserver );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ISubject::detach( Interface::Observer * pObserver ) {
|
|
|
|
TQValueVector<Interface::Observer*>::iterator it = qFind( mObserverList.begin(), mObserverList.end(), pObserver );
|
|
|
|
if ( it != mObserverList.end() )
|
|
|
|
mObserverList.erase( it );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ISubject::notify()
|
|
|
|
{
|
|
|
|
kdDebug(5006) << "ISubject::notify " << mObserverList.size() << endl;
|
|
|
|
for ( TQValueVector<Interface::Observer*>::iterator it = mObserverList.begin() ; it != mObserverList.end() ; ++it )
|
|
|
|
(*it)->update( this );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|