File: EditColorScaleInteractor.cpp

package info (click to toggle)
tulip 4.8.0dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 179,264 kB
  • ctags: 64,517
  • sloc: cpp: 600,444; ansic: 36,311; makefile: 22,136; python: 1,304; sh: 946; yacc: 522; xml: 337; pascal: 157; php: 66; lex: 55
file content (180 lines) | stat: -rw-r--r-- 6,404 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/**
 *
 * This file is part of Tulip (www.tulip-software.org)
 *
 * Authors: David Auber and the Tulip development Team
 * from LaBRI, University of Bordeaux
 *
 * Tulip is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation, either version 3
 * of the License, or (at your option) any later version.
 *
 * Tulip 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 General Public License for more details.
 *
 */

#include "EditColorScaleInteractor.h"
#include "GlLabelledColorScale.h"

#include <QMouseEvent>

#include <tulip/GlMainWidget.h>
#include <tulip/GlEntity.h>
#include <tulip/GlColorScale.h>
#include <tulip/ColorScaleConfigDialog.h>
#include <tulip/Camera.h>
#include <tulip/GlLayer.h>
#include <tulip/DoubleProperty.h>

#include "SOMView.h"
#include <SOMMap.h>

using namespace tlp;
using namespace std;

EditColorScaleInteractor::EditColorScaleInteractor() :
  currentProperty(NULL), colorScale(NULL), widthPercent(.80f), heightPercent(.1f), heightPosition(.1f),glMainWidgetWidth(0),glMainWidgetHeight(0),selectionLayer(new GlLayer("SelectionLayer")) {
}

EditColorScaleInteractor::~EditColorScaleInteractor() {
  selectionLayer->clear();
  delete selectionLayer;
  delete colorScale;
}

bool EditColorScaleInteractor::eventFilter(QObject *obj, QEvent *event) {
  tlp::GlMainWidget *glMainWidget = dynamic_cast<tlp::GlMainWidget*> (obj);

  if (glMainWidget == NULL)
    return false;

  if (event->type() == QEvent::MouseButtonDblClick) {
    QMouseEvent *me = (QMouseEvent*) event;
    GlMainWidget *glMainWidget = dynamic_cast<tlp::GlMainWidget*> (obj);

    if (!glMainWidget)
      return false;

    glMainWidget->getScene()->getGraphCamera().initGl();
    selectionLayer->set2DMode();
    glMainWidget->getScene()->addExistingLayer(selectionLayer);
    selectionLayer->getCamera().initGl();
    selectionLayer->addGlEntity(colorScale, "colorScale");

    std::vector<SelectedEntity> entities;
    glMainWidget->getScene()->selectEntities(RenderingSimpleEntities, me->pos().x(),
        me->pos().y(), 2, 2, selectionLayer, entities);
    bool foundGlColorScale = false;

    if (!entities.empty()) {
      for (vector<SelectedEntity>::iterator entityIterator = entities.begin(); entityIterator
           != entities.end(); ++entityIterator) {
        if ((*entityIterator).getSimpleEntity() == colorScale->getGlColorScale()) {
          ColorScaleConfigDialog dialog(colorScale->getGlColorScale()->getColorScale(),
                                        glMainWidget);
          foundGlColorScale = true;
          dialog.exec();
        }
      }

    }

    //Empty layer without destructing objects.
    selectionLayer->deleteGlEntity(colorScale);
    glMainWidget->getScene()->removeLayer(selectionLayer,false);

    return foundGlColorScale;
  }

  return false;
}
void EditColorScaleInteractor::viewChanged(View *view) {
  SOMView *somView = dynamic_cast<SOMView*> (view);

  if (somView != NULL) {
    assert(colorScale == NULL);
    GlMainWidget* glMainWidget = somView->getMapWidget();
    Size screenSize(glMainWidget->width() * widthPercent, glMainWidget->height()
                    * heightPercent);
    Coord bottomLeftScreenCoord((glMainWidget->width() - screenSize.getW()) * .5,
                                glMainWidget->height() * .1, 0);
    colorScale = new GlLabelledColorScale(bottomLeftScreenCoord, screenSize,
                                          somView->getColorScale(), 0, 0, false);

    propertyChanged(somView,somView->getSelectedProperty(), somView->getSelectedPropertyValues());
  }
}

bool EditColorScaleInteractor::compute(GlMainWidget *) {
  SOMView *somView = dynamic_cast<SOMView*> (view());
  assert(somView != NULL);

  screenSizeChanged(somView);
  return true;
}

bool EditColorScaleInteractor::draw(GlMainWidget *glMainWidget) {
  SOMView *somView = dynamic_cast<SOMView*> (view());
  assert(somView != NULL);

  if (colorScale) {
    NumericProperty *newProperty = somView->getSelectedPropertyValues();

    if (currentProperty != newProperty) {
      propertyChanged(somView,somView->getSelectedProperty(), newProperty);
    }

    if (colorScale->isVisible()) {
      glMainWidget->getScene()->getGraphCamera().initGl();
      Camera camera2D = Camera(glMainWidget->getScene(), false);
      camera2D.setScene(glMainWidget->getScene());
      camera2D.initGl();

      map<string, GlSimpleEntity*> displays = colorScale->getGlEntities();

      for (map<string, GlSimpleEntity*>::iterator it = displays.begin(); it!= displays.end(); ++it) {
        it->second->draw(0, &camera2D);
      }
    }
  }

  return true;
}

void EditColorScaleInteractor::screenSizeChanged(SOMView* somView) {
  GlMainWidget* glMainWidget = somView->getMapWidget();

  if(glMainWidget->width()!=glMainWidgetWidth || glMainWidget->height()!=glMainWidgetHeight) {
    if (colorScale) {
      Size screenSize(glMainWidget->width() * widthPercent, glMainWidget->height()
                      * heightPercent);
      Coord bottomLeftScreenCoord((glMainWidget->width() - screenSize.getW()) * .5,
                                  glMainWidget->height() * .1, 0);
      colorScale->setPosition(bottomLeftScreenCoord);
      colorScale->setSize(screenSize);
      glMainWidgetWidth=glMainWidget->width();
      glMainWidgetHeight=glMainWidget->height();
    }
  }
}

void EditColorScaleInteractor::propertyChanged(SOMView* somView,const string& propertyName, NumericProperty *propertyValues) {
  if (propertyValues) {
    colorScale->setVisible(true);
    //If the input samples are normalized we need to translate it to unormalized values before displaying it.
    double minValue = propertyValues->getNodeDoubleMin(somView->getSOM());
    double maxValue = propertyValues->getNodeDoubleMax(somView->getSOM());
    InputSample& inputSample = somView->getInputSample();
    colorScale->setMinValue(inputSample.isUsingNormalizedValues()?inputSample.unnormalize(minValue,propertyName):minValue);
    colorScale->setMaxValue(inputSample.isUsingNormalizedValues()?inputSample.unnormalize(maxValue,propertyName):maxValue);
  }
  else {
    colorScale->setVisible(false);
  }

  currentProperty = propertyValues;
}