yacreader/custom_widgets/yacreader_flow.h
Felix Kauselmann 197660b46e Linux: install docs in a more packaging-friendly way
Linux: Add initial support for manpages
2014-08-18 00:35:26 +02:00

21 lines
420 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