summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/kopeteballoon.h
blob: 204584ced22d420a0d2e16a4d660350a88102984 (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
66
67
68
69
70
71
72
73
74
75
76
/*
    kopeteballoon.h  -  Nice Balloon

    Copyright (c) 2002      by Duncan Mac-Vicar Prett <duncan@kde.org>

    Kopete    (c) 2002-2005      by the Kopete developers  <kopete-devel@kde.org>

    Portions of this code based on Kim Applet code
    Copyright (c) 2000-2002 by Malte Starostik        <malte@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; either version 2 of the License, or     *
    * (at your option) any later version.                                   *
    *                                                                       *
    *************************************************************************
*/

#ifndef KOPETEBALLOON_H
#define KOPETEBALLOON_H

#include <tqwidget.h>
#include <kactivelabel.h>

/**
 * A class derived from KActiveLabel so we can handle how
 * links are opened.
 */
class KopeteActiveLabel : public KActiveLabel
{
	Q_OBJECT
  

public:
	KopeteActiveLabel( TQWidget *parent = 0, const char* name = 0 );
	KopeteActiveLabel( const TQString& text, TQWidget *parent = 0, const char* name = 0 );

public slots:
	virtual void openLink( const TQString &link );
};



/**
 * A little balloon for notifications
 *
 * @author Malte Starostik <malte@kde.org>
 * @author Duncan Mac-Vicar Prett <duncan@kde.org>
 */
class KopeteBalloon : public TQWidget
{
	Q_OBJECT
  

public:
	KopeteBalloon(const TQString &text, const TQString &pic);
//	KopeteBalloon();

	void setAnchor(const TQPoint &anchor);

signals:
	void signalButtonClicked();
	void signalIgnoreButtonClicked();
	void signalBalloonClicked();
	void signalTimeout();

protected:
	virtual void updateMask();

private:
	TQPoint mAnchor;
};

#endif