v2.0.0
Loading...
Searching...
No Matches
abstractview.cpp
Go to the documentation of this file.
1//=============================================================================================================
14
15//=============================================================================================================
16// INCLUDES
17//=============================================================================================================
18
19#include "abstractview.h"
20
21//=============================================================================================================
22// QT INCLUDES
23//=============================================================================================================
24
25#include <QDebug>
26//=============================================================================================================
27// EIGEN INCLUDES
28//=============================================================================================================
29
30//=============================================================================================================
31// USED NAMESPACES
32//=============================================================================================================
33
34using namespace DISPLIB;
35
36//=============================================================================================================
37// DEFINE MEMBER METHODS
38//=============================================================================================================
39
41 Qt::WindowFlags f)
42: QWidget(parent, f)
43{
44}
45
46//=============================================================================================================
47
49{
50 updateGuiMode(mode);
51};
52
53//=============================================================================================================
54
Common base widget for every dockable Quick-Control settings panel in DISPLIB.
2-D display widgets and visualisation helpers (charts, topography, colour maps).
virtual void setProcessingMode(ProcessingMode mode)
virtual void setGuiMode(GuiMode mode)
AbstractView(QWidget *parent=0, Qt::WindowFlags f=Qt::Widget)
virtual void updateProcessingMode(ProcessingMode mode)=0
virtual void updateGuiMode(GuiMode mode)=0