close button restored for bookmarks in OSX

This commit is contained in:
Luis Ángel San Martín
2013-11-23 09:47:27 -08:00
commit 8b2967c1a3
733 changed files with 65526 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