18#include <QtGui/QColor>
19#include <QtGui/QFontMetricsF>
27 template <
class DataPo
int>
45 void draw(
Plot1DCanvas*
const canvas, QPainter& painter,
bool flipped =
false)
override
51 QPoint position_widget, peak_position_widget;
58 const QFontMetricsF fm(QApplication::font());
59 const auto prebox = fm.boundingRect(QRectF(position_widget.x(), position_widget.y(), 0, 0), Qt::AlignCenter,
getText());
68 bounding_box_ = fm.boundingRect(QRectF(position_widget.x(), position_widget.y(), 0, 0), Qt::AlignCenter,
getText());
72 if ((position_widget - peak_position_widget).manhattanLength() > 2)
78 painter.setPen(Qt::DashLine);
79 painter.drawLine(peak_position_widget, border_point);
86 if (!text.contains(
"<\\"))
90 QRegularExpression reg_exp(R
"(([abcdwxyz])(\d+))");
91 QRegularExpressionMatch match = reg_exp.match(text);
92 if (text.indexOf(reg_exp) == 0)
94 text.replace(reg_exp,
"\\1<sub>\\2</sub>");
98 QRegularExpression reg_exp_xlms(R
"((ci|xi)[$][abcxyz](\d+))");
99 auto match_pos = text.indexOf(reg_exp_xlms);
100 if ((match_pos == 6) || (match_pos == 7))
105 QString charge_str = match.captured(2);
107 text = text.left(match_pos) + QString(
"<sub>") + charge_str + QString(
"</sub>") + text.right(text.size() - match_pos - charge_str.size());
113 text.replace(
"H2O1",
"H<sub>2</sub>O");
114 text.replace(
"H2O",
"H<sub>2</sub>O");
115 text.replace(
"NH3",
"NH<sub>3</sub>");
116 text.replace(
"H3N1",
"NH<sub>3</sub>");
117 text.replace(
"C1H4O1S1",
"H<sub>4</sub>COS");
120 text.replace(
"H3PO4",
"H<sub>3</sub>PO<sub>4</sub>");
121 text.replace(
"HPO3",
"HPO<sub>3</sub>");
122 text.replace(
"C3O",
"C<sub>3</sub>O");
125 QRegularExpression charge_rx(R
"([\+|\-](\d+)$)");
126 int match_pos = text.indexOf(charge_rx);
129 text = text.left(match_pos) + QString(
"<sup>") + text[match_pos]
130 + charge_rx.match(text).captured(1) + QString(
"</sup>");
134 charge_rx = QRegularExpression(R
"((\d+)[\+|\-]$)");
135 match_pos = text.indexOf(charge_rx);
138 auto charge_match = charge_rx.match(text).captured(1);
139 text = text.left(match_pos) + QString(
"<sup>") + charge_match
140 + text[match_pos + charge_match.size()] + QString(
"</sup>");
143 text.replace(QRegularExpression(R
"(\+\+$)"), "<sup>2+</sup>");
144 text.replace(QRegularExpression(R
"(\+$)"), "");
145 text.replace(QRegularExpression(R
"(\-\-$)"), "<sup>2-</sup>");
146 text.replace(QRegularExpression(R
"(\-$)"), "");
149 text =
"<font color=\"" +
color_.name() +
"\">" + text +
"</font>";
156 double w = td.size().width();
157 double h = td.size().height();
158 painter.translate(position_widget.x() - w / 2, position_widget.y() - h / 2);
159 td.drawContents(&painter);
219 QString peak_anno = this->
getText().trimmed();
222 peak_anno.remove(
'\r');
223 QStringList lines = peak_anno.split(
'\n', Qt::SkipEmptyParts);
224 if (lines.size() > 1)
226 peak_anno = lines[0];
230 QRegularExpression reg_exp(R
"(([\+|\-]\d+)$)");
235 int match_pos = peak_anno.indexOf(reg_exp);
239 tmp_charge = reg_exp.match(peak_anno).captured(1).toInt();
240 peak_anno = peak_anno.left(match_pos);
245 int plus(0), minus(0);
247 for (
int p = (
int)peak_anno.size() - 1; p >= 0; --p)
249 if (peak_anno[p] ==
'+')
254 else if (peak_anno[p] ==
'-')
261 if (plus > 0 && minus == 0)
264 peak_anno = peak_anno.left(peak_anno.size() - plus);
267 else if (minus > 0 && plus == 0)
270 peak_anno = peak_anno.left(peak_anno.size() - minus);
282 if (lines.size() > 1)
284 peak_anno.append(
"\n").append(lines[1]);
An abstract class acting as an interface for the different 1D annotation items.
Definition Annotation1DItem.h:36
QRectF bounding_box_
The current bounding box of this item on the canvas where it has last been drawn.
Definition Annotation1DItem.h:83
QString text_
The displayed text.
Definition Annotation1DItem.h:89
void drawBoundingBox_(QPainter &painter)
Draws the bounding_box_.
bool selected_
Determines whether this item is currently selected on the canvas.
Definition Annotation1DItem.h:86
const QString & getText() const
Returns the text of the item.
A peak annotation item.
Definition Annotation1DPeakItem.h:30
~Annotation1DPeakItem() override=default
Destructor.
const DataPoint & getPeakPosition() const
Returns the position of the annotated peak.
Definition Annotation1DPeakItem.h:192
Annotation1DItem * clone() const override
Creates a copy of the item on the heap and returns a pointer.
Definition Annotation1DPeakItem.h:292
void draw(Plot1DCanvas *const canvas, QPainter &painter, bool flipped=false) override
Draws the item on painter.
Definition Annotation1DPeakItem.h:45
const DataPoint & getPosition() const
Returns the position of the label (peak)
Definition Annotation1DPeakItem.h:186
QColor color_
The color of the label.
Definition Annotation1DPeakItem.h:305
Annotation1DPeakItem(const Annotation1DPeakItem &rhs)=default
Copy constructor.
void ensureWithinDataRange(Plot1DCanvas *const canvas, const int layer_index) override
Ensures that the item has coordinates within the visible area of the canvas.
Definition Annotation1DPeakItem.h:198
PeptideHit::PeakAnnotation toPeakAnnotation() const
Convert the 'text()' to a Peptide::PeakAnnotation.
Definition Annotation1DPeakItem.h:216
DataPoint peak_position_
The position of the anchor (e.g. the Peak1D)
Definition Annotation1DPeakItem.h:299
void setColor(const QColor &color)
Set the color of the label.
Definition Annotation1DPeakItem.h:204
Annotation1DPeakItem(const DataPoint &peak_position, const QString &text, const QColor &color)
Constructor.
Definition Annotation1DPeakItem.h:33
void setPosition(const DataPoint &position)
Sets the position of the label.
Definition Annotation1DPeakItem.h:180
void move(const PointXYType delta, const Gravitator &, const DimMapper< 2 > &dim_mapper) override
Moves the item on the drawing canvas; behavior depends on item type and is implemented in the subclas...
Definition Annotation1DPeakItem.h:172
const QColor & getColor() const
Returns the color of the label.
Definition Annotation1DPeakItem.h:210
DataPoint position_
The position of the label (e.g. the Peak1D)
Definition Annotation1DPeakItem.h:302
DPosition & abs() noexcept
Make all dimension values positive.
Definition DPosition.h:113
Allows dynamical switching (at runtime) between a dimension (RT, m/z, int, IM, etc) and X,...
Definition DimMapper.h:662
void fromXY(const DRange< N_DIM > &in, RangeManager< Ranges... > &output) const
Definition DimMapper.h:752
Point map(const T &data) const
convert an OpenMS datatype (such as Feature) to an N_DIM-dimensional point
Definition DimMapper.h:716
Manipulates X or Y component of points in the X-Y plane, by assuming one axis (either X or Y axis) ha...
Definition Plot1DCanvas.h:42
QPoint gravitateZero(QPoint p) const
Definition Plot1DCanvas.h:204
Gravitator swap() const
Swap gravity axis (from X to Y, or vice versa)
Definition Plot1DCanvas.h:108
Canvas for visualization of one or several spectra.
Definition Plot1DCanvas.h:295
void dataToWidget(const DPosition< 2 > &peak, QPoint &point, bool flipped=false)
For convenience - calls dataToWidget.
void pushIntoDataRange(T &data_point, const int layer_index)
Pushes a data point back into the valid data range of the current layer area. Useful for annotation i...
Definition Plot1DCanvas.h:434
const Gravitator & getGravitator() const
Get gravity manipulation object to apply gravity to points.
Definition Plot1DCanvas.h:504
PointXYType widgetToDataDistance(double x, double y)
compute distance in data coordinates (unit axis as shown) when moving x/y pixel in chart/widget coord...
Definition Plot1DCanvas.h:412
const DimMapper< 2 > & getMapper() const
Get Mapper to translate between values for axis (X/Y) and units (m/z, RT, intensity,...
QPointF intersectionPoint(const QRectF &rect, const QPointF &p)
Find the point on a rectangle where a ray/line from a point p to its center would intersect at.
Main OpenMS namespace.
Definition openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
String fromQString(const QString &s)
Construct OpenMS::String from QString (replaces String(const QString&))
Definition Qt5Port.h:45
Contains annotations of a peak.
Definition PeptideHit.h:87
double intensity
Definition PeptideHit.h:91
double mz
Definition PeptideHit.h:90
String annotation
Definition PeptideHit.h:88
int charge
Definition PeptideHit.h:89