blob: 735d22d7f3bf53826ee092863cb76103a389cb7c (
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
|
/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for Qt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include <qwidget.h>
#include <qtooltip.h>
class DynamicTip : public QToolTip
{
public:
DynamicTip( QWidget * parent );
protected:
void maybeTip( const QPoint & );
};
class TellMe : public QWidget
{
Q_OBJECT
public:
TellMe( QWidget * parent = 0, const char * name = 0 );
~TellMe();
QRect tip( const QPoint & );
protected:
void paintEvent( QPaintEvent * );
void mousePressEvent( QMouseEvent * );
void resizeEvent( QResizeEvent * );
private:
QRect randomRect();
QRect r1, r2, r3;
DynamicTip * t;
};
|