summaryrefslogtreecommitdiffstats
path: root/src/kbstatustip.h
blob: 8b957cd137511856b9c6690564d9b31116fca020 (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
//
// C++ Interface: kbstatustip
//
// Description: 
//
//
// Author: Magnus Kulke <mkulke@magnusmachine>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KBSTATUSTIP_H
#define KBSTATUSTIP_H

#include <tqtooltip.h>

/**
@author Magnus Kulke
*/
class KbStatusTip : public TQToolTip
{
public:
	KbStatusTip(TQWidget * widget);
	void maybeTip(const TQPoint &pos);
	void ShowStatus(TQString msg);
};

#endif