File: framewidget.cpp

package info (click to toggle)
kdiagram 3.0.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,732 kB
  • sloc: cpp: 52,386; makefile: 7; sh: 2
file content (66 lines) | stat: -rw-r--r-- 2,628 bytes parent folder | download
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
/**
 * SPDX-FileCopyrightText: 2001-2015 Klaralvdalens Datakonsult AB. All rights reserved.
 *
 * This file is part of the KD Chart library.
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#include "framewidget.h"

#include <KChartChart>

#include <QDebug>
#include <QPainter>

FrameWidget::FrameWidget( QWidget* parent, Qt::WindowFlags f )
    : QWidget( parent, f )
    , mChart( nullptr )
{
    // this block left empty intentionally
}

void FrameWidget::setChart( KChart::Chart* chart )
{
    mChart = chart;
    // This is necessary because Chart can't automatically schedule somebody else (this object) to
    // call its custom paint method.
    connect( mChart, SIGNAL(propertiesChanged()), SLOT(update()) );
}

void FrameWidget::paintEvent( QPaintEvent* e )
{
    if ( !mChart ) {
        QWidget::paintEvent( e );
    } else {
        QPainter painter( this );

        const int wid = 64;
        const QRect r( rect() );
        const QPen oldPen( painter.pen() );
        const QBrush oldBrush( painter.brush() );
        // paint below the chart
        painter.setPen( QPen( Qt::NoPen ) );
        painter.setBrush( QBrush( QColor( 0xd0, 0xd0, 0xff ) ) );
        painter.drawEllipse( r.left(),                       r.top(),                        wid, wid );
        painter.drawEllipse( r.left() + r.width() - wid - 1, r.top(),                        wid, wid );
        painter.drawEllipse( r.left(),                       r.top() + r.height() - wid - 1, wid, wid );
        painter.drawEllipse( r.left() + r.width() - wid - 1, r.top() + r.height() - wid - 1, wid, wid );
        painter.setBrush( oldBrush );
        painter.setPen( oldPen );
        // paint the chart
        mChart->paint( &painter, QRect( r.left() + wid / 2, r.top() + wid / 2,
                                        r.width() - wid,    r.height() - wid ) );
        // paint over the chart
        painter.setPen( QPen( Qt::NoPen ) );
        painter.setBrush( QBrush( QColor( 0xd0, 0xff, 0xff ) ) );
        const int wid2 = 40;
        const int gap = ( wid - wid2 ) / 2;
        painter.drawEllipse( r.left() + gap,                       r.top() + gap,                        wid2, wid2 );
        painter.drawEllipse( r.left() + r.width() - wid + gap - 1, r.top() + gap,                        wid2, wid2 );
        painter.drawEllipse( r.left() + gap,                       r.top() + r.height() - wid + gap - 1, wid2, wid2 );
        painter.drawEllipse( r.left() + r.width() - wid + gap - 1, r.top() + r.height() - wid + gap - 1, wid2, wid2 );
        painter.setBrush( oldBrush );
        painter.setPen( oldPen );
    }
}