-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockMainWidgetWrapper.cpp
56 lines (42 loc) · 1.78 KB
/
DockMainWidgetWrapper.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include "DockMainWidgetWrapper.h"
#include <QDebug>
DockMainWidgetWrapper::DockMainWidgetWrapper ( QWidget *parent ) : QWidget ( parent ) {
this->widget = nullptr;
this->hlayout = new QHBoxLayout ( this );
this->hlayout->setSpacing ( 0 );
this->hlayout->setContentsMargins ( 0, 0, 0, 0 );
this->setLayout ( this->hlayout );
this->old_size = QSize ( 1, 1 );
}
bool DockMainWidgetWrapper::isCollapsed () {
return this->widget->isVisible ();
}
void DockMainWidgetWrapper::setCollapsed ( bool flag ) {
qDebug () << "Si está entrando por el setCollapsed de la clase DockMainWidgetWrapper";
if ( flag ) {
qDebug () << "La variable flag es true";
this->old_size = this->size ();
this->layout ()->removeWidget ( this->widget );
this->widget->hide ();
if ( DockWidget::hasFeature ( ( DockWidget * ) this->parent (), QDockWidget::DockWidgetVerticalTitleBar ) ) {
( ( DockWidget * ) this->parent () )->setMaximumWidth ( ( ( QWidget * ) this->parent () )->width () - this->width () );
} else {
( ( DockWidget * ) this->parent () )->setMaximumHeight ( ( ( QWidget * ) this->parent () )->height () - this->height () );
}
} else {
qDebug () << "La variable flag es false";
qDebug () << this->old_size;
this->setFixedSize ( this->old_size );
( ( DockWidget * ) this->parent () )->setMinimumSize ( QSize ( 1, 1 ) );
( ( DockWidget * ) this->parent () )->setMaximumSize ( QSize ( 32768, 32768 ) );
this->widget->show ();
this->layout ()->addWidget ( this->widget );
this->setMinimumSize ( QSize ( 1, 1 ) );
this->setMaximumSize ( QSize ( 32768, 32768 ) );
}
}
void DockMainWidgetWrapper::setWidget ( QWidget *widget ) {
this->widget = widget;
this->widget_height = widget->height ();
this->layout ()->addWidget ( widget );
}