File: testplot_widget.h

package info (click to toggle)
kf6-kplotting 6.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 368 kB
  • sloc: cpp: 2,011; sh: 13; makefile: 7
file content (38 lines) | stat: -rw-r--r-- 613 bytes parent folder | download | duplicates (3)
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
/*
    testplot_widget.h
    SPDX-FileCopyrightText: 2006 Jason Harris <kstars@30doradus.org>

    SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef TESTPLOT_WIDGET_H
#define TESTPLOT_WIDGET_H

#include <QMainWindow>

class QComboBox;
class QVBoxLayout;
class KPlotWidget;
class KPlotObject;

class TestPlot : public QMainWindow
{
    Q_OBJECT

public:
    TestPlot(QWidget *parent = nullptr);
    ~TestPlot() override
    {
    }

public Q_SLOTS:
    void slotSelectPlot(int index);

private:
    QVBoxLayout *vlay;
    QComboBox *PlotSelector;
    KPlotWidget *plot;
    KPlotObject *po1, *po2;
};

#endif