X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Ftimemarker.cpp;h=4874eb233c7ebf7d9fe5e282883dc93a1efbc8a7;hb=aca9aa834c742ba70f49d1ac3eb2d1e02e759416;hp=8c136a18189285e3a965af58e49ad0642f002b87;hpb=806d3e1eb3d60e93ff95d23e79588a0486730967;p=pulseview.git diff --git a/pv/view/timemarker.cpp b/pv/view/timemarker.cpp index 8c136a1..4874eb2 100644 --- a/pv/view/timemarker.cpp +++ b/pv/view/timemarker.cpp @@ -14,8 +14,7 @@ * 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 . */ #include @@ -24,12 +23,12 @@ #include "timemarker.hpp" -#include "view.hpp" #include "pv/widgets/timestampspinbox.hpp" +#include "view.hpp" #include -#include #include +#include #include #include @@ -38,7 +37,8 @@ using std::max; using std::min; namespace pv { -namespace view { +namespace views { +namespace TraceView { const int TimeMarker::ArrowSize = 4; @@ -95,11 +95,11 @@ QRectF TimeMarker::label_rect(const QRectF &rect) const return QRectF(QPointF(x - label_size.width() / 2, top), label_size); } -QRectF TimeMarker::hit_box_rect(const QRectF &rect) const +QRectF TimeMarker::hit_box_rect(const ViewItemPaintParams &pp) const { const float x = get_x(); const float h = QFontMetrics(QApplication::font()).height(); - return QRectF(x - h / 2.0f, rect.top(), h, rect.height()); + return QRectF(x - h / 2.0f, pp.top(), h, pp.height()); } void TimeMarker::paint_label(QPainter &p, const QRect &rect, bool hover) @@ -191,5 +191,6 @@ void TimeMarker::on_value_changed(const pv::util::Timestamp& value) set_time(value); } -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv