OpenMS  2.4.0
Spectrum2DCanvas.h
Go to the documentation of this file.
1 // --------------------------------------------------------------------------
2 // OpenMS -- Open-Source Mass Spectrometry
3 // --------------------------------------------------------------------------
4 // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
5 // ETH Zurich, and Freie Universitaet Berlin 2002-2018.
6 //
7 // This software is released under a three-clause BSD license:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of any author or any participating institution
14 // may be used to endorse or promote products derived from this software
15 // without specific prior written permission.
16 // For a full list of authors, refer to the file AUTHORS.
17 // --------------------------------------------------------------------------
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 // ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
22 // INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 //
30 // --------------------------------------------------------------------------
31 // $Maintainer: Timo Sachsenberg$
32 // $Authors: Marc Sturm $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
37 // OpenMS_GUI config
38 #include <OpenMS/VISUAL/OpenMS_GUIConfig.h>
39 
40 // OpenMS
44 
45 // QT
46 class QPainter;
47 class QMouseEvent;
48 class QAction;
49 class QMenu;
50 
51 namespace OpenMS
52 {
70  class OPENMS_GUI_DLLAPI Spectrum2DCanvas :
71  public SpectrumCanvas
72  {
73  Q_OBJECT
74 
75 public:
77  Spectrum2DCanvas(const Param& preferences, QWidget* parent = nullptr);
78 
80  ~Spectrum2DCanvas() override;
81 
82  // Docu in base class
83  void showCurrentLayerPreferences() override;
84 
85  // Docu in base class
86  void saveCurrentLayer(bool visible) override;
87 
89  void mergeIntoLayer(Size i, FeatureMapSharedPtrType map);
90 
92  void mergeIntoLayer(Size i, ConsensusMapSharedPtrType map);
93 
95  void mergeIntoLayer(Size i, std::vector<PeptideIdentification>& peptides);
96 
98  void recalculateCurrentLayerDotGradient();
99 
100 signals:
102  void showProjectionHorizontal(ExperimentSharedPtrType);
104  void showProjectionVertical(ExperimentSharedPtrType);
106  void showProjectionInfo(int, double, double);
108  void toggleProjections();
110  void showSpectrumAs1D(int index);
111  void showSpectrumAs1D(std::vector<int, std::allocator<int> > indices);
113  void showCurrentPeaksAs3D();
114 
115 public slots:
116  // Docu in base class
117  void activateLayer(Size layer_index) override;
118  // Docu in base class
119  void removeLayer(Size layer_index) override;
120  //docu in base class
121  void updateLayer(Size i) override;
122  // Docu in base class
123  void horizontalScrollBarChange(int value) override;
124  // Docu in base class
125  void verticalScrollBarChange(int value) override;
126 
136  void updateProjections();
137 
138 protected slots:
139 
141  void currentLayerParametersChanged_();
142 
143 protected:
144  // Docu in base class
145  bool finishAdding_() override;
146 
148  bool collectFragmentScansInArea(double rt_min, double rt_max, double mz_min, double mz_max, QAction* a, QMenu * msn_scans, QMenu * msn_meta);
149 
151  void drawCoordinates_(QPainter& painter, const PeakIndex& peak);
153  void drawDeltas_(QPainter& painter, const PeakIndex& start, const PeakIndex& end);
154 
157  void mousePressEvent(QMouseEvent* e) override;
158  void mouseReleaseEvent(QMouseEvent* e) override;
159  void mouseMoveEvent(QMouseEvent* e) override;
160  void paintEvent(QPaintEvent* e) override;
161  void contextMenuEvent(QContextMenuEvent* e) override;
162  void keyPressEvent(QKeyEvent* e) override;
163  void keyReleaseEvent(QKeyEvent* e) override;
164  void mouseDoubleClickEvent(QMouseEvent* e) override;
166 
167  // Docu in base class
168  void updateScrollbars_() override;
169 
178  void paintDots_(Size layer_index, QPainter& p);
179 
180  void paintAllIntensities_(Size layer_index, double pen_width, QPainter& painter);
181 
193  void paintMaximumIntensities_(Size layer_index, Size rt_pixel_count, Size mz_pixel_count, QPainter& p);
194 
201  void paintPrecursorPeaks_(Size layer_index, QPainter& painter);
202 
209  void paintFeatureData_(Size layer_index, QPainter& p);
210 
217  void paintTraceConvexHulls_(Size layer_index, QPainter& p);
218 
225  void paintFeatureConvexHulls_(Size layer_index, QPainter& p);
226 
233  void paintIdentifications_(Size layer_index, QPainter& p);
234 
241  void paintConsensusElements_(Size layer_index, QPainter& p);
242 
251  void paintConsensusElement_(Size layer_index, const ConsensusFeature& cf, QPainter& p, bool use_buffer);
252 
259  bool isConsensusFeatureVisible_(const ConsensusFeature& ce, Size layer_index);
260 
267  void paintConvexHulls_(const std::vector<ConvexHull2D>& hulls, bool hasIdentifications, QPainter& p);
268 
269  // Docu in base class
270  void intensityModeChange_() override;
271  // DOcu in base class
272  void recalculateSnapFactor_() override;
273 
279  inline Int precalculatedColorIndex_(float val, const MultiGradient& gradient, double snap_factor)
280  {
281  float gradientPos;
282  switch (intensity_mode_)
283  {
284  case IM_NONE:
285  gradientPos = val;
286  break;
287 
288  case IM_PERCENTAGE:
289  gradientPos = val * percentage_factor_;
290  break;
291 
292  case IM_SNAP:
293  gradientPos = val * snap_factor;
294  break;
295 
296  case IM_LOG:
297  gradientPos = std::log(val + 1);
298  break;
299 
300  default:
301  throw Exception::NotImplemented(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION);
302  }
303  return gradient.precalculatedColorIndex(gradientPos);
304  }
305 
311  inline QColor heightColor_(float val, const MultiGradient& gradient, double snap_factor)
312  {
313  return gradient.precalculatedColorByIndex(precalculatedColorIndex_(val, gradient, snap_factor));
314  }
315 
324  inline void dataToWidget_(double x, double y, QPoint& point)
325  {
326  if (!isMzToXAxis())
327  {
328  point.setX(int((y - visible_area_.minY()) / visible_area_.height() * width()));
329  point.setY(height() - int((x - visible_area_.minX()) / visible_area_.width() * height()));
330  }
331  else
332  {
333  point.setX(int((x - visible_area_.minX()) / visible_area_.width() * width()));
334  point.setY(height() - int((y - visible_area_.minY()) / visible_area_.height() * height()));
335  }
336  }
337 
349  double adaptPenScaling_(double ratio_data2pixel, double& pen_size) const;
350 
352  void recalculateDotGradient_(Size layer);
353 
355  void highlightPeak_(QPainter& p, const PeakIndex& peak);
356 
358  PeakIndex findNearestPeak_(const QPoint& pos);
359 
361  void paintIcon_(const QPoint& pos, const QRgb& color, const String& icon, Size s, QPainter& p) const;
362 
364  virtual void translateVisibleArea_(double mzShiftRel, double rtShiftRel);
365 
366  //docu in base class
367  void translateLeft_(Qt::KeyboardModifiers m) override;
368  //docu in base class
369  void translateRight_(Qt::KeyboardModifiers m) override;
370  //docu in base class
371  void translateForward_() override;
372  //docu in base class
373  void translateBackward_() override;
374 
376  void finishContextMenu_(QMenu* context_menu, QMenu* settings_menu);
377 
379  ExperimentType projection_mz_;
381  ExperimentType projection_rt_;
382 
387 
390 
391  double pen_size_min_;
392  double pen_size_max_;
394 
395  private:
398 
399  };
400 }
401 
LayerData::ExperimentSharedPtrType ExperimentSharedPtrType
Main managed data type (experiment)
Definition: SpectrumCanvas.h:113
A more convenient string class.
Definition: String.h:57
PeakIndex measurement_start_
start peak/feature of measuring mode
Definition: Spectrum2DCanvas.h:386
Int precalculatedColorIndex(double position) const
index of color in precalculated table by position in gradient
Definition: MultiGradient.h:136
LayerData::ConsensusMapSharedPtrType ConsensusMapSharedPtrType
Main managed data type (consensus features)
Definition: SpectrumCanvas.h:123
Base class for visualization canvas classes.
Definition: SpectrumCanvas.h:100
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
QColor precalculatedColorByIndex(Int index) const
precalculated color by its index in the table
Definition: MultiGradient.h:147
Canvas for 2D-visualization of peak map, feature map and consensus map data.
Definition: Spectrum2DCanvas.h:70
QColor heightColor_(float val, const MultiGradient &gradient, double snap_factor)
Returns the color associated with val for the gradient gradient.
Definition: Spectrum2DCanvas.h:311
void dataToWidget_(double x, double y, QPoint &point)
Convert chart to widget coordinates.
Definition: Spectrum2DCanvas.h:324
double pen_size_min_
minimum number of pixels for one data point
Definition: Spectrum2DCanvas.h:391
Int precalculatedColorIndex_(float val, const MultiGradient &gradient, double snap_factor)
Returns the position on color gradient associated with given intensity.
Definition: Spectrum2DCanvas.h:279
double canvas_coverage_min_
minimum coverage of the canvas required; if lower, points are upscaled in size
Definition: Spectrum2DCanvas.h:393
MultiGradient linear_gradient_
stores the linear color gradient for non-log modes
Definition: Spectrum2DCanvas.h:389
Management and storage of parameters / INI files.
Definition: Param.h:74
ExperimentType projection_rt_
RT projection data.
Definition: Spectrum2DCanvas.h:381
LayerData::FeatureMapSharedPtrType FeatureMapSharedPtrType
Main managed data type (features)
Definition: SpectrumCanvas.h:119
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
ExperimentType projection_mz_
m/z projection data
Definition: Spectrum2DCanvas.h:379
PeakIndex selected_peak_
the nearest peak/feature to the mouse cursor
Definition: Spectrum2DCanvas.h:384
A gradient of multiple colors and arbitrary distances between colors.
Definition: MultiGradient.h:67
int Int
Signed integer type.
Definition: Types.h:102
Not implemented exception.
Definition: Exception.h:436
A consensus feature spanning multiple LC-MS/MS experiments.
Definition: ConsensusFeature.h:69
Index of a peak or feature.
Definition: PeakIndex.h:50
double pen_size_max_
maximum number of pixels for one data point
Definition: Spectrum2DCanvas.h:392