Some refactoring to improve code clarity, renamed DockWidgetTitleBar into DockWidgetTab because in the GUI it is a tab, created new class CDockAreaTabBar for the tabbar of a dock area

This commit is contained in:
Uwe Kindler
2018-08-24 13:41:58 +02:00
parent f5b3c0556d
commit 6b93ae9c39
14 changed files with 350 additions and 209 deletions

View File

@@ -28,6 +28,7 @@
//============================================================================
// INCLUDES
//============================================================================
#include <DockWidgetTab.h>
#include "DockManager.h"
#include <iostream>
@@ -49,7 +50,6 @@
#include "DockWidget.h"
#include "ads_globals.h"
#include "DockStateSerialization.h"
#include "DockWidgetTitleBar.h"
#include "DockAreaWidget.h"
namespace ads
@@ -370,7 +370,6 @@ bool CDockManager::restoreState(const QByteArray &state, int version)
}
emit stateChanged();
return true;
}