summaryrefslogtreecommitdiffstats
path: root/src/kbstatustip.h
blob: 1fec765695f0309f62668936923fbe81850277a5 (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 <qtooltip.h>

/**
@author Magnus Kulke
*/
class KbStatusTip : public QToolTip
{
public:
	KbStatusTip(QWidget * widget);
	void maybeTip(const QPoint &pos);
	void ShowStatus(QString msg);
};

#endif