]> sigrok.org Git - pulseview.git/blame - pv/views/decoder_binary/QHexView.hpp
Binary output view: Highlight byte range currently in view
[pulseview.git] / pv / views / decoder_binary / QHexView.hpp
CommitLineData
c7b76823
SA
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2015 Victor Anjin <virinext@gmail.com>
5 * Copyright (C) 2019 Soeren Apel <soeren@apelpie.net>
6 *
7 * The MIT License (MIT)
8 *
9 * Copyright (c) 2015
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included in all
19 * copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 * SOFTWARE.
28 */
29
8845be3c
UH
30#ifndef PULSEVIEW_PV_VIEWS_DECODER_BINARY_QHEXVIEW_HPP
31#define PULSEVIEW_PV_VIEWS_DECODER_BINARY_QHEXVIEW_HPP
c7b76823
SA
32
33#include <QAbstractScrollArea>
628b45cc
SA
34
35#include <pv/data/decodesignal.hpp>
c7b76823 36
13b726cd 37using std::pair;
c7b76823 38using std::size_t;
628b45cc
SA
39using pv::data::DecodeBinaryClass;
40using pv::data::DecodeBinaryDataChunk;
c7b76823 41
c7b76823
SA
42class QHexView: public QAbstractScrollArea
43{
628b45cc
SA
44 Q_OBJECT
45
46public:
47 enum Mode {
48 ChunkedDataMode, ///< Displays all data chunks in succession
49 MemoryEmulationMode ///< Reconstructs memory contents from data chunks
50 };
51
560f8377 52public:
feda6c6b 53 QHexView(QWidget *parent = nullptr);
01ba5ed7 54
d5645564
SA
55 void set_mode(Mode m);
56 void set_data(const DecodeBinaryClass* data);
978dbc9a
SA
57
58 /* Sets range of samples that are visible in the main view */
59 void set_visible_sample_range(uint64_t start, uint64_t end);
60
61 /* Sets sample whose associated data we should highlight */
62 void set_highlighted_data_sample(uint64_t sample);
63
d5645564 64 unsigned int get_bytes_per_line() const;
c7b76823 65
c7b76823
SA
66 void clear();
67 void showFromOffset(size_t offset);
6961eab0 68 virtual QSizePolicy sizePolicy() const;
c7b76823 69
13b726cd
SA
70 pair<size_t, size_t> get_selection() const;
71
d5645564
SA
72 size_t create_hex_line(size_t start, size_t end, QString* dest,
73 bool with_offset=false, bool with_ascii=false);
74
c7b76823 75protected:
628b45cc 76 void initialize_byte_iterator(size_t offset);
978dbc9a 77 uint8_t get_next_byte(bool* is_new_chunk = nullptr);
628b45cc 78
c7b76823
SA
79 void paintEvent(QPaintEvent *event);
80 void keyPressEvent(QKeyEvent *event);
81 void mouseMoveEvent(QMouseEvent *event);
82 void mousePressEvent(QMouseEvent *event);
83
84private:
560f8377 85 QSize getFullSize() const;
c7b76823
SA
86 void resetSelection();
87 void resetSelection(int pos);
88 void setSelection(int pos);
89 void ensureVisible();
90 void setCursorPos(int pos);
560f8377 91 size_t cursorPosFromMousePos(const QPoint &position);
c7b76823
SA
92
93private:
628b45cc
SA
94 Mode mode_;
95 const DecodeBinaryClass* data_;
96 size_t data_size_;
c7b76823
SA
97
98 size_t posAddr_, posHex_, posAscii_;
99 size_t charWidth_, charHeight_;
100 size_t selectBegin_, selectEnd_, selectInit_, cursorPos_;
d5397ccb 101 uint8_t address_digits_;
628b45cc 102
cbf428c2 103 size_t current_chunk_id_, current_chunk_offset_, current_offset_;
516d2128 104 DecodeBinaryDataChunk current_chunk_; // Cache locally so that we're not messed up when the vector is re-allocating its data
978dbc9a
SA
105 uint64_t current_chunk_sample_, next_chunk_sample_;
106
107 pair<uint64_t, uint64_t> visible_range_;
108 uint64_t highlighted_sample_;
a61abf09
SA
109
110 vector<QColor> chunk_colors_;
978dbc9a 111 QColor visible_range_color_;
c7b76823
SA
112};
113
8845be3c 114#endif // PULSEVIEW_PV_VIEWS_DECODER_BINARY_QHEXVIEW_HPP