2014-05-18 11:52:39 -04:00
|
|
|
#ifndef INCLUDE_CHANNELWINDOW_H
|
|
|
|
#define INCLUDE_CHANNELWINDOW_H
|
|
|
|
|
|
|
|
#include <QScrollArea>
|
|
|
|
|
2018-03-20 08:49:21 -04:00
|
|
|
#include "export.h"
|
2018-03-03 14:23:38 -05:00
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
class QBoxLayout;
|
|
|
|
class QSpacerItem;
|
|
|
|
class RollupWidget;
|
|
|
|
|
2018-03-03 14:23:38 -05:00
|
|
|
class SDRGUI_API ChannelWindow : public QScrollArea {
|
2014-05-18 11:52:39 -04: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
|