blob: 4de2fb34331b548c71396b57c2b8e759326e78bf (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/*
mtip.h - A tip widget
Copyright (C) 2003 Konrad Twardowski <kdtonline@poczta.onet.pl>
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; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __MTIP_H__
#define __MTIP_H__
#include <kactivelabel.h>
/** @short A tip widget based on the @c KActiveLabel widget. */
class MTip: public KActiveLabel
{
public:
/**
* Tip types.
*/
enum TipType {
Info, /**< Info tip. */
Normal, /**< Normal tip. */
Warning /**< Warning tip. */
};
/**
* Constructor.
* @param tipType A tip type
* @param parent A parent widget
*/
MTip(const TipType tipType, QWidget *parent);
/**
* Destructor.
*/
virtual ~MTip();
/**
* Sets tip text to @p value.
*/
void setTipText(const QString &value);
/**
* Sets tip type to @p value.
*/
void setTipType(const TipType value);
private:
QString _iconPath;
TipType _type;
QString getIconPath(const QString &name) const;
};
#endif // __MTIP_H__
|