blob: 0d410bf59cbf8a975fe00c50432746c91c081774 (
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
|
/****************************************************************************
** $Id$
**
** Copyright (C) 2002 Carsten Pfeiffer <pfeiffer@kde.org>
**
****************************************************************************/
#ifndef KGET_IFACE_H
#define KGET_IFACE_H
#include <dcopobject.h>
#include <kurl.h>
class KGetIface : public DCOPObject
{
K_DCOP
protected:
KGetIface( TQCString objId ) : DCOPObject( objId ) {}
k_dcop:
/**
* @param src The urls to download
* @param destDir The destination direction or TQString() if unspecified
*/
virtual ASYNC addTransfers( const KURL::List& src, const TQString& destDir = TQString() ) = 0;
virtual bool isDropTargetVisible() const = 0;
virtual void setDropTargetVisible( bool setVisible ) = 0;
virtual void setOfflineMode( bool offline ) = 0;
virtual bool isOfflineMode() const = 0;
};
#endif // KGET_IFACE_H
|