X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fflag.hpp;h=af4c7b9d15012ee89e691dfee9eeea13c1c20c90;hp=fdebe1c0a6b4139b9675aa57c1771ed151fc7041;hb=48257a69ffad409c9893605d99cd6e15161dff4f;hpb=dbfae3f1b55b984c7ee7e619a8da53b77db98c90 diff --git a/pv/view/flag.hpp b/pv/view/flag.hpp index fdebe1c0..af4c7b9d 100644 --- a/pv/view/flag.hpp +++ b/pv/view/flag.hpp @@ -18,13 +18,15 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_PV_VIEW_FLAG_H -#define PULSEVIEW_PV_VIEW_FLAG_H +#ifndef PULSEVIEW_PV_VIEW_FLAG_HPP +#define PULSEVIEW_PV_VIEW_FLAG_HPP #include #include "timemarker.hpp" +class QMenu; + namespace pv { namespace view { @@ -43,7 +45,7 @@ public: * @param time The time to set the flag to. * @param text The text of the marker. */ - Flag(View &view, double time, const QString &text); + Flag(View &view, const pv::util::Timestamp& time, const QString &text); /** * Copy constructor. @@ -62,9 +64,15 @@ public: pv::widgets::Popup* create_popup(QWidget *parent); + QMenu* create_context_menu(QWidget *parent); + void delete_pressed(); + void drag_by(const QPoint &delta); + private Q_SLOTS: + void on_delete(); + void on_text_changed(const QString &text); private: @@ -74,4 +82,4 @@ private: } // namespace view } // namespace pv -#endif // PULSEVIEW_PV_VIEW_FLAG_H +#endif // PULSEVIEW_PV_VIEW_FLAG_HPP