summaryrefslogtreecommitdiffstats
path: root/libktorrent/interfaces/exitoperation.h
blob: 2a33f249fcb3ce1657ea2a5cca74ba525cdf1aa8 (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
59
60
61
62
63
64
65
66
67
68
69
/***************************************************************************
 *   Copyright (C) 2005 by Joris Guisson                                   *
 *   joris.guisson@gmail.com                                               *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
 ***************************************************************************/
#ifndef KTEXITOPERATION_H
#define KTEXITOPERATION_H

#include <tqobject.h>
#include <tdeio/job.h>

namespace kt
{

	/**
	 * @author Joris Guisson <joris.guisson@gmail.com>
	 * 
	 * Object to derive from for operations which need to be performed at exit.
	 * The operation should emit the operationFinished signal when they are done.
	 * 
	 * ExitOperation's can be used in combination with a WaitJob, to wait for a certain amount of time
	 * to give serveral ExitOperation's the time time to finish up.
	*/
	class ExitOperation : public TQObject
	{
		Q_OBJECT
  
	public:
		ExitOperation();
		virtual ~ExitOperation();

		/// wether or not we can do a deleteLater on the job after it has finished.
		virtual bool deleteAllowed() const {return true;}
	signals:
		void operationFinished(kt::ExitOperation* opt);
	};

	/**
	 * Exit operation which waits for a TDEIO::Job
	 */
	class ExitJobOperation : public ExitOperation
	{
		Q_OBJECT
  
	public:
		ExitJobOperation(TDEIO::Job* j);
		virtual ~ExitJobOperation();
		
		virtual bool deleteAllowed() const {return false;}
	private slots:
		virtual void onResult(TDEIO::Job* j);
	};
}

#endif