* @param[in] min_length The minimum number of samples that
* can be resolved at this level of detail.
* @param[in] sig_index The index of the signal.
- **/
+ */
void get_subsampled_edges(std::vector<EdgePair> &edges,
uint64_t start, uint64_t end,
float min_length, int sig_index);
* Paints the background layer of the signal with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with..
- **/
+ */
void paint_back(QPainter &p, const ViewItemPaintParams &pp);
/**
* Paints the mid-layer of the signal with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with..
- **/
+ */
void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
private:
* Paints the background layer of the item with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with.
- **/
+ */
void paint_back(QPainter &p, const ViewItemPaintParams &pp);
/**
* Paints the background layer of the trace with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with..
- **/
+ */
void paint_back(QPainter &p, const ViewItemPaintParams &pp);
/**
* Paints the mid-layer of the trace with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with.
- **/
+ */
void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
/**
* Paints the foreground layer of the trace with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with.
- **/
+ */
void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
void populate_popup_form(QWidget *parent, QFormLayout *form);
* Paints the background layer of the signal with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with..
- **/
+ */
void paint_back(QPainter &p, const ViewItemPaintParams &pp);
/**
* Paints the mid-layer of the signal with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with..
- **/
+ */
void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
/**
* Paints the foreground layer of the signal with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with.
- **/
+ */
virtual void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
private:
* Paints the foreground layer of the item with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with.
- **/
+ */
void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
private:
* Paints the foreground layer of the item with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with.
- **/
+ */
void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
virtual pv::widgets::Popup* create_popup(QWidget *parent);
* Paints the foreground layer of the item with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with.
- **/
+ */
void paint_fore(QPainter &p, const ViewItemPaintParams &pp) override;
private:
virtual void select(bool select = true);
/**
- Returns true if the item may be dragged/moved.
+ * Returns true if the item may be dragged/moved.
*/
virtual bool is_draggable() const;
* Paints the background layer of the item with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with.
- **/
+ */
virtual void paint_back(QPainter &p, const ViewItemPaintParams &pp);
/**
* Paints the mid-layer of the item with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with.
- **/
+ */
virtual void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
/**
* Paints the foreground layer of the item with a QPainter
* @param p the QPainter to paint into.
* @param pp the painting parameters object to paint with.
- **/
+ */
virtual void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
public: