X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fflag.hpp;h=5dec187c4efa3035c1a36f0926d7225604b8a782;hp=659d5cc1c55143aaa88bf45113f980f9a2483cf9;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=8914fe790fb677c56194a3ae4da06ba671fca78a diff --git a/pv/view/flag.hpp b/pv/view/flag.hpp index 659d5cc..5dec187 100644 --- a/pv/view/flag.hpp +++ b/pv/view/flag.hpp @@ -14,19 +14,25 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ -#ifndef PULSEVIEW_PV_VIEW_FLAG_H -#define PULSEVIEW_PV_VIEW_FLAG_H +#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_FLAG_HPP +#define PULSEVIEW_PV_VIEWS_TRACEVIEW_FLAG_HPP + +#include #include "timemarker.hpp" +using std::enable_shared_from_this; + +class QMenu; + namespace pv { -namespace view { +namespace views { +namespace TraceView { -class Flag : public TimeMarker +class Flag : public TimeMarker, public enable_shared_from_this { Q_OBJECT @@ -40,7 +46,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,14 +65,21 @@ 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: QString text_; }; -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv -#endif // PULSEVIEW_PV_VIEW_FLAG_H +#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_FLAG_HPP