From a0fb331a932acb6deaf58319354fd0b5d610b1d7 Mon Sep 17 00:00:00 2001 From: shun_iwasawa Date: Sep 29 2017 09:55:10 +0000 Subject: fix fx settings resizing --- diff --git a/toonz/sources/include/toonzqt/paramfield.h b/toonz/sources/include/toonzqt/paramfield.h index c185924..858f823 100644 --- a/toonz/sources/include/toonzqt/paramfield.h +++ b/toonz/sources/include/toonzqt/paramfield.h @@ -365,7 +365,7 @@ public: void updateField(TPixel32 value) override; - QSize getPreferedSize() override { return QSize(360, 40); } + QSize getPreferedSize() override { return QSize(480, 40); } /*-- RgbLinkButtonの実行のため --*/ TPixel32 getColor(); @@ -413,7 +413,7 @@ public: void setParams(); - QSize getPreferedSize() override { return QSize(390, 60); } + QSize getPreferedSize() override { return QSize(477, 60); } protected slots: void onKeyToggled(); @@ -462,7 +462,7 @@ public: int frame) override; void update(int frame) override; - QSize getPreferedSize() override { return QSize(20, 10); } + QSize getPreferedSize() override { return QSize(20, 15); } protected slots: void onToggled(bool checked); @@ -491,7 +491,7 @@ public: int frame) override; void update(int frame) override; - QSize getPreferedSize() override { return QSize(50, 28); } + QSize getPreferedSize() override { return QSize(50, 20); } protected slots: void onChange(bool isDragging = false); diff --git a/toonz/sources/toonzqt/fxsettings.cpp b/toonz/sources/toonzqt/fxsettings.cpp index ecd478d..b72f579 100644 --- a/toonz/sources/toonzqt/fxsettings.cpp +++ b/toonz/sources/toonzqt/fxsettings.cpp @@ -240,9 +240,7 @@ void ParamsPage::setPageField(TIStream &is, const TFxP &fx, bool isVertical) { m_horizontalLayout->setMargin(0); m_horizontalLayout->setSpacing(5); setPageField(is, fx, false); - QWidget *tmpWidget = new QWidget(this); - tmpWidget->setLayout(m_horizontalLayout); - m_mainLayout->addWidget(tmpWidget, currentRow, 1, 1, 2); + m_mainLayout->addLayout(m_horizontalLayout, currentRow, 1, 1, 2); } else if (tagName == "vbox") { int shrink = 0; std::string shrinkStr = is.getTagAttribute("shrink"); @@ -553,6 +551,37 @@ void ParamsPage::update(int frame) { namespace { +QSize getItemSize(QLayoutItem *item) { + // layout case + QHBoxLayout *hLay = dynamic_cast(item->layout()); + if (hLay) { + int tmpWidth = 0, tmpHeight = 0; + for (int c = 0; c < hLay->count(); c++) { + QLayoutItem *subItem = hLay->itemAt(c); + if (!subItem) continue; + QSize subItemSize = getItemSize(subItem); + tmpWidth += subItemSize.width(); + if (tmpHeight < subItemSize.height()) tmpHeight = subItemSize.height(); + } + tmpWidth += (hLay->count() - 1) * 5; + return QSize(tmpWidth, tmpHeight); + } + + ParamField *pF = dynamic_cast(item->widget()); + if (pF) return pF->getPreferedSize(); + + Separator *sep = dynamic_cast(item->widget()); + if (sep) return QSize(0, 16); + + Histogram *histo = dynamic_cast(item->widget()); + if (histo) return QSize(278, 162); + + RgbLinkButton *linkBut = dynamic_cast(item->widget()); + if (linkBut) return QSize(0, 21); + + return QSize(); +} + void updateMaximumPageSize(QGridLayout *layout, int &maxLabelWidth, int &maxWidgetWidth, int &fieldsHeight) { /*-- Label側の横幅の最大値を得る --*/ @@ -589,63 +618,10 @@ void updateMaximumPageSize(QGridLayout *layout, int &maxLabelWidth, QLayoutItem *item = layout->itemAtPosition(r, 1); if (!item) continue; - /*-- ParamFieldの場合 --*/ - ParamField *pF = dynamic_cast(item->widget()); - if (pF) { - QSize fieldBestSize = pF->getPreferedSize(); - /*-- 横幅の更新 --*/ - if (maxWidgetWidth < fieldBestSize.width()) - maxWidgetWidth = fieldBestSize.width(); - /*-- 縦サイズの更新 --*/ - fieldsHeight += fieldBestSize.height(); - } else { - QHBoxLayout *hLay = dynamic_cast(item->layout()); - Histogram *histo = dynamic_cast(item->widget()); - Separator *sep = dynamic_cast(item->widget()); - RgbLinkButton *linkBut = dynamic_cast(item->widget()); - /*-- HLayoutの場合 --*/ - if (hLay) { - int tmpSumWidth = 0; - int tmpMaxHeight = 0; - for (int i = 0; i < hLay->count(); i++) { - QLabel *hLabel = dynamic_cast(hLay->itemAt(i)->widget()); - ParamField *hPF = - dynamic_cast(hLay->itemAt(i)->widget()); - if (hLabel) { - int tmpWidth = hLabel->fontMetrics().width(hLabel->text()); - /*-- 横幅を足していく --*/ - tmpSumWidth += tmpWidth; - } else if (hPF) { - tmpSumWidth += hPF->getPreferedSize().width(); - if (tmpMaxHeight < hPF->getPreferedSize().height()) - tmpMaxHeight = hPF->getPreferedSize().height(); - } else - continue; - } - /*-- 横幅にSpacing値(=5)の分を足す --*/ - if (hLay->count() > 1) tmpSumWidth += (hLay->count() - 1) * 5; - /*-- 横幅の更新 --*/ - if (maxWidgetWidth < tmpSumWidth) maxWidgetWidth = tmpSumWidth; - /*-- 縦サイズの更新 --*/ - fieldsHeight += tmpMaxHeight; - } - /*--- ヒストグラムの場合 : 最小サイズは 横278 × 縦162 ---*/ - else if (histo) { - /*-- 横幅の更新 --*/ - if (maxWidgetWidth < 278) maxWidgetWidth = 278; - /*-- 縦サイズの更新 --*/ - fieldsHeight += 162; - } - /*-- セパレータの場合 : 高さ10 --*/ - else if (sep) { - fieldsHeight += 10; - } - /*-- RgbLinkButtonの場合 : 高さ21 --*/ - else if (linkBut) { - fieldsHeight += 21; - } else - continue; - } + + QSize itemSize = getItemSize(item); + if (maxWidgetWidth < itemSize.width()) maxWidgetWidth = itemSize.width(); + fieldsHeight += itemSize.height(); } if (layout->rowCount() > 1) fieldsHeight += (layout->rowCount() - 1) * 10; @@ -659,10 +635,11 @@ QSize ParamsPage::getPreferedSize() { updateMaximumPageSize(m_mainLayout, maxLabelWidth, maxWidgetWidth, fieldsHeight); - - return QSize( - maxLabelWidth + maxWidgetWidth + 5 /* Spacing */ + 24 /* Margin2つ分 */, - fieldsHeight + 24 /* Margin2つ分 */ + 20 /* 余白 */); + return QSize(maxLabelWidth + maxWidgetWidth + + m_mainLayout->horizontalSpacing() + + 2 * m_mainLayout->margin(), + fieldsHeight + 2 * m_mainLayout->margin() + + 31 /* spacing for the swatch */); } //=============================================================================