added full ExtractCallback errors managementd to YACReader

This commit is contained in:
Luis Ángel San Martín
2013-12-16 16:35:12 +01:00
commit 45b4bebce8
737 changed files with 67327 additions and 0 deletions

View File

@ -0,0 +1,48 @@
#ifndef YACREADER_MAIN_TOOLBAR_H
#define YACREADER_MAIN_TOOLBAR_H
#include <QWidget>
class QToolButton;
class QLabel;
class QResizeEvent;
class QPaintEvent;
class QHBoxLayout;
class YACReaderMainToolBar : public QWidget
{
Q_OBJECT
public:
explicit YACReaderMainToolBar(QWidget *parent = 0);
QSize sizeHint() const;
QToolButton * backButton;
QToolButton * forwardButton;
QToolButton * settingsButton;
QToolButton * serverButton;
QToolButton * helpButton;
QToolButton * fullscreenButton;
void setCurrentFolderName(const QString & name);
signals:
public slots:
private:
void paintEvent(QPaintEvent *);
void resizeEvent(QResizeEvent *);
QHBoxLayout * mainLayout;
QLabel * currentFolder;
QString currentFolderName;
void addDivider();
void addWideDivider();
};
#endif // YACREADER_MAIN_TOOLBAR_H