blob: fdc8ed0de7a4c8a23e894837a5cdd156e459e606 (
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
|
/****************************************************************************
**
** 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.
**
*****************************************************************************/
#ifndef WHATSTHIS_H
#define WHATSTHIS_H
#include <qwhatsthis.h>
class QHeader;
class QTable;
class WhatsThis : public QObject, public QWhatsThis
{
Q_OBJECT
public:
WhatsThis( QWidget *w, QWidget *watch = 0 );
bool clicked( const QString &link );
QWidget *parentWidget() const;
signals:
void linkClicked( const QString &link );
private:
QWidget *widget;
};
class HeaderWhatsThis : public WhatsThis
{
public:
HeaderWhatsThis( QHeader *h );
QString text( const QPoint &p );
};
class TableWhatsThis : public WhatsThis
{
public:
TableWhatsThis( QTable *t );
QString text( const QPoint &p );
};
#endif
|