mirror of
				https://github.com/YACReader/yacreader
				synced 2025-11-04 01:05:06 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			348 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			348 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef SCRAPPER_LINEEDIT_H
 | 
						|
#define SCRAPPER_LINEEDIT_H
 | 
						|
 | 
						|
#include <QLineEdit>
 | 
						|
 | 
						|
class QLabel;
 | 
						|
 | 
						|
class ScraperLineEdit : public QLineEdit
 | 
						|
{
 | 
						|
	Q_OBJECT
 | 
						|
public:
 | 
						|
	ScraperLineEdit(const QString & title, QWidget * widget = 0);
 | 
						|
protected:
 | 
						|
	void resizeEvent(QResizeEvent *);
 | 
						|
private:
 | 
						|
	QLabel * titleLabel;
 | 
						|
};
 | 
						|
 | 
						|
#endif // SCRAPPER_LINEEDIT_H
 |