blob: 7c68c932652c2aaa9278a721bc31dad7fcaadf8f (
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
|
/****************************************************************************
**
** 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 <qtooltip.h>
#include <qtable.h>
#include "tooltip.h"
HeaderToolTip::HeaderToolTip( QHeader *header, QToolTipGroup *group )
: QToolTip( header, group )
{
}
void HeaderToolTip::maybeTip ( const QPoint& p )
{
QHeader *header = (QHeader*)parentWidget();
int section = 0;
if ( header->orientation() == Horizontal )
section = header->sectionAt( header->offset() + p.x() );
else
section = header->sectionAt( header->offset() + p.y() );
QString tipString = header->label( section );
tip( header->sectionRect( section ), tipString, "This is a section in a header" );
}
TableToolTip::TableToolTip( QTable *tipTable, QToolTipGroup *group )
: QToolTip( tipTable->viewport(), group ), table( tipTable )
{
}
void TableToolTip::maybeTip ( const QPoint &p )
{
QPoint cp = table->viewportToContents( p );
int row = table->rowAt( cp.y() );
int col = table->columnAt( cp.x() );
QString tipString = table->text( row, col );
QRect cr = table->cellGeometry( row, col );
cr.moveTopLeft( table->contentsToViewport( cr.topLeft() ) );
tip( cr, tipString, "This is a cell in a table" );
}
|