新进展
This commit is contained in:
parent
b23050fdfe
commit
d66fa76b0f
|
@ -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>
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue