X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fheader.hpp;h=ade6d330affb57b3db9a616541fb97407b6f3a83;hp=e249264330a074c65cbe51559d9fbde54844c412;hb=0c2389230c90d8bf34b601c625bcf655b24e8f52;hpb=bc01bb31fb03f69c8ceef57676b3399d7a08dcd9 diff --git a/pv/view/header.hpp b/pv/view/header.hpp index e2492643..ade6d330 100644 --- a/pv/view/header.hpp +++ b/pv/view/header.hpp @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_PV_VIEW_HEADER_H -#define PULSEVIEW_PV_VIEW_HEADER_H +#ifndef PULSEVIEW_PV_VIEW_HEADER_HPP +#define PULSEVIEW_PV_VIEW_HEADER_HPP #include #include @@ -30,7 +30,7 @@ namespace pv { namespace view { -class RowItem; +class TraceTreeItem; class View; class ViewItem; @@ -60,6 +60,11 @@ public: static const int BaselineOffset; private: + /** + * Gets the row items. + */ + std::vector< std::shared_ptr > items(); + /** * Gets the first view item which has a label that contains @c pt . * @param pt the point to search with. @@ -69,36 +74,21 @@ private: std::shared_ptr get_mouse_over_item( const QPoint &pt); - void clear_selection(); - private: void paintEvent(QPaintEvent *event); private: - void mouseLeftPressEvent(QMouseEvent *event); - void mousePressEvent(QMouseEvent * event); - - void mouseLeftReleaseEvent(QMouseEvent *event); - void mouseReleaseEvent(QMouseEvent *event); - - void mouseMoveEvent(QMouseEvent *event); - void contextMenuEvent(QContextMenuEvent *event); void keyPressEvent(QKeyEvent *e); private Q_SLOTS: - void on_signals_moved(); - void on_group(); void on_ungroup(); - -Q_SIGNALS: - void signals_moved(); }; } // namespace view } // namespace pv -#endif // PULSEVIEW_PV_VIEW_HEADER_H +#endif // PULSEVIEW_PV_VIEW_HEADER_HPP