summaryrefslogtreecommitdiffstats
path: root/ksysv/kdltooltip.h
blob: a1b45b400e1c8d8e2b6f50daa72b34627f5ab5a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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 <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