A?adido el uso 7z.dll en lugar de 7z.exe en el visor

This commit is contained in:
Luis Ángel San Martín
2013-07-14 17:43:38 +02:00
commit ff17d8ef1f
634 changed files with 50442 additions and 0 deletions

View File

@ -0,0 +1,37 @@
#ifndef __GOTO_FLOW_WIDGET_H
#define __GOTO_FLOW_WIDGET_H
#include <QWidget>
#include <QSettings>
#include "yacreader_global.h"
class QSettings;
class GoToFlowDecorationBar;
class GoToFlowToolBar;
class QVBoxLayout;
class GoToFlowWidget : public QWidget
{
Q_OBJECT
protected:
QVBoxLayout * mainLayout;
GoToFlowDecorationBar * topBar;
GoToFlowToolBar * toolBar;
public:
GoToFlowWidget(QWidget * paret = 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() = 0;
virtual void updateConfig(QSettings * settings) = 0;
protected:
void keyPressEvent(QKeyEvent* event);
};
#endif