mirror of
				https://github.com/YACReader/yacreader
				synced 2025-10-31 00:04:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			355 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			355 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 = nullptr);
 | |
| 
 | |
| protected:
 | |
|     void resizeEvent(QResizeEvent *) override;
 | |
| 
 | |
| private:
 | |
|     QLabel *titleLabel;
 | |
| };
 | |
| 
 | |
| #endif // SCRAPPER_LINEEDIT_H
 |