mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 02:54:46 -04:00
Update russian translation. Need to subtract and to bring the terminology to a common denominator
This commit is contained in:
39
YACReader/goto_flow_widget.h
Normal file
39
YACReader/goto_flow_widget.h
Normal file
@ -0,0 +1,39 @@
|
||||
#ifndef __GOTO_FLOW_WIDGET_H
|
||||
#define __GOTO_FLOW_WIDGET_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QSettings>
|
||||
#include "yacreader_global_gui.h"
|
||||
|
||||
using namespace YACReader;
|
||||
|
||||
class QSettings;
|
||||
class GoToFlowToolBar;
|
||||
class QVBoxLayout;
|
||||
|
||||
class GoToFlowWidget : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
protected:
|
||||
QVBoxLayout * mainLayout;
|
||||
GoToFlowToolBar * toolBar;
|
||||
public:
|
||||
GoToFlowWidget(QWidget * paret = 0);
|
||||
virtual ~GoToFlowWidget() = 0;
|
||||
public slots:
|
||||
virtual void reset() = 0;
|
||||
virtual void centerSlide(int slide) = 0;
|
||||
virtual void setPageNumber(int page);
|
||||
virtual void setFlowType(FlowType flowType) = 0;
|
||||
virtual void setNumSlides(unsigned int slides) = 0;
|
||||
virtual void setImageReady(int index,const QByteArray & image) = 0;
|
||||
virtual void updateSize();
|
||||
virtual void updateConfig(QSettings * settings);
|
||||
|
||||
protected:
|
||||
void keyPressEvent(QKeyEvent* event);
|
||||
//bool eventFilter(QObject *, QEvent *);
|
||||
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user