KDE3Support
k3colordrag.h
Go to the documentation of this file.
00001 /* This file is part of the KDE libraries 00002 Copyright (C) 1999 Steffen Hansen (hansen@kde.org) 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License as published by the Free Software Foundation; either 00007 version 2 of the License, or (at your option) any later version. 00008 00009 This library is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 Library General Public License for more details. 00013 00014 You should have received a copy of the GNU Library General Public License 00015 along with this library; see the file COPYING.LIB. If not, write to 00016 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00017 Boston, MA 02110-1301, USA. 00018 */ 00019 00020 #ifndef _K3COLORDRAG_H 00021 #define _K3COLORDRAG_H 00022 00023 #include <kde3support_export.h> 00024 00025 #include <Qt3Support/Q3ColorDrag> 00026 #include <QtGui/QColor> 00027 00028 class K3ColorDragPrivate; 00035 class KDE3SUPPORT_EXPORT K3ColorDrag : public Q3StoredDrag { 00036 Q_OBJECT 00037 00038 public: 00042 K3ColorDrag( QWidget *dragsource = 0, const char *name = 0 ); 00046 K3ColorDrag( const QColor &col, QWidget *dragsource = 0, const char *name = 0 ); 00047 virtual ~K3ColorDrag() {} 00048 00049 virtual const char *format(int i) const; 00050 virtual QByteArray encodedData ( const char * m ) const; 00051 00055 void setColor(const QColor &col); 00059 static bool canDecode(QMimeSource *e); 00063 static bool decode(QMimeSource *e, QColor &col); 00067 static K3ColorDrag* makeDrag( const QColor&,QWidget *dragsource); 00068 00069 private: 00070 QColor m_color; // unused 00071 protected: 00072 virtual void virtual_hook( int id, void* data ); 00073 private: 00074 K3ColorDragPrivate *d; 00075 }; 00076 00077 00078 #endif // _KCOLORDRAG_H
KDE 4.6 API Reference