aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/memorytableview.cpp
blob: d97e99aad42bd70938d3e8a91547a9490e13fffc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
// SPDX-License-Identifier: GPL-2.0+
/*******************************************************************************
 * QtMips - MIPS 32-bit Architecture Subset Simulator
 *
 * Implemented to support following courses:
 *
 *   B35APO - Computer Architectures
 *   https://cw.fel.cvut.cz/wiki/courses/b35apo
 *
 *   B4M35PAP - Advanced Computer Architectures
 *   https://cw.fel.cvut.cz/wiki/courses/b4m35pap/start
 *
 * Copyright (c) 2017-2019 Karel Koci<cynerd@email.cz>
 * Copyright (c) 2019      Pavel Pisa <pisa@cmp.felk.cvut.cz>
 *
 * Faculty of Electrical Engineering (http://www.fel.cvut.cz)
 * Czech Technical University        (http://www.cvut.cz/)
 *
 * 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, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301, USA.
 *
 ******************************************************************************/

#include <QHeaderView>
#include <QFontMetrics>
#include <QScrollBar>
#include <QKeyEvent>
#include <QClipboard>
#include <QApplication>
#include "memorytableview.h"
#include "memorymodel.h"
#include "hinttabledelegate.h"

MemoryTableView::MemoryTableView(QWidget *parent, QSettings *settings) : Super(parent) {
    setItemDelegate(new HintTableDelegate);
    connect(verticalScrollBar() , SIGNAL(valueChanged(int)),
            this, SLOT(adjust_scroll_pos_check()));
    connect(this , SIGNAL(adjust_scroll_pos_queue()),
            this, SLOT(adjust_scroll_pos_process()), Qt::QueuedConnection);
    this->settings = settings;
    initial_address = settings->value("DataViewAddr0", 0).toULongLong();
    adjust_scroll_pos_in_progress = false;
    setTextElideMode(Qt::ElideNone);
}

void MemoryTableView::addr0_save_change(std::uint32_t val) {
   settings->setValue("DataViewAddr0", val);
}

void MemoryTableView::adjustColumnCount() {
    MemoryModel *m = dynamic_cast<MemoryModel*>(model());
    if (m == nullptr)
        return;

    HintTableDelegate *delegate = dynamic_cast<HintTableDelegate*>(itemDelegate());
    if (delegate == nullptr)
        return;

    if (horizontalHeader()->count() >= 2) {
        QModelIndex idx;
        QFontMetrics fm(*m->getFont());
        idx = m->index(0, 0);
        // int width0_dh = itemDelegate(idx)->sizeHint(viewOptions(), idx).width() + 2;
        int width0_dh = delegate->sizeHintForText(viewOptions(), idx,
                                                  "0x00000000").width() + 2;
        horizontalHeader()->setSectionResizeMode(0, QHeaderView::Fixed);
        horizontalHeader()->resizeSection(0, width0_dh);

        idx = m->index(0, 1);
        QString t = "";
        t.fill(QChar('0'), m->cellSizeBytes() * 2);
        int width1_dh = delegate->sizeHintForText(viewOptions(), idx, t).width() + 2;
        if (width1_dh < fm.width("+99"))
            width1_dh = fm.width("+99");
        horizontalHeader()->setSectionResizeMode(1, QHeaderView::Fixed);
        horizontalHeader()->resizeSection(1, width1_dh);

        int w = verticalHeader()->width() + 4;
        unsigned int cells;
        int width0 = columnWidth(0);
        int width1 = columnWidth(1);
        w = width() - w - width0;
        if (w < width1 + 4) {
            cells = 1;
        } else {
            cells = w / (width1 + 4);
        }
        if (cells != m->cellsPerRow()) {
            m->setCellsPerRow(cells);
        }
        for (unsigned int i = 1; i < m->cellsPerRow() + 1; i++) {
            horizontalHeader()->setSectionResizeMode(i, QHeaderView::Fixed);
            horizontalHeader()->resizeSection(i, width1);
        }
        if (initial_address != 0) {
            go_to_address(initial_address);
            initial_address = 0;
        }
    }
}

void MemoryTableView::recompute_columns() {
    adjustColumnCount();
}

void MemoryTableView::set_cell_size(int index) {
    std::uint32_t address;
    int row;
    bool keep_row0 = false;
    MemoryModel *m = dynamic_cast<MemoryModel*>(model());
    if (m != nullptr) {
        keep_row0 = m->get_row_address(address, rowAt(0));
        m->set_cell_size(index);
    }
    adjustColumnCount();
    if (keep_row0) {
        m->adjustRowAndOffset(row, address);
        scrollTo(m->index(row, 0),
                 QAbstractItemView::PositionAtTop);
    }
}

void MemoryTableView::adjust_scroll_pos_check() {
    if (!adjust_scroll_pos_in_progress) {
        adjust_scroll_pos_in_progress = true;
        emit adjust_scroll_pos_queue();
    }
}

void MemoryTableView::adjust_scroll_pos_process() {
    adjust_scroll_pos_in_progress = false;
    std::uint32_t address;
    MemoryModel *m = dynamic_cast<MemoryModel*>(model());
    if (m == nullptr)
        return;

    QModelIndex prev_index = currentIndex();
    std::uint32_t row_bytes = m->cellSizeBytes() * m->cellsPerRow();
    std::uint32_t index0_offset = m->getIndex0Offset();

    do {
        int row = rowAt(0);
        int prev_row = row;
        if (row < m->rowCount() / 8) {
            if ((row == 0) && (index0_offset < row_bytes) && (index0_offset != 0)) {
                m->adjustRowAndOffset(row, 0);
            } else if (index0_offset > row_bytes) {
                m->get_row_address(address, row);
                m->adjustRowAndOffset(row, address);
            } else {
                break;
            }
        } else if (row > m->rowCount() - m->rowCount() / 8) {
            m->get_row_address(address, row);
            m->adjustRowAndOffset(row, address);
        } else {
            break;
        }
        scrollTo(m->index(row, 0), QAbstractItemView::PositionAtTop);
        setCurrentIndex(m->index(prev_index.row() + row - prev_row,
                        prev_index.column()));
        emit m->update_all();
    } while(0);
    m->get_row_address(address, rowAt(0));
    addr0_save_change(address);
    emit address_changed(address);
}

void MemoryTableView::resizeEvent(QResizeEvent *event) {
    MemoryModel *m = dynamic_cast<MemoryModel*>(model());
    std::uint32_t address;
    bool keep_row0 = false;

    if (m != nullptr) {
        if (initial_address == 0) {
            keep_row0 = m->get_row_address(address, rowAt(0));
        } else {
            address = initial_address;
        }
    }
    Super::resizeEvent(event);
    adjustColumnCount();
    if (keep_row0) {
        initial_address = 0;
        go_to_address(address);
    }
}

void MemoryTableView::go_to_address(std::uint32_t address) {
    MemoryModel *m = dynamic_cast<MemoryModel*>(model());
    int row;
    if (m == nullptr)
        return;
    m->adjustRowAndOffset(row, address);
    scrollTo(m->index(row, 0),
         QAbstractItemView::PositionAtTop);
    setCurrentIndex(m->index(row, 1));
    addr0_save_change(address);
    emit m->update_all();
}

void MemoryTableView::focus_address(std::uint32_t address) {
    int row;
    MemoryModel *m = dynamic_cast<MemoryModel*>(model());
    if (m == nullptr)
        return;
    if (!m->get_row_for_address(row, address))
        go_to_address(address);
    if (!m->get_row_for_address(row, address))
        return;
    setCurrentIndex(m->index(row, 1));
}

void MemoryTableView::keyPressEvent(QKeyEvent *event) {
    if(event->matches(QKeySequence::Copy)) {
            QString text;
            QItemSelectionRange range = selectionModel()->selection().first();
            for (auto i = range.top(); i <= range.bottom(); ++i)
            {
                QStringList rowContents;
                for (auto j = range.left(); j <= range.right(); ++j)
                    rowContents << model()->index(i,j).data().toString();
                text += rowContents.join("\t");
                text += "\n";
            }
            QApplication::clipboard()->setText(text);
    } else
        Super::keyPressEvent(event);
}