SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
channelwindow.h
Go to the documentation of this file.
1 #ifndef INCLUDE_CHANNELWINDOW_H
2 #define INCLUDE_CHANNELWINDOW_H
3 
4 #include <QScrollArea>
5 
6 #include "export.h"
7 
8 class QBoxLayout;
9 class QSpacerItem;
10 class RollupWidget;
11 
12 class SDRGUI_API ChannelWindow : public QScrollArea {
13  Q_OBJECT
14 
15 public:
16  ChannelWindow(QWidget* parent = NULL);
17 
18  void addRollupWidget(QWidget* rollupWidget);
19 
20 protected:
21  QWidget* m_container;
22  QBoxLayout* m_layout;
23 
24  void resizeEvent(QResizeEvent* event);
25 };
26 
27 #endif // INCLUDE_CHANNELWINDOW_H
#define SDRGUI_API
Definition: export.h:52
QWidget * m_container
Definition: channelwindow.h:21
QBoxLayout * m_layout
Definition: channelwindow.h:22