summaryrefslogtreecommitdiff
path: root/src/analyze/gui/histogramwidget.h
blob: f2f96629cbdf8f1cbc3690356f70414e0cd3928d (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
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
/*
 * Copyright 2015-2017 Milian Wolff <mail@milianw.de>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef HISTOGRAMWIDGET_H
#define HISTOGRAMWIDGET_H

#include "gui_config.h"
#include "contextmenuqwt.h"

#include <memory>
#include <QWidget>

//!! for debugging
//#define SHOW_TABLES

#ifdef SHOW_TABLES
#include <QTableView>
#endif

#if defined(KChart_FOUND)
namespace KChart {
class Chart;
class BarDiagram;
}
#elif defined(QWT_FOUND)
#include "histogramwidgetqwtplot.h"
#endif

class HistogramModel;

class HistogramWidget : public QWidget
{
    Q_OBJECT
public:
    explicit HistogramWidget(QWidget* parent = nullptr);
    virtual ~HistogramWidget();

    void setModel(HistogramModel* model);

    void updateOnSelected();

#ifdef QWT_FOUND
public slots:
    void modelReset();
protected:
#ifndef QT_NO_CONTEXTMENU
    virtual void contextMenuEvent(QContextMenuEvent *event) override;
#endif
    // workaround for handling the context menu shortcuts
    virtual void keyPressEvent(QKeyEvent *event) override;
#endif // QWT_FOUND

private:
#if defined(KChart_FOUND)
    KChart::Chart* m_chart;
    KChart::BarDiagram* m_total;
    KChart::BarDiagram* m_detailed;
#elif defined(QWT_FOUND)
private slots:
    void toggleShowTotal();
    void toggleShowUnresolved();

    void connectContextMenu();

private:
    HistogramWidgetQwtPlot* m_plot;
    std::unique_ptr<ContextMenuQwt> m_contextMenuQwt;
#endif
#ifdef SHOW_TABLES
    QTableView* m_tableViewTotal;
    QTableView* m_tableViewNoTotal;
#endif
};

#endif // HISTOGRAMWIDGET_H