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.
56 lines
2.0 KiB
56 lines
2.0 KiB
15 years ago
|
/* This file is part of the KDE libraries
|
||
|
Copyright (C) 2000 David Faure <faure@kde.org>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Library General Public
|
||
|
License version 2 as published by the Free Software Foundation.
|
||
|
|
||
|
This library 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
|
||
|
Library General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Library General Public License
|
||
|
along with this library; see the file COPYING.LIB. If not, write to
|
||
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
|
Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#ifndef __kebdrag_h
|
||
|
#define __kebdrag_h
|
||
|
|
||
14 years ago
|
#include <tqdragobject.h>
|
||
15 years ago
|
#include <kbookmark.h>
|
||
|
|
||
|
// Clipboard/dnd data : URLs + XML for bookmarks
|
||
12 years ago
|
class TDEIO_EXPORT KBookmarkDrag : public TQUriDrag
|
||
15 years ago
|
{
|
||
|
public:
|
||
14 years ago
|
static KBookmarkDrag * newDrag( const TQValueList<KBookmark> & bookmarks,
|
||
|
TQWidget * dragSource = 0,
|
||
15 years ago
|
const char * name = 0 );
|
||
|
static KBookmarkDrag * newDrag( const KBookmark & bookmark,
|
||
14 years ago
|
TQWidget * dragSource = 0,
|
||
15 years ago
|
const char * name = 0 );
|
||
|
protected:
|
||
14 years ago
|
KBookmarkDrag( const TQValueList<KBookmark> & bookmarks,
|
||
|
const TQStrList & urls,
|
||
|
TQWidget * dragSource,
|
||
15 years ago
|
const char * name );
|
||
|
public:
|
||
|
virtual ~KBookmarkDrag() {}
|
||
|
|
||
|
virtual const char* format( int i ) const;
|
||
13 years ago
|
virtual TQByteArray encodedData( const char* mime ) const;
|
||
15 years ago
|
|
||
14 years ago
|
static bool canDecode( const TQMimeSource * e );
|
||
|
static TQValueList<KBookmark> decode( const TQMimeSource * e );
|
||
15 years ago
|
|
||
|
protected:
|
||
14 years ago
|
TQValueList<KBookmark> m_bookmarks;
|
||
|
TQDomDocument m_doc;
|
||
15 years ago
|
class KBookmarkDragPrivate;
|
||
|
KBookmarkDragPrivate * d;
|
||
|
};
|
||
|
#endif
|