mirror of
				https://github.com/YACReader/yacreader
				synced 2025-11-04 01:05:06 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			427 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			427 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef YACREADER_FLOW_H
 | 
						|
#define YACREADER_FLOW_H
 | 
						|
 | 
						|
#include "pictureflow.h"
 | 
						|
 | 
						|
class QMouseEvent;
 | 
						|
 | 
						|
class YACReaderFlow : public PictureFlow
 | 
						|
{
 | 
						|
Q_OBJECT
 | 
						|
public:
 | 
						|
        YACReaderFlow(QWidget * parent,FlowType flowType = CoverFlowLike);
 | 
						|
 | 
						|
	void mousePressEvent(QMouseEvent* event);
 | 
						|
	void mouseDoubleClickEvent(QMouseEvent* event);
 | 
						|
 | 
						|
signals:
 | 
						|
	void selected(unsigned int centerIndex);
 | 
						|
};
 | 
						|
 | 
						|
#endif // YACREADER_FLOW_H
 |