X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fviews%2Ftrace%2Fsignal.hpp;fp=pv%2Fviews%2Ftrace%2Fsignal.hpp;h=83472818034a8592bd60108607f7ef19fd7e8f09;hb=1573bf16ba50d1c023ad3a9ce596f0ab6eaeacff;hp=0000000000000000000000000000000000000000;hpb=4c7a19d3d7049bcc9fb3185ce2bc91333a7ca9e1;p=pulseview.git diff --git a/pv/views/trace/signal.hpp b/pv/views/trace/signal.hpp new file mode 100644 index 00000000..83472818 --- /dev/null +++ b/pv/views/trace/signal.hpp @@ -0,0 +1,123 @@ +/* + * This file is part of the PulseView project. + * + * Copyright (C) 2012 Joel Holdsworth + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * 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, see . + */ + +#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_SIGNAL_HPP +#define PULSEVIEW_PV_VIEWS_TRACEVIEW_SIGNAL_HPP + +#include + +#include +#include + +#include + +#include "signalscalehandle.hpp" +#include "trace.hpp" +#include "viewitemowner.hpp" + +using std::shared_ptr; + +namespace pv { + +class Session; + +namespace data { +class SignalBase; +class SignalData; +} + +namespace views { +namespace trace { + +class Signal : public Trace, public ViewItemOwner +{ + Q_OBJECT + +protected: + Signal(pv::Session &session, shared_ptr channel); + +public: + /** + * Sets the name of the signal. + */ + virtual void set_name(QString name); + + virtual shared_ptr data() const = 0; + + /** + * Returns true if the trace is visible and enabled. + */ + bool enabled() const; + + shared_ptr base() const; + + virtual void save_settings(QSettings &settings) const; + + virtual void restore_settings(QSettings &settings); + + /** + * Returns a list of row items owned by this object. + */ + const item_list& child_items() const; + + void paint_back(QPainter &p, ViewItemPaintParams &pp); + + virtual void populate_popup_form(QWidget *parent, QFormLayout *form); + + QMenu* create_context_menu(QWidget *parent); + + void delete_pressed(); + + /** + * Returns the offset to show the drag handle. + */ + virtual int scale_handle_offset() const = 0; + + /** + * Handles the scale handle being dragged to an offset. + * @param offset the offset the scale handle was dragged to. + */ + virtual void scale_handle_dragged(int offset) = 0; + + /** + * Handles the scale handle being being released. + */ + virtual void scale_handle_released() {}; + +protected Q_SLOTS: + virtual void on_name_changed(const QString &text); + + void on_disable(); + + void on_enabled_changed(bool enabled); + +protected: + pv::Session &session_; + + const shared_ptr scale_handle_; + const item_list items_; + + QComboBox *name_widget_; +}; + +} // namespace trace +} // namespace views +} // namespace pv + +#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_SIGNAL_HPP