mirror of
https://github.com/YACReader/yacreader
synced 2025-05-27 10:50:27 -04:00
20 lines
396 B
C++
20 lines
396 B
C++
#ifndef YACREADER_TOOL_BAR_STRETCH_H
|
|
#define YACREADER_TOOL_BAR_STRETCH_H
|
|
|
|
#include <QWidget>
|
|
#include <QHBoxLayout>
|
|
|
|
class YACReaderToolBarStretch : public QWidget
|
|
{
|
|
public:
|
|
YACReaderToolBarStretch(QWidget *parent = 0)
|
|
: QWidget(parent)
|
|
{
|
|
QHBoxLayout *l = new QHBoxLayout();
|
|
l->addStretch();
|
|
setLayout(l);
|
|
}
|
|
};
|
|
|
|
#endif // YACREADER_TOOL_BAR_STRETCH_H
|