2020-09-08 10:47:20 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2020-09-19 19:06:34 -04:00
|
|
|
// Copyright (C) 2020 Edouard Griffiths, F4EXB //
|
2020-09-08 10:47:20 -04:00
|
|
|
// //
|
|
|
|
// 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 as version 3 of the License, or //
|
|
|
|
// (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// 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 V3 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2020-09-19 19:06:34 -04:00
|
|
|
#ifndef INCLUDE_FEATUREWINDOW_H
|
|
|
|
#define INCLUDE_FEATUREWINDOW_H
|
2020-09-08 10:47:20 -04:00
|
|
|
|
2020-09-19 19:06:34 -04:00
|
|
|
#include <QScrollArea>
|
2020-09-08 10:47:20 -04:00
|
|
|
|
2020-09-19 19:06:34 -04:00
|
|
|
#include "export.h"
|
2020-09-08 10:47:20 -04:00
|
|
|
|
2020-09-19 19:06:34 -04:00
|
|
|
class QBoxLayout;
|
|
|
|
class QSpacerItem;
|
|
|
|
class RollupWidget;
|
|
|
|
|
|
|
|
class SDRGUI_API FeatureWindow : public QScrollArea {
|
2020-09-08 10:47:20 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-09-19 19:06:34 -04:00
|
|
|
FeatureWindow(QWidget* parent = nullptr);
|
|
|
|
|
|
|
|
void addRollupWidget(QWidget* rollupWidget);
|
2020-09-08 10:47:20 -04:00
|
|
|
|
2020-09-19 19:06:34 -04:00
|
|
|
protected:
|
|
|
|
QWidget* m_container;
|
|
|
|
QBoxLayout* m_layout;
|
2020-09-08 10:47:20 -04:00
|
|
|
|
2020-09-19 19:06:34 -04:00
|
|
|
void resizeEvent(QResizeEvent* event);
|
2020-09-08 10:47:20 -04:00
|
|
|
};
|
|
|
|
|
2020-09-19 19:06:34 -04:00
|
|
|
#endif // INCLUDE_FEATUREWINDOW_H
|