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.
tdenetwork/kopete/protocols/groupwise/libgroupwise/tasks/needfoldertask.cpp

59 lines
1.6 KiB

//
// C++ Implementation: %{MODULE}
//
// Description:
//
//
// Author: %{AUTHOR} <%{EMAIL}>, (C) %{YEAR}
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "client.h"
#include "tasks/createcontactinstancetask.h"
#include "tasks/createfoldertask.h"
#include "needfoldertask.h"
NeedFolderTask::NeedFolderTask(Task* parent): ModifyContactListTask(parent)
{
}
NeedFolderTask::~NeedFolderTask()
{
}
void NeedFolderTask::createFolder()
{
CreateFolderTask * cct = new CreateFolderTask( client()->rootTask() );
cct->folder( 0, m_folderSequence, m_folderDisplayName );
connect( cct, TQT_SIGNAL( gotFolderAdded( const FolderItem & ) ), client(), TQT_SIGNAL( folderReceived( const FolderItem & ) ) );
connect( cct, TQT_SIGNAL( gotFolderAdded( const FolderItem & ) ), TQT_SLOT( slotFolderAdded( const FolderItem & ) ) );
connect( cct, TQT_SIGNAL( finished() ), TQT_SLOT( slotFolderTaskFinished() ) );
cct->go( true );
}
void NeedFolderTask::slotFolderAdded( const FolderItem & addedFolder )
{
// if this is the folder we were trying to create
if ( m_folderDisplayName == addedFolder.name )
{
client()->debug( TQString( "NeedFolderTask::slotFolderAdded() - Folder %1 was created on the server, now has objectId %2" ).arg( addedFolder.name ).arg( addedFolder.id ) );
m_folderId = addedFolder.id;
}
}
void NeedFolderTask::slotFolderTaskFinished()
{
CreateFolderTask *cct = ( CreateFolderTask* )sender();
if ( cct->success() )
{
// call our child class's action to be performed
onFolderCreated();
}
else
setError( 1, "Folder creation failed" );
}
#include "needfoldertask.moc"