mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 04:50:29 -04:00 
			
		
		
		
	
		
			
	
	
		
			26 lines
		
	
	
		
			433 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			26 lines
		
	
	
		
			433 B
		
	
	
	
		
			C
		
	
	
	
	
	
|  | #ifndef INCLUDE_CHANNELWINDOW_H
 | ||
|  | #define INCLUDE_CHANNELWINDOW_H
 | ||
|  | 
 | ||
|  | #include <QScrollArea>
 | ||
|  | 
 | ||
|  | class QBoxLayout; | ||
|  | class QSpacerItem; | ||
|  | class RollupWidget; | ||
|  | 
 | ||
|  | class ChannelWindow : public QScrollArea { | ||
|  | 	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
 |