X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fheader.hpp;fp=pv%2Fview%2Fheader.hpp;h=0000000000000000000000000000000000000000;hb=1573bf16ba50d1c023ad3a9ce596f0ab6eaeacff;hp=6a4c9a39521863e9aac6e111d08b21b0ebcdbf5e;hpb=4c7a19d3d7049bcc9fb3185ce2bc91333a7ca9e1;p=pulseview.git diff --git a/pv/view/header.hpp b/pv/view/header.hpp deleted file mode 100644 index 6a4c9a39..00000000 --- a/pv/view/header.hpp +++ /dev/null @@ -1,91 +0,0 @@ -/* - * 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_HEADER_HPP -#define PULSEVIEW_PV_VIEWS_TRACEVIEW_HEADER_HPP - -#include -#include -#include - -#include "marginwidget.hpp" - -using std::shared_ptr; -using std::vector; - -namespace pv { -namespace views { -namespace TraceView { - -class TraceTreeItem; -class View; -class ViewItem; - -class Header : public MarginWidget -{ - Q_OBJECT - -private: - static const int Padding; - -public: - Header(View &parent); - - QSize sizeHint() const; - - /** - * The extended area that the header widget would like to be sized to. - * @remarks This area is the area specified by sizeHint, extended by - * the area to overlap the viewport. - */ - QSize extended_size_hint() const; - -private: - /** - * Gets the row items. - */ - vector< shared_ptr > items(); - - /** - * Gets the first view item which has a label that contains @c pt . - * @param pt the point to search with. - * @return the view item that has been found, or and empty - * @c shared_ptr if no item was found. - */ - shared_ptr get_mouse_over_item(const QPoint &pt); - -private: - void paintEvent(QPaintEvent *event); - -private: - void contextMenuEvent(QContextMenuEvent *event); - - void keyPressEvent(QKeyEvent *event); - -private Q_SLOTS: - void on_group(); - - void on_ungroup(); -}; - -} // namespace TraceView -} // namespace views -} // namespace pv - -#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_HEADER_HPP