Replace potentially unterminated std::string::data() for pre-c++11

This commit is contained in:
Beta
2014-06-22 23:33:45 +02:00
commit 8c73ce7e81
752 changed files with 69350 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