mirror of
				https://github.com/YACReader/yacreader
				synced 2025-11-04 01:05:06 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			725 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			725 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef YACREADER_SIDEBAR_H
 | 
						|
#define YACREADER_SIDEBAR_H
 | 
						|
 | 
						|
#include <QWidget>
 | 
						|
 | 
						|
class YACReaderTreeView;
 | 
						|
class YACReaderLibraryListWidget;
 | 
						|
class YACReaderSearchLineEdit;
 | 
						|
class YACReaderTitledToolBar;
 | 
						|
class YACReaderTitledToolBar;
 | 
						|
 | 
						|
class YACReaderSideBar : public QWidget
 | 
						|
{
 | 
						|
    Q_OBJECT
 | 
						|
public:
 | 
						|
    explicit YACReaderSideBar(QWidget *parent = 0);
 | 
						|
	QSize sizeHint() const;
 | 
						|
 | 
						|
	YACReaderTreeView * foldersView;
 | 
						|
	YACReaderLibraryListWidget * selectedLibrary;
 | 
						|
	YACReaderSearchLineEdit * foldersFilter;
 | 
						|
	YACReaderTitledToolBar * librariesTitle;
 | 
						|
	YACReaderTitledToolBar * foldersTitle;
 | 
						|
    
 | 
						|
signals:
 | 
						|
    
 | 
						|
public slots:
 | 
						|
 | 
						|
protected:
 | 
						|
	void paintEvent(QPaintEvent *);
 | 
						|
    
 | 
						|
};
 | 
						|
 | 
						|
#endif // YACREADER_SIDEBAR_H
 |