Computer Assited Medical Intervention Tool Kit  version 5.0
Tabular.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * $CAMITK_LICENCE_BEGIN$
3  *
4  * CamiTK - Computer Assisted Medical Intervention ToolKit
5  * (c) 2001-2021 Univ. Grenoble Alpes, CNRS, Grenoble INP, TIMC, 38000 Grenoble, France
6  *
7  * Visit http://camitk.imag.fr for more information
8  *
9  * This file is part of CamiTK.
10  *
11  * CamiTK is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * CamiTK is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU Lesser General Public License version 3 for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * version 3 along with CamiTK. If not, see <http://www.gnu.org/licenses/>.
22  *
23  * $CAMITK_LICENCE_END$
24  ****************************************************************************/
25 
26 #include <QtGui>
27 #include <QTableWidget>
28 
29 #include "MMLMonitorDisplay.h"
30 #include "MMLComponentAPI.h"
31 
32 #ifndef MMLMONITORSDISLPAYS_TABULAR_H
33 #define MMLMONITORSDISLPAYS_TABULAR_H
34 
35 
37  Q_OBJECT
38 public:
39 
41  Tabular(Monitor* monitor, MMLComponent* manager);
43  ~Tabular() override;
44 
46  void update() override;
48  void hide() override;
49 
50 public slots:
51 
52  void copy();
53 
54 private:
55 
57  QTableWidget* table;
59  int line;
61  int oldRowSize;
63  bool eventFilter(QObject* obj, QEvent* event) override;
64 };
65 
66 #endif
MMLMonitorDisplay::manager
MMLComponent * manager
display
Definition: MMLMonitorDisplay.h:64
Tabular::Tabular
Tabular(Monitor *monitor, MMLComponent *manager)
constructor
Definition: Tabular.cpp:40
MMLComponentAPI.h
Tabular::line
int line
row line in monitor table
Definition: Tabular.h:82
MMLMonitorDisplay.h
MMLDisplay.h
Tabular::update
void update() override
update display
Definition: Tabular.cpp:63
MMLComponent::getMonitoringGuiManager
MonitoringGuiManager * getMonitoringGuiManager()
get MonitoringGuiManager
Definition: MMLComponent.cpp:152
Monitor::SCALARSET
@ SCALARSET
Definition: Monitor.h:108
Monitor::getValueType
Monitor::type getValueType()
Definition: Monitor.cpp:222
MonitoringGuiManager::getDialog
MonitoringDialog * getDialog()
get dialog
Definition: MonitoringGuiManager.cpp:64
MMLMonitorDisplay::monitor
Monitor * monitor
monitor
Definition: MMLMonitorDisplay.h:62
MonitoringDialog.h
Tabular::hide
void hide() override
hide display
Definition: Tabular.cpp:126
MMLMonitorDisplayFactory::getInstance
static MMLMonitorDisplayFactory * getInstance()
return the unique instance of the factory
Definition: MMLMonitorDisplayFactory.cpp:60
Tabular
Definition: Tabular.h:36
Monitor::MATRIX_33SET
@ MATRIX_33SET
Definition: Monitor.h:110
Monitor::SCALAR
@ SCALAR
Definition: Monitor.h:107
Monitor::getIndexOfValues
int getIndexOfValues(const unsigned int i)
get index i of indexes vector
Definition: Monitor.cpp:240
MMLMonitorDisplay::hide
virtual void hide()=0
hide display
Tabular.h
MMLMonitorDisplay
Generic class for MML Monitor 3D/Graphical representation.
Definition: MMLMonitorDisplay.h:45
MMLComponent
This class manage an MML monitoring document ".mml".
Definition: MMLComponent.h:48
MMLMonitorDisplayFactory::registerClass
bool registerClass(std::string id, Monitor::type type)
Register a class into the map A registered class can be created using createMonitorDisplay().
Definition: MMLMonitorDisplayFactory.h:64
Monitor::VECTORSET
@ VECTORSET
Definition: Monitor.h:109
MMLMonitorDisplayFactory.h
MonitoringGuiManager.h
Monitor::getValue
double getValue(const unsigned int i)
get value i of values vector
Definition: Monitor.cpp:250
MMLDisplay::getDisplayedMonitorLine
int getDisplayedMonitorLine()
get the line of the displayed monitor in the monitor tab
Definition: MMLDisplay.cpp:163
MonitoringDialog::getMonitorsTableWidget
QTableWidget * getMonitorsTableWidget()
get the monitors table
Definition: MonitoringDialog.cpp:365
Monitor::getNumberOfIndex
unsigned int getNumberOfIndex()
get number of index in indexes vetor
Definition: Monitor.cpp:260
tabularRegistered
bool tabularRegistered
Definition: Tabular.cpp:38
Tabular::table
QTableWidget * table
the tabular
Definition: Tabular.h:80
MMLCOMPONENT_API
#define MMLCOMPONENT_API
Definition: MMLComponentAPI.h:54
Tabular::eventFilter
bool eventFilter(QObject *obj, QEvent *event) override
event filter which manage opening of the tabular popup menu when rigth click is pressed
Definition: Tabular.cpp:157
Tabular::~Tabular
~Tabular() override
destructor
Definition: Tabular.cpp:55
MMLComponent::getDisplay
MMLDisplay * getDisplay()
get the display
Definition: MMLComponent.cpp:162
Monitor
A monitor calculate and store followed data (ex:calculation between current position and references) ...
Definition: Monitor.h:49
Tabular::oldRowSize
int oldRowSize
old row size in the monitors table
Definition: Tabular.h:84
Tabular::copy
void copy()
Definition: Tabular.cpp:136
MMLComponent.h
MMLMonitorDisplay::update
virtual void update()=0
update display