mirror of
				https://github.com/YACReader/yacreader
				synced 2025-11-03 16:54:39 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			360 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			360 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef YACREADER_TOOL_BAR_STRETCH_H
 | 
						|
#define YACREADER_TOOL_BAR_STRETCH_H
 | 
						|
 | 
						|
#include <QWidget>
 | 
						|
#include <QHBoxLayout>
 | 
						|
 | 
						|
class QToolBarStretch : public QWidget
 | 
						|
{
 | 
						|
public:
 | 
						|
	QToolBarStretch(QWidget * parent=0):QWidget(parent)
 | 
						|
	{
 | 
						|
		QHBoxLayout * l= new QHBoxLayout();
 | 
						|
		l->addStretch();
 | 
						|
		setLayout(l);
 | 
						|
	}
 | 
						|
};
 | 
						|
 | 
						|
#endif // YACREADER_TOOL_BAR_STRETCH_H
 |