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.
44 lines
1.3 KiB
44 lines
1.3 KiB
/***************************************************************************
|
|
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 <tqtooltip.h>
|
|
|
|
class KSVDragList;
|
|
|
|
/**
|
|
* @short custom tooltip for use in @ref KDragList
|
|
* @author Peter Putzer
|
|
*/
|
|
class KDLToolTip : public TQToolTip
|
|
{
|
|
public:
|
|
KDLToolTip (KSVDragList *parent, TQToolTipGroup* group = 0L);
|
|
virtual ~KDLToolTip();
|
|
|
|
protected:
|
|
/**
|
|
* Reimplemented from TQToolTip for internal reasons.
|
|
*/
|
|
virtual void maybeTip (const TQPoint&);
|
|
|
|
private:
|
|
KSVDragList* mParent;
|
|
};
|
|
|
|
#endif
|
|
|