File: AtomDCWidget.cpp

package info (click to toggle)
camitk 4.0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 343,588 kB
  • sloc: cpp: 78,476; xml: 1,210; sh: 723; ansic: 142; makefile: 101; perl: 84; sed: 20
file content (165 lines) | stat: -rw-r--r-- 5,785 bytes parent folder | download
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*****************************************************************************
 * $CAMITK_LICENCE_BEGIN$
 *
 * CamiTK - Computer Assisted Medical Intervention ToolKit
 * (c) 2001-2016 Univ. Grenoble Alpes, CNRS, TIMC-IMAG UMR 5525 (GMCAO)
 *
 * Visit http://camitk.imag.fr for more information
 *
 * This file is part of CamiTK.
 *
 * CamiTK is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * CamiTK is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with CamiTK.  If not, see <http://www.gnu.org/licenses/>.
 *
 * $CAMITK_LICENCE_END$
 ****************************************************************************/


// pml
#include <pml/Atom.h>
#include <pml/StructuralComponent.h>
#include <pml/Cell.h>



#include "PMManagerDC.h"
#include "AtomDCWidget.h"
#include "AtomDC.h"
#include "CellDC.h"
#include "StructuralComponentDC.h"



// qt stuff
#include <QVBoxLayout>
#include <QLabel>
#include <QTableWidget>
#include <QHeaderView>

#include <QMessageBox>

// ---------------------- Constructor ----------------------------
AtomDCWidget::AtomDCWidget(AtomDC *adc, QWidget* parent) : QWidget(parent) {
    // create the layout
    QVBoxLayout * widgetLayout = new QVBoxLayout(this);

    // the text label
    infoLabel = new QLabel(this);
    widgetLayout->addWidget(infoLabel);

    // and the list widget
    usedInTable = new QTableWidget(this);
    usedInTable->setSelectionBehavior(QAbstractItemView::SelectRows);

    // headers
    usedInTable->setColumnCount(4); // very very important!
    QStringList headerTitles;
    headerTitles << " " << "Name/Id" << "E/I" << "Children";
    usedInTable->setHorizontalHeaderLabels(headerTitles);
    usedInTable->horizontalHeader()->setStretchLastSection(false);
    usedInTable->horizontalHeader()->setResizeMode(0, QHeaderView::Stretch); // First column stretch to what is needed
    usedInTable->horizontalHeader()->setResizeMode(1, QHeaderView::Fixed); // Last column never resize
    usedInTable->horizontalHeader()->setVisible(true);

    widgetLayout->addWidget(usedInTable);

    // add the tool tip-top
    usedInTable->setToolTip("List of all cells and StructuralComponents<br>using this atom.<p>E/I = <b>E</b>xclusive or <b>I</b>nformative");
    usedInTable->setToolTip("List of all cells and StructuralComponents<br>using this atom.<p>E/I = <b>E</b>xclusive or <b>I</b>nformative");

    // click allow selection
    connect(usedInTable, SIGNAL(cellClicked(int, int)),
            this, SLOT(usedInTableClicked(int , int )));
}

#include "cell_20x20.xpm"
#include "structuralcomponent_20x20.xpm"
QPixmap * cellPixmap = NULL;
QPixmap * structuralComponentPixmap = NULL;

// ---------------------- updateProperties ----------------------------
void AtomDCWidget::updateProperties(AtomDC *adc) {
    myDC = adc;
    Atom *a = myDC->getAtom();

    // create the pixmap if non existant
    if (!cellPixmap)
        cellPixmap = new QPixmap(cell_20x20);

    if (!structuralComponentPixmap)
        structuralComponentPixmap = new QPixmap(structuralcomponent_20x20);

    // set the text
    infoLabel->setText("Atom #" + QString::number(a->getIndex()) + " used in:");

    // fill in the list
    usedInTable->clearContents();
    usedInTable->setRowCount(a->getNumberOfStructuralComponents());
    usedInTable->verticalHeader()->setVisible(false);
    usedInTable->setSortingEnabled(false); // temporarily for insertion!

    StructuralComponent *sc;
    for (unsigned int i = 0; i < a->getNumberOfStructuralComponents(); i++) {
        sc = a->getStructuralComponent(i);

        // add the icon
        if (sc->isInstanceOf("Cell"))
            usedInTable->setItem(i, 0, new QTableWidgetItem((*cellPixmap), ""));
        else
            usedInTable->setItem(i, 0, new QTableWidgetItem((*structuralComponentPixmap), ""));

        // name and E/I
        bool isExclusive;

        if (sc->isInstanceOf("Cell")) {
            usedInTable->setItem(i, 1, new QTableWidgetItem(QString::number(dynamic_cast<Cell *>(sc)->getIndex())));
            isExclusive = dynamic_cast<Cell *>(sc)->getStructuralComponent(0)->isExclusive();
        } else {
            usedInTable->setItem(i, 1, new QTableWidgetItem(sc->getName().c_str()));
            isExclusive = sc->isExclusive();
        }

        // add exclusive/inclusive info
        if (isExclusive)
            usedInTable->setItem(i, 2, new QTableWidgetItem("E"));
        else
            usedInTable->setItem(i, 2, new QTableWidgetItem("I"));

        // nr of children
        usedInTable->setItem(i, 3, new QTableWidgetItem(QString::number(sc->getNumberOfStructures())));
    }

    // update view
    usedInTable->resizeColumnsToContents();
    usedInTable->setSortingEnabled(true);
    usedInTable->sortByColumn(1, Qt::AscendingOrder);
}

// ---------------------- usedInTableClicked ----------------------------
void AtomDCWidget::usedInTableClicked(int row, int column) {
    // get the currently selected SC of a
    Atom *a = myDC->getAtom();
    StructuralComponent *sc = a->getStructuralComponent(row);

    // get the corresponding DC
    camitk::Component * toSelect;
    if (sc->isInstanceOf("Cell"))
        toSelect = myDC->getPMManagerDC()->getDC(dynamic_cast<Cell *>(sc));
    else
        toSelect = myDC->getPMManagerDC()->getDC(sc);

    // select it!
    toSelect->setSelected(true);
    toSelect->refresh();
}