mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
19 lines
379 B
C++
19 lines
379 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
|