summaryrefslogtreecommitdiffstats
path: root/src/kerrylabel.h
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2013-07-27 16:34:45 +0200
committerSlávek Banko <[email protected]>2013-07-27 16:34:45 +0200
commitd76ff81b7c1beffef0b84e570914c8f2d47834e6 (patch)
tree284b80ce7c5456fbb041f7979ac2c0baeead8902 /src/kerrylabel.h
downloadtork-d76ff81b7c1beffef0b84e570914c8f2d47834e6.tar.gz
tork-d76ff81b7c1beffef0b84e570914c8f2d47834e6.zip
Initial import of tork 0.33
Diffstat (limited to 'src/kerrylabel.h')
-rw-r--r--src/kerrylabel.h57
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 <[email protected]>
+ Copyright (C) 2000 Peter Putzer <[email protected]>
+ Copyright (C) 2005 Jaroslaw Staniek <[email protected]>
+
+ 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