mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 03:39:14 +00:00
34 lines
689 B
C++
34 lines
689 B
C++
|
|
#include "scenetoolbar.hpp"
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include "scenetool.hpp"
|
|
|
|
CSVWidget::SceneToolbar::SceneToolbar (int buttonSize, QWidget *parent)
|
|
: QWidget (parent), mButtonSize (buttonSize), mIconSize (buttonSize-6)
|
|
{
|
|
setFixedWidth (mButtonSize);
|
|
|
|
mLayout = new QVBoxLayout (this);
|
|
mLayout->setAlignment (Qt::AlignTop);
|
|
|
|
mLayout->setContentsMargins (QMargins (0, 0, 0, 0));
|
|
|
|
setLayout (mLayout);
|
|
}
|
|
|
|
void CSVWidget::SceneToolbar::addTool (SceneTool *tool)
|
|
{
|
|
mLayout->addWidget (tool, 0, Qt::AlignTop);
|
|
}
|
|
|
|
int CSVWidget::SceneToolbar::getButtonSize() const
|
|
{
|
|
return mButtonSize;
|
|
}
|
|
|
|
int CSVWidget::SceneToolbar::getIconSize() const
|
|
{
|
|
return mIconSize;
|
|
} |