blob: 26a3c014374d647123fd49027859123ecddab4b8 (
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 <ntqtooltip.h>
/**
@author Magnus Kulke
*/
class KbStatusTip : public TQToolTip
{
public:
KbStatusTip(TQWidget * widget);
void maybeTip(const TQPoint &pos);
void ShowStatus(TQString msg);
};
#endif
|