2014-05-18 15:52:39 +00:00
|
|
|
#ifndef INCLUDE_CHANNELWINDOW_H
|
|
|
|
#define INCLUDE_CHANNELWINDOW_H
|
|
|
|
|
|
|
|
#include <QScrollArea>
|
|
|
|
|
2018-03-20 12:49:21 +00:00
|
|
|
#include "export.h"
|
2018-03-03 19:23:38 +00:00
|
|
|
|
2014-05-18 15:52:39 +00:00
|
|
|
class QBoxLayout;
|
|
|
|
class QSpacerItem;
|
|
|
|
class RollupWidget;
|
|
|
|
|
2018-03-03 19:23:38 +00:00
|
|
|
class SDRGUI_API ChannelWindow : public QScrollArea {
|
2014-05-18 15:52:39 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ChannelWindow(QWidget* parent = NULL);
|
|
|
|
|
|
|
|
void addRollupWidget(QWidget* rollupWidget);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
QWidget* m_container;
|
|
|
|
QBoxLayout* m_layout;
|
|
|
|
|
|
|
|
void resizeEvent(QResizeEvent* event);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_CHANNELWINDOW_H
|