新进展

This commit is contained in:
玉宇清音 2024-01-27 09:48:50 +08:00
parent b23050fdfe
commit d66fa76b0f
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.15.0, 2024-01-25T21:32:03. -->
<!-- Written by QtCreator 4.15.0, 2024-01-27T09:48:04. -->
<qtcreator>
<data>
<variable>EnvironmentId</variable>

View File

@ -29,10 +29,10 @@ void DragSplitter::mouseMoveEvent(QMouseEvent *event)
//=====================================================
SplitPanel::SplitPanel(ViewBase *first, ViewBase *next, ViewRes *parent)
SplitPanel::SplitPanel(ResManager *mgr, ViewBase *a, ViewBase *b, SplitType split, ViewRes *parent)
: QWidget(parent->widget()), parent_inst(parent)
{
this->split_member = std::make_tuple(first, next);
this->split_member = std::make_tuple(a, b);
this->split_info_value = std::make_tuple(SplitType::SPLIT_H, 0.5, 8);
}