]> sigrok.org Git - pulseview.git/blobdiff - pv/view/flag.hpp
Prefer Qt string multi-arg form over arg chaining.
[pulseview.git] / pv / view / flag.hpp
index 659d5cc1c55143aaa88bf45113f980f9a2483cf9..bc82934e161e5829d5d025f515931c5817a60268 100644 (file)
  * 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 <memory>
 
 #include "timemarker.hpp"
 
+class QMenu;
+
 namespace pv {
 namespace view {
 
-class Flag : public TimeMarker
+class Flag : public TimeMarker,
+       public std::enable_shared_from_this<pv::view::Flag>
 {
        Q_OBJECT
 
@@ -40,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.
@@ -59,7 +64,13 @@ public:
 
        pv::widgets::Popup* create_popup(QWidget *parent);
 
+       QMenu* create_context_menu(QWidget *parent);
+
+       void delete_pressed();
+
 private Q_SLOTS:
+       void on_delete();
+
        void on_text_changed(const QString &text);
 
 private:
@@ -69,4 +80,4 @@ private:
 } // namespace view
 } // namespace pv
 
-#endif // PULSEVIEW_PV_VIEW_FLAG_H
+#endif // PULSEVIEW_PV_VIEW_FLAG_HPP