1
0
mirror of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git synced 2025-04-01 02:42:39 +08:00

Save/restore visiblity state of FloatingWidget.

This commit is contained in:
mfreiholz 2016-02-17 10:10:36 +01:00
parent f0b1ea4735
commit d67a7e65e9

View File

@ -137,6 +137,7 @@ QByteArray ContainerWidget::saveState() const
FloatingWidget* fw = _floatings.at(i); FloatingWidget* fw = _floatings.at(i);
out << fw->content()->uniqueName(); out << fw->content()->uniqueName();
out << fw->saveGeometry(); out << fw->saveGeometry();
out << fw->isVisible();
} }
// Walk through layout for splitters // Walk through layout for splitters
@ -495,7 +496,9 @@ bool ContainerWidget::restoreFloatingWidgets(QDataStream& in, QList<FloatingWidg
in >> uname; in >> uname;
QByteArray geom; QByteArray geom;
in >> geom; in >> geom;
qDebug() << "Restore FloatingWidget" << uname << geom; bool visible = false;
in >> visible;
qDebug() << "Restore FloatingWidget" << uname << geom << visible;
const SectionContent::RefPtr sc = SectionContent::LookupMapByName.value(uname).toStrongRef(); const SectionContent::RefPtr sc = SectionContent::LookupMapByName.value(uname).toStrongRef();
if (!sc) if (!sc)
@ -510,9 +513,9 @@ bool ContainerWidget::restoreFloatingWidgets(QDataStream& in, QList<FloatingWidg
FloatingWidget* fw = new FloatingWidget(this, sc, data.titleWidget, data.contentWidget, this); FloatingWidget* fw = new FloatingWidget(this, sc, data.titleWidget, data.contentWidget, this);
fw->restoreGeometry(geom); fw->restoreGeometry(geom);
fw->setVisible(true); fw->setVisible(visible);
data.titleWidget->_fw = fw; // $mfreiholz: Don't look at it :-< It's more than ugly...
floatings.append(fw); floatings.append(fw);
data.titleWidget->_fw = fw; // $mfreiholz: Don't look at it :-< It's more than ugly...
} }
return true; return true;
} }