]> sigrok.org Git - pulseview.git/blame - pv/views/decoder_output/QHexView.hpp
DecoderOutputView: Allow for adaptive size constraints
[pulseview.git] / pv / views / decoder_output / 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
30#ifndef PULSEVIEW_PV_VIEWS_DECODEROUTPUT_QHEXVIEW_H
31#define PULSEVIEW_PV_VIEWS_DECODEROUTPUT_QHEXVIEW_H
32
33#include <QAbstractScrollArea>
628b45cc
SA
34
35#include <pv/data/decodesignal.hpp>
c7b76823
SA
36
37using std::size_t;
628b45cc
SA
38using pv::data::DecodeBinaryClass;
39using pv::data::DecodeBinaryDataChunk;
c7b76823 40
c7b76823
SA
41class QHexView: public QAbstractScrollArea
42{
628b45cc
SA
43 Q_OBJECT
44
45public:
46 enum Mode {
47 ChunkedDataMode, ///< Displays all data chunks in succession
48 MemoryEmulationMode ///< Reconstructs memory contents from data chunks
49 };
50
560f8377 51public:
c7b76823 52 QHexView(QWidget *parent = 0);
01ba5ed7 53
628b45cc
SA
54 void setMode(Mode m);
55 void setData(const DecodeBinaryClass* data);
c7b76823 56
c7b76823
SA
57 void clear();
58 void showFromOffset(size_t offset);
6961eab0 59 virtual QSizePolicy sizePolicy() const;
c7b76823
SA
60
61protected:
628b45cc
SA
62 void initialize_byte_iterator(size_t offset);
63 uint8_t get_next_byte(bool* is_next_chunk = nullptr);
64
c7b76823
SA
65 void paintEvent(QPaintEvent *event);
66 void keyPressEvent(QKeyEvent *event);
67 void mouseMoveEvent(QMouseEvent *event);
68 void mousePressEvent(QMouseEvent *event);
69
70private:
560f8377 71 QSize getFullSize() const;
c7b76823
SA
72 void resetSelection();
73 void resetSelection(int pos);
74 void setSelection(int pos);
75 void ensureVisible();
76 void setCursorPos(int pos);
560f8377 77 size_t cursorPosFromMousePos(const QPoint &position);
c7b76823
SA
78
79private:
628b45cc
SA
80 Mode mode_;
81 const DecodeBinaryClass* data_;
82 size_t data_size_;
c7b76823
SA
83
84 size_t posAddr_, posHex_, posAscii_;
85 size_t charWidth_, charHeight_;
86 size_t selectBegin_, selectEnd_, selectInit_, cursorPos_;
628b45cc 87
cbf428c2 88 size_t current_chunk_id_, current_chunk_offset_, current_offset_;
516d2128 89 DecodeBinaryDataChunk current_chunk_; // Cache locally so that we're not messed up when the vector is re-allocating its data
a61abf09
SA
90
91 vector<QColor> chunk_colors_;
c7b76823
SA
92};
93
94#endif /* PULSEVIEW_PV_VIEWS_DECODEROUTPUT_QHEXVIEW_H */