Linux: install docs in a more packaging-friendly way

Linux: Add initial support for manpages
This commit is contained in:
Felix Kauselmann
2014-08-18 00:35:26 +02:00
commit 197660b46e
754 changed files with 70825 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