2013-09-28 07:25:54 +00:00
|
|
|
|
|
|
|
#include "scenetoolbar.hpp"
|
|
|
|
|
2013-09-28 09:06:56 +00:00
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
|
|
#include "scenetool.hpp"
|
|
|
|
|
2013-09-28 07:25:54 +00:00
|
|
|
CSVWorld::SceneToolbar::SceneToolbar (QWidget *parent) : QWidget (parent)
|
|
|
|
{
|
2013-09-28 09:06:56 +00:00
|
|
|
setFixedWidth (48);
|
|
|
|
|
|
|
|
mLayout = new QVBoxLayout (this);
|
|
|
|
mLayout->setAlignment (Qt::AlignTop);
|
2013-09-28 07:25:54 +00:00
|
|
|
|
2013-09-28 09:06:56 +00:00
|
|
|
mLayout->setContentsMargins (QMargins (0, 0, 0, 0));
|
|
|
|
|
|
|
|
setLayout (mLayout);
|
2013-09-28 07:25:54 +00:00
|
|
|
}
|
2013-09-28 09:06:56 +00:00
|
|
|
|
|
|
|
void CSVWorld::SceneToolbar::addTool (SceneTool *tool)
|
|
|
|
{
|
|
|
|
mLayout->addWidget (tool, 0, Qt::AlignTop);
|
|
|
|
}
|