diff options
Diffstat (limited to 'ksysv/kdltooltip.h')
-rw-r--r-- | ksysv/kdltooltip.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/ksysv/kdltooltip.h b/ksysv/kdltooltip.h new file mode 100644 index 0000000..a107383 --- /dev/null +++ b/ksysv/kdltooltip.h @@ -0,0 +1,43 @@ +/*************************************************************************** + begin : Tue Oct 5 1999 + copyright : (C) 1999 by Peter Putzer + email : putzer@kde.org + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; version 2. * + * * + ***************************************************************************/ + +#ifndef KDLTOOLTIP_H +#define KDLTOOLTIP_H + +#include <qtooltip.h> + +class KSVDragList; + +/** + * @short custom tooltip for use in @ref KDragList + * @author Peter Putzer + */ +class KDLToolTip : public QToolTip +{ +public: + KDLToolTip (KSVDragList *parent, QToolTipGroup* group = 0L); + virtual ~KDLToolTip(); + +protected: + /** + * Reimplemented from QToolTip for internal reasons. + */ + virtual void maybeTip (const QPoint&); + +private: + KSVDragList* mParent; +}; + +#endif + |