File: MagicSelectionInteractorConfigWidget.cpp

package info (click to toggle)
tulip 3.7.0dfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 39,428 kB
  • sloc: cpp: 231,403; php: 11,023; python: 1,128; sh: 671; yacc: 522; makefile: 315; xml: 63; lex: 55
file content (158 lines) | stat: -rwxr-xr-x 4,708 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
/**
 *
 * This file is part of Tulip (www.tulip-software.org)
 *
 * Authors: David Auber and the Tulip development Team
 * from LaBRI, University of Bordeaux 1 and Inria Bordeaux - Sud Ouest
 *
 * 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 "MagicSelectionInteractorConfigWidget.h"

#include <tulip/Graph.h>
#include <tulip/DoubleProperty.h>
#include <tulip/IntegerProperty.h>
#include <tulip/PropertyInterface.h>

using namespace std;
using namespace tlp;

MagicSelectionInteractorConfigWidget::MagicSelectionInteractorConfigWidget(QWidget* parent ): QWidget(parent), _graph(NULL), _currentProperty(NULL) {
  setupUi(this);

  connect(selectionAdd, SIGNAL(toggled(bool)), this, SLOT(pushButtontoggled(bool)));
  connect(selectionRemove, SIGNAL(toggled(bool)), this, SLOT(pushButtontoggled(bool)));
  connect(selectionReplace, SIGNAL(toggled(bool)), this, SLOT(pushButtontoggled(bool)));
  connect(selectionIntersection, SIGNAL(toggled(bool)), this, SLOT(pushButtontoggled(bool)));

  connect(properties, SIGNAL(currentIndexChanged(QString)), this, SLOT(selectedPropertyChanged(const QString&)));
}

void MagicSelectionInteractorConfigWidget::pushButtontoggled(bool pushed) {
  std::vector<QPushButton*> selectionButtons(4);
  selectionButtons[0] = selectionAdd;
  selectionButtons[1] = selectionRemove;
  selectionButtons[2] = selectionReplace;
  selectionButtons[3] = selectionIntersection;

  if(pushed) {
    for(std::vector<QPushButton*>::const_iterator it = selectionButtons.begin(); it != selectionButtons.end(); ++it) {
      if(*it != QObject::sender()) {
        (*it)->setChecked(false);
      }
    }
  }
  else {
    bool canToggle = false;
    QPushButton* sender = (QPushButton*)QObject::sender();

    for(std::vector<QPushButton*>::const_iterator it = selectionButtons.begin(); it != selectionButtons.end(); ++it) {
      if(*it != sender && (*it)->isChecked()) {
        canToggle = true;
        break;
      }
    }

    if(!canToggle) {
      sender->setChecked(false);
    }
  }
}

Selectionbehavior MagicSelectionInteractorConfigWidget::selectionBehavior() const {
  if(selectionAdd->isChecked()) {
    return Add;
  }
  else if(selectionIntersection->isChecked()) {
    return Intersect;
  }
  else if(selectionRemove->isChecked()) {
    return Remove;
  }
  else if(selectionReplace->isChecked()) {
    return Replace;
  }

  return Replace;
}

QString MagicSelectionInteractorConfigWidget::propertyName() const {
  return properties->currentText();
}

void MagicSelectionInteractorConfigWidget::setGraph(tlp::Graph* graph) {
  if(_graph) {
    _graph->removeObserver(this);
  }

  _graph = graph;
  _graph->addObserver(this);

  updateAvailableProperties();
}

void MagicSelectionInteractorConfigWidget::selectedPropertyChanged(const QString& propertyName) {
  if(_currentProperty) {
    _currentProperty->removeObserver(this);
  }

  if(!propertyName.isEmpty()) {
    _currentProperty = _graph->getProperty(propertyName.toStdString());
    _currentProperty->addObserver(this);
  }
  else {
    _currentProperty = NULL;
  }
}

void MagicSelectionInteractorConfigWidget::updateAvailableProperties() {

  QString previouslySelected = properties->currentText();

  Iterator<string>* propIt = _graph->getProperties();
  properties->clear();

  while(propIt->hasNext()) {
    string propertyName = propIt->next();
    PropertyInterface* propertyInterface = _graph->getProperty(propertyName);

    if(propertyInterface->getTypename() == "double" || propertyInterface->getTypename() == "int") {
      properties->addItem(QString::fromStdString(propertyName));
    }
  }

  delete propIt;

  for(int i = 0; i < properties->count(); ++i) {
    if(properties->itemText(i) == previouslySelected) {
      properties->setCurrentIndex(i);
      break;
    }
  }

}

bool MagicSelectionInteractorConfigWidget::directedSelection() const {
  return directed->isChecked();
}

double MagicSelectionInteractorConfigWidget::lowerBound() const {
  return underValue->value();
}

double MagicSelectionInteractorConfigWidget::upperBound() const {
  return overValue->value();
}

void MagicSelectionInteractorConfigWidget::update(std::set< tlp::Observable* >::iterator, std::set< tlp::Observable* >::iterator) {
  updateAvailableProperties();
}