File: charttab.cpp

package info (click to toggle)
massif-visualizer 25.04.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,220 kB
  • sloc: cpp: 4,265; xml: 415; sh: 15; makefile: 8
file content (623 lines) | stat: -rw-r--r-- 20,831 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
/*
   This file is part of Massif Visualizer

   Copyright 2014 Milian Wolff <mail@milianw.de>

   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) version 3 or any later version
   accepted by the membership of KDE e.V. (or its successor approved
   by the membership of KDE e.V.), which shall act as a proxy
   defined in Section 14 of version 3 of the license.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "charttab.h"

#include "KChartChart"
#include "KChartGridAttributes"
#include "KChartHeaderFooter"
#include "KChartCartesianCoordinatePlane"
#include "KChartPlotter"
#include "KChartLegend"
#include "KChartDataValueAttributes"
#include "KChartBackgroundAttributes"
#include <KChartFrameAttributes.h>

#include "visualizer/totalcostmodel.h"
#include "visualizer/detailedcostmodel.h"
#include "visualizer/datatreemodel.h"
#include "visualizer/filtereddatatreemodel.h"

#include "massifdata/util.h"
#include "massifdata/snapshotitem.h"
#include "massifdata/treeleafitem.h"
#include "massifdata/filedata.h"

#include "massif-visualizer-settings.h"

#include <QDebug>
#include <QVBoxLayout>
#include <QPrinter>
#include <QPrintPreviewDialog>
#include <QLabel>
#include <QMenu>
#include <QApplication>
#include <QScreen>
#include <QSvgGenerator>
#include <QWidgetAction>
#include <QFileDialog>

#include <KColorScheme>
#include <KLocalizedString>
#include <KStandardAction>
#include <KActionCollection>
#include <KMessageBox>
#include <KFormat>

using namespace KChart;
using namespace Massif;

namespace {

class TimeAxis : public CartesianAxis
{
    Q_OBJECT
public:
    explicit TimeAxis(AbstractCartesianDiagram* diagram = nullptr)
        : CartesianAxis(diagram)
    {}

    const QString customizedLabel(const QString& label) const override
    {
        // squeeze large numbers here
        // TODO: when the unit is 'b' also use prettyCost() here
        return QString::number(label.toDouble());
    }
};

class SizeAxis : public CartesianAxis
{
    Q_OBJECT
public:
    explicit SizeAxis(AbstractCartesianDiagram* diagram = nullptr)
        : CartesianAxis(diagram)
    {}

    const QString customizedLabel(const QString& label) const override
    {
        // TODO: change distance between labels to 1024 and simply use prettyCost() here
        KFormat format(QLocale::system());
        return format.formatByteSize(label.toDouble(), 1, KFormat::MetricBinaryDialect);
    }
};

void markPeak(Plotter* p, const QModelIndex& peak, quint64 cost, const KColorScheme& scheme)
{
    QBrush brush = p->model()->data(peak, DatasetBrushRole).value<QBrush>();

    QColor outline = brush.color();
    QColor foreground = scheme.foreground().color();
    QBrush background = scheme.background();

    DataValueAttributes dataAttributes = p->dataValueAttributes(peak);
    dataAttributes.setDataLabel(prettyCost(cost));
    dataAttributes.setVisible(true);
    dataAttributes.setShowRepetitiveDataLabels(true);
    dataAttributes.setShowOverlappingDataLabels(false);

    FrameAttributes frameAttrs = dataAttributes.frameAttributes();
    QPen framePen(outline);
    framePen.setWidth(2);
    frameAttrs.setPen(framePen);
    frameAttrs.setVisible(true);
    dataAttributes.setFrameAttributes(frameAttrs);

    MarkerAttributes a = dataAttributes.markerAttributes();
    a.setMarkerSize(QSizeF(7, 7));
    a.setPen(outline);
    a.setMarkerStyle(KChart::MarkerAttributes::MarkerDiamond);
    a.setVisible(true);
    dataAttributes.setMarkerAttributes(a);

    TextAttributes txtAttrs = dataAttributes.textAttributes();
    txtAttrs.setPen(foreground);
    txtAttrs.setFontSize(Measure(12));
    dataAttributes.setTextAttributes(txtAttrs);

    BackgroundAttributes bkgAtt = dataAttributes.backgroundAttributes();

    bkgAtt.setBrush(background);
    bkgAtt.setVisible(true);
    dataAttributes.setBackgroundAttributes(bkgAtt);

    p->setDataValueAttributes(peak, dataAttributes);
}

}

ChartTab::ChartTab(const FileData* data,
                   KXMLGUIClient* guiParent, QWidget* parent)
  : DocumentTabInterface(data, guiParent, parent)
    , m_chart(new Chart(this))
    , m_header(new QLabel(this))
    , m_totalDiagram(nullptr)
    , m_totalCostModel(new TotalCostModel(m_chart))
    , m_detailedDiagram(nullptr)
    , m_detailedCostModel(new DetailedCostModel(m_chart))
    , m_legend(new Legend(m_chart))
    , m_print(nullptr)
    , m_saveAs(nullptr)
    , m_toggleTotal(nullptr)
    , m_toggleDetailed(nullptr)
    , m_hideFunction(nullptr)
    , m_hideOtherFunctions(nullptr)
    , m_box(new QSpinBox(this))
    , m_settingSelection(false)
{
    setXMLFile(QStringLiteral("charttabui.rc"), true);
    setupActions();

    auto *layout =  new QVBoxLayout(this);
    layout->setContentsMargins({});

    setupGui();
}

ChartTab::~ChartTab()
{
}

void ChartTab::setupActions()
{
    m_print = KStandardAction::print(this, &ChartTab::showPrintPreviewDialog, actionCollection());
    actionCollection()->addAction(QStringLiteral("file_print"), m_print);

    m_saveAs = KStandardAction::saveAs(this, &ChartTab::saveCurrentDocument, actionCollection());
    actionCollection()->addAction(QStringLiteral("file_save_as"), m_saveAs);

    m_toggleTotal = new QAction(QIcon::fromTheme(QStringLiteral("office-chart-area")), i18nc("@action", "Toggle Total Cost Graph"), actionCollection());
    m_toggleTotal->setCheckable(true);
    m_toggleTotal->setChecked(true);
    connect(m_toggleTotal, &QAction::toggled, this, &ChartTab::showTotalGraph);
    actionCollection()->addAction(QStringLiteral("toggle_total"), m_toggleTotal);

    m_toggleDetailed = new QAction(QIcon::fromTheme(QStringLiteral("office-chart-area-stacked")), i18nc("@action", "Toggle Detailed Cost Graph"), actionCollection());
    m_toggleDetailed->setCheckable(true);
    m_toggleDetailed->setChecked(true);
    connect(m_toggleDetailed, &QAction::toggled, this, &ChartTab::showDetailedGraph);
    actionCollection()->addAction(QStringLiteral("toggle_detailed"), m_toggleDetailed);

    QWidgetAction* stackNumAction = new QWidgetAction(actionCollection());
    actionCollection()->addAction(QStringLiteral("stackNum"), stackNumAction);
    stackNumAction->setText(i18n("Stacked diagrams"));
    QWidget *stackNumWidget = new QWidget;
    QHBoxLayout* stackNumLayout = new QHBoxLayout;
    stackNumLayout->addWidget(new QLabel(i18nc("@label:spinbox", "Stacked diagrams:")));
    m_box->setMinimum(0);
    m_box->setMaximum(50);
    m_box->setValue(10);
    connect(m_box, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), this, &ChartTab::setStackNum);
    stackNumLayout->addWidget(m_box);
    stackNumWidget->setLayout(stackNumLayout);
    stackNumAction->setDefaultWidget(stackNumWidget);

    m_hideFunction = new QAction(i18nc("@action", "Hide Function"), this);
    connect(m_hideFunction, &QAction::triggered,
            this, &ChartTab::slotHideFunction);
    m_hideOtherFunctions = new QAction(i18nc("@action", "Hide Other Functions"), this);
    connect(m_hideOtherFunctions, &QAction::triggered,
            this, &ChartTab::slotHideOtherFunctions);
}

void ChartTab::setupGui()
{
    layout()->addWidget(m_header);
    layout()->addWidget(m_chart);

    // HACK: otherwise the legend becomes _really_ large and might even crash X...
    // to visualize the issue, try: m_chart->setMaximumSize(QSize(10000, 10000));
    m_chart->setMaximumSize(qApp->primaryScreen()->geometry().size());

    // for axis labels to fit
    m_chart->setGlobalLeadingRight(10);
    m_chart->setGlobalLeadingLeft(10);
    m_chart->setGlobalLeadingTop(20);
    m_chart->setContextMenuPolicy(Qt::CustomContextMenu);

    updateLegendPosition();
    m_legend->setTitleText(QString());
    m_legend->setSortOrder(Qt::DescendingOrder);

    m_chart->addLegend(m_legend);

    //NOTE: this has to be set _after_ the legend was added to the chart...
    updateLegendFont();
    m_legend->setTextAlignment(Qt::AlignLeft);
    m_legend->hide();

    connect(m_chart, &Chart::customContextMenuRequested,
            this, &ChartTab::chartContextMenuRequested);

    //BEGIN KChart
    KColorScheme scheme(QPalette::Active, KColorScheme::Window);
    QPen foreground(scheme.foreground().color());

    //Begin Legend
    BackgroundAttributes bkgAtt = m_legend->backgroundAttributes();
    QColor background = scheme.background(KColorScheme::AlternateBackground).color();
    background.setAlpha(200);
    bkgAtt.setBrush(QBrush(background));
    bkgAtt.setVisible(true);
    m_legend->setBackgroundAttributes(bkgAtt);
    TextAttributes txtAttrs = m_legend->textAttributes();
    txtAttrs.setPen(foreground);
    m_legend->setTextAttributes(txtAttrs);

    m_header->setAlignment(Qt::AlignCenter);
    updateHeader();

    //BEGIN TotalDiagram
    m_totalDiagram = new Plotter(this);
    m_totalDiagram->setAntiAliasing(true);

    CartesianAxis* bottomAxis = new TimeAxis(m_totalDiagram);
    TextAttributes axisTextAttributes = bottomAxis->textAttributes();
    axisTextAttributes.setPen(foreground);
    axisTextAttributes.setFontSize(Measure(10));
    bottomAxis->setTextAttributes(axisTextAttributes);
    TextAttributes axisTitleTextAttributes = bottomAxis->titleTextAttributes();
    axisTitleTextAttributes.setPen(foreground);
    axisTitleTextAttributes.setFontSize(Measure(12));
    bottomAxis->setTitleTextAttributes(axisTitleTextAttributes);
    bottomAxis->setTitleText(i18n("time in %1", m_data->timeUnit()));
    bottomAxis->setPosition ( CartesianAxis::Bottom );
    m_totalDiagram->addAxis(bottomAxis);

    CartesianAxis* rightAxis = new SizeAxis(m_totalDiagram);
    rightAxis->setTextAttributes(axisTextAttributes);
    rightAxis->setTitleTextAttributes(axisTitleTextAttributes);
    rightAxis->setTitleText(i18n("memory heap size"));
    rightAxis->setPosition ( CartesianAxis::Right );
    m_totalDiagram->addAxis(rightAxis);

    m_totalCostModel->setSource(m_data);
    m_totalDiagram->setModel(m_totalCostModel);

    CartesianCoordinatePlane* coordinatePlane = dynamic_cast<CartesianCoordinatePlane*>(m_chart->coordinatePlane());
    Q_ASSERT(coordinatePlane);
    coordinatePlane->addDiagram(m_totalDiagram);

    GridAttributes gridAttributes = coordinatePlane->gridAttributes(Qt::Horizontal);
    gridAttributes.setAdjustBoundsToGrid(false, false);
    coordinatePlane->setGridAttributes(Qt::Horizontal, gridAttributes);

    m_legend->addDiagram(m_totalDiagram);

    m_detailedDiagram = new Plotter;
    m_detailedDiagram->setAntiAliasing(true);
    m_detailedDiagram->setType(KChart::Plotter::Stacked);

    m_detailedCostModel->setSource(m_data);
    m_detailedDiagram->setModel(m_detailedCostModel);

    updatePeaks();

    m_chart->coordinatePlane()->addDiagram(m_detailedDiagram);

    m_legend->addDiagram(m_detailedDiagram);
    m_legend->show();

    m_box->setValue(m_detailedCostModel->maximumDatasetCount());

    connect(m_totalDiagram, &Plotter::clicked,
            this, &ChartTab::totalItemClicked);
    connect(m_detailedDiagram, &Plotter::clicked,
            this, &ChartTab::detailedItemClicked);
}

void ChartTab::settingsChanged()
{
    updateHeader();
    updatePeaks();
    updateLegendPosition();
    updateLegendFont();
}

void ChartTab::setDetailedDiagramHidden(bool hidden)
{
    m_detailedDiagram->setHidden(hidden);
}

void ChartTab::setDetailedDiagramVisible(bool visible)
{
    m_detailedDiagram->setVisible(visible);
}

void ChartTab::setTotalDiagramHidden(bool hidden)
{
    m_totalDiagram->setHidden(hidden);
}

void ChartTab::setTotalDiagramVisible(bool visible)
{
    m_totalDiagram->setVisible(visible);
}

void ChartTab::updatePeaks()
{
    KColorScheme scheme(QPalette::Active, KColorScheme::Window);

    if (m_data->peak()) {
        const QModelIndex peak = m_totalCostModel->peak();
        Q_ASSERT(peak.isValid());
        markPeak(m_totalDiagram, peak, m_data->peak()->cost(), scheme);
    }
    updateDetailedPeaks();
}

void ChartTab::updateLegendPosition()
{
    KChartEnums::PositionValue pos;
    switch (Settings::self()->legendPosition()) {
        case Settings::EnumLegendPosition::North:
            pos = KChartEnums::PositionNorth;
            break;
        case Settings::EnumLegendPosition::South:
            pos = KChartEnums::PositionSouth;
            break;
        case Settings::EnumLegendPosition::East:
            pos = KChartEnums::PositionEast;
            break;
        case Settings::EnumLegendPosition::West:
            pos = KChartEnums::PositionWest;
            break;
        case Settings::EnumLegendPosition::Floating:
            pos = KChartEnums::PositionFloating;
            break;
        default:
            pos = KChartEnums::PositionFloating;
            qDebug() << "invalid legend position";
    }
    m_legend->setPosition(Position(pos));

    Qt::Alignment align;
    switch (Settings::self()->legendAlignment()) {
        case Settings::EnumLegendAlignment::Left:
            align = Qt::AlignLeft;
            break;
        case Settings::EnumLegendAlignment::Center:
            align = Qt::AlignHCenter | Qt::AlignVCenter;
            break;
        case Settings::EnumLegendAlignment::Right:
            align = Qt::AlignRight;
            break;
        case Settings::EnumLegendAlignment::Top:
            align = Qt::AlignTop;
            break;
        case Settings::EnumLegendAlignment::Bottom:
            align = Qt::AlignBottom;
            break;
        default:
            align = Qt::AlignHCenter | Qt::AlignVCenter;
            qDebug() << "invalid legend alignment";
    }

    // do something reasonable since top,bottom have no effect
    // when used with north,south, same for left,right used with
    // east,west
    if ((((pos == KChartEnums::PositionNorth) || (pos == KChartEnums::PositionSouth))
         && ((align == Qt::AlignTop) || (align == Qt::AlignBottom)))
         || (((pos == KChartEnums::PositionEast) || (pos == KChartEnums::PositionWest))
         && ((align == Qt::AlignLeft) || (align == Qt::AlignRight)))) {

         align = Qt::AlignHCenter | Qt::AlignVCenter;
    }

    m_legend->setAlignment(align);
}

void ChartTab::updateLegendFont()
{
    TextAttributes att = m_legend->textAttributes();
    att.setAutoShrink(true);
    att.setFontSize(Measure(Settings::self()->legendFontSize()));
    QFont font(QStringLiteral("monospace"));
    font.setStyleHint(QFont::TypeWriter);
    att.setFont(font);
    m_legend->setTextAttributes(att);
}

void ChartTab::updateDetailedPeaks()
{
    KColorScheme scheme(QPalette::Active, KColorScheme::Window);

    const DetailedCostModel::Peaks& peaks = m_detailedCostModel->peaks();
    DetailedCostModel::Peaks::const_iterator it = peaks.constBegin();
    while (it != peaks.constEnd()) {
        const QModelIndex peak = it.key();
        Q_ASSERT(peak.isValid());
        markPeak(m_detailedDiagram, peak, it.value()->cost(), scheme);
        ++it;
    }
}

void ChartTab::updateHeader()
{
    const QString app = m_data->cmd().split(QLatin1Char(' '), Qt::SkipEmptyParts).first();

    m_header->setText(QString::fromLatin1("<b>%1</b><br /><i>%2</i>")
                        .arg(i18n("Memory consumption of %1", app))
                        .arg(i18n("Peak of %1 at snapshot #%2", prettyCost(m_data->peak()->cost()), m_data->peak()->number()))
    );
    m_header->setToolTip(i18n("Command: %1\nValgrind Options: %2", m_data->cmd(), m_data->description()));
}

void ChartTab::saveCurrentDocument()
{
    const auto saveFilename = QFileDialog::getSaveFileName(this, i18nc("@title:window", "Save Current Visualization"),
                                                           QString(),
                                                           i18n("Images (*.png *.jpg *.tiff *.svg)"));

    if (!saveFilename.isEmpty()) {

        // TODO: implement a dialog to expose more options to the user.
        // for example we could expose dpi, size, and various format
        // dependent options such as compressions settings.

        // Vector graphic format
        if (QFileInfo(saveFilename).suffix().compare(QLatin1String("svg")) == 0) {
            QSvgGenerator generator;
            generator.setFileName(saveFilename);
            generator.setSize(m_chart->size());
            generator.setViewBox(m_chart->rect());

            QPainter painter;
            painter.begin(&generator);
            m_chart->paint(&painter, m_chart->rect());
            painter.end();
        }

        // Other format
        else if (!m_chart->grab().save(saveFilename)) {

            KMessageBox::error(this, i18n("Failed to save the image to %1.", saveFilename));
        }
    }
}

void ChartTab::showPrintPreviewDialog()
{
    QPrinter printer;
    QPrintPreviewDialog *ppd = new QPrintPreviewDialog(&printer, this);
    ppd->setAttribute(Qt::WA_DeleteOnClose);
    connect(ppd, &QPrintPreviewDialog::paintRequested, this, &ChartTab::printFile);
    ppd->setWindowTitle(i18nc("@title:window", "Massif Chart Print Preview"));
    ppd->resize(800, 600);
    ppd->exec();
}

void ChartTab::printFile(QPrinter *printer)
{
    QPainter painter;
    painter.begin(printer);
    m_chart->paint(&painter, printer->pageLayout().paintRectPixels(printer->resolution()));
    painter.end();
}

void ChartTab::showDetailedGraph(bool show)
{
    m_detailedDiagram->setHidden(!show);
    m_toggleDetailed->setChecked(show);
    m_chart->update();
}

void ChartTab::showTotalGraph(bool show)
{
    m_totalDiagram->setHidden(!show);
    m_toggleTotal->setChecked(show);
    m_chart->update();
}

void ChartTab::slotHideFunction()
{
    m_detailedCostModel->hideFunction(m_hideFunction->data().value<const TreeLeafItem*>());
}

void ChartTab::slotHideOtherFunctions()
{
    m_detailedCostModel->hideOtherFunctions(m_hideOtherFunctions->data().value<const TreeLeafItem*>());
}

void ChartTab::chartContextMenuRequested(const QPoint& pos)
{
    const QPoint dPos = m_detailedDiagram->mapFromGlobal(m_chart->mapToGlobal(pos));

    const QModelIndex idx = m_detailedDiagram->indexAt(dPos);
    if (!idx.isValid()) {
        return;
    }
    // hack: the ToolTip will only be queried by KChart and that one uses the
    // left index, but we want it to query the right one
    const QModelIndex _idx = m_detailedCostModel->index(idx.row() + 1, idx.column(), idx.parent());
    ModelItem item = m_detailedCostModel->itemForIndex(_idx);

    if (!item.first) {
        return;
    }

    QMenu menu;

    m_hideFunction->setData(QVariant::fromValue(item.first));
    menu.addAction(m_hideFunction);

    m_hideOtherFunctions->setData(QVariant::fromValue(item.first));
    menu.addAction(m_hideOtherFunctions);

    menu.addSeparator();

    emit contextMenuRequested(item, &menu);

    menu.exec(m_detailedDiagram->mapToGlobal(dPos));
}

void ChartTab::setStackNum(int num)
{
    m_detailedCostModel->setMaximumDatasetCount(num);
    updatePeaks();
}

void ChartTab::detailedItemClicked(const QModelIndex& idx)
{
    m_detailedCostModel->setSelection(idx);
    m_totalCostModel->setSelection(QModelIndex());
    m_chart->update();

    // hack: the ToolTip will only be queried by KChart and that one uses the
    // left index, but we want it to query the right one
    m_settingSelection = true;
    const QModelIndex _idx = m_detailedCostModel->index(idx.row() + 1, idx.column(), idx.parent());
    emit modelItemSelected(m_detailedCostModel->itemForIndex(_idx));
    m_settingSelection = false;
}

void ChartTab::totalItemClicked(const QModelIndex& idx)
{
    const QModelIndex _idx = m_totalCostModel->index(idx.row() + 1, idx.column(), idx.parent());
    m_totalCostModel->setSelection(_idx);
    m_detailedCostModel->setSelection(QModelIndex());
    m_chart->update();

    m_settingSelection = true;
    emit modelItemSelected(m_totalCostModel->itemForIndex(_idx));
    m_settingSelection = false;
}

void ChartTab::selectModelItem(const ModelItem& item)
{
    if (m_settingSelection) {
        return;
    }

    if (item.first) {
        m_detailedCostModel->setSelection(m_detailedCostModel->indexForItem(item));
        m_totalCostModel->setSelection(QModelIndex());
    } else {
        m_totalCostModel->setSelection(m_totalCostModel->indexForItem(item));
        m_detailedCostModel->setSelection(QModelIndex());
    }

    m_chart->update();
}

#include "charttab.moc"

#include "moc_charttab.cpp"