X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftracegroup.hpp;h=b00d5bf5a06faf3ed131ecc2805f3ce13ee07736;hp=2a78f22c25cbed08e6836507f48e2fb5a4c0d901;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=6e2c3c855dff36f6e946e2a54d576bea699f4a61 diff --git a/pv/view/tracegroup.hpp b/pv/view/tracegroup.hpp index 2a78f22..b00d5bf 100644 --- a/pv/view/tracegroup.hpp +++ b/pv/view/tracegroup.hpp @@ -14,20 +14,22 @@ * 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_TRACEGROUP_H -#define PULSEVIEW_PV_VIEW_TRACEGROUP_H +#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACEGROUP_HPP +#define PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACEGROUP_HPP -#include "rowitem.hpp" -#include "rowitemowner.hpp" +#include "tracetreeitem.hpp" +#include "tracetreeitemowner.hpp" + +using std::pair; namespace pv { -namespace view { +namespace views { +namespace TraceView { -class TraceGroup : public RowItem, public RowItemOwner +class TraceGroup : public TraceTreeItem, public TraceTreeItemOwner { Q_OBJECT @@ -61,18 +63,18 @@ public: /** * Returns the view of the owner. */ - virtual pv::view::View* view(); + virtual View* view(); /** * Returns the view of the owner. */ - virtual const pv::view::View* view() const; + virtual const View* view() const; /** * Computes the vertical extents of the contents of this row item. * @return A pair containing the minimum and maximum y-values. */ - std::pair v_extents() const; + pair v_extents() const; /** * Paints the signal label. @@ -127,7 +129,8 @@ private Q_SLOTS: void on_ungroup(); }; -} // view -} // pv +} // namespace TraceView +} // namespace views +} // namespace pv -#endif // PULSEVIEW_PV_VIEW_TRACEGROUP_H +#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACEGROUP_HPP