diff options
Diffstat (limited to 'src/kerrylabel.h')
-rw-r--r-- | src/kerrylabel.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/kerrylabel.h b/src/kerrylabel.h new file mode 100644 index 0000000..f6782be --- /dev/null +++ b/src/kerrylabel.h @@ -0,0 +1,57 @@ +/* This file is part of the KDE libraries + Copyright (C) 1998 Kurt Granroth <granroth@kde.org> + Copyright (C) 2000 Peter Putzer <putzer@kde.org> + Copyright (C) 2005 Jaroslaw Staniek <js@iidea.pl> + + 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 KERRYLABEL_H +#define KERRYLABEL_H + +#include <kurl.h> +#include <kurllabel.h> + +class QTextDrag; + +class KerryLabel : public KURLLabel +{ + Q_OBJECT + + public: + KerryLabel (QWidget* parent = 0L, const char* name = 0L); + + protected: + void mousePressEvent( QMouseEvent* ); + void mouseReleaseEvent( QMouseEvent* ); + void mouseMoveEvent( QMouseEvent* ); + void doDrag(); + +// protected slots: +// void popupMenu( const QPoint &_global ); + + private: + KURL::List kurllist; + + enum DragState { diNone, diPending, diDragging }; + + struct _dragInfo { + DragState state; + QPoint start; + QTextDrag *dragObject; + } dragInfo; +}; + +#endif // KERRYLABEL_H |