blob: 5a1eb4143977e58080180bc045e15d1cf621109c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
//
// 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" ).tqarg( addedFolder.name ).tqarg( 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"
|