HAL  v4.5.0-83-g30c8f0afc
The Hardware Analyzer - a comprehensive reverse engineering and manipulation framework for gate-level netlists.
wave_edit_dialog.h
Go to the documentation of this file.
1 // MIT License
2 //
3 // Copyright (c) 2019 Ruhr University Bochum, Chair for Embedded Security. All Rights reserved.
4 // Copyright (c) 2019 Marc Fyrbiak, Sebastian Wallat, Max Hoffmann ("ORIGINAL AUTHORS"). All rights reserved.
5 // Copyright (c) 2021 Max Planck Institute for Security and Privacy. All Rights reserved.
6 // Copyright (c) 2021 Jörn Langheinrich, Julian Speith, Nils Albartus, René Walendy, Simon Klix ("ORIGINAL AUTHORS"). All Rights reserved.
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining a copy
9 // of this software and associated documentation files (the "Software"), to deal
10 // in the Software without restriction, including without limitation the rights
11 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 // copies of the Software, and to permit persons to whom the Software is
13 // furnished to do so, subject to the following conditions:
14 //
15 // The above copyright notice and this permission notice shall be included in all
16 // copies or substantial portions of the Software.
17 //
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 // SOFTWARE.
25 
26 #pragma once
27 
28 #include <QDialog>
29 #include <QAbstractTableModel>
30 #include <QTableView>
31 #include <QStyledItemDelegate>
32 #include <QPixmap>
34 
35 namespace hal {
36 
41  {
42  friend class WaveEditDialog;
43  Q_OBJECT
44  WaveData* mWaveDataInput;
45  QMap<u64,int> mEditData;
46 
47  void truncateData(double tCursor);
48  void recalcTransitions();
49  public:
50  WaveEditTable(WaveData* wd, double tCursor, QObject* parent = nullptr);
51  int rowCount(const QModelIndex &parent = QModelIndex()) const override;
52  int columnCount(const QModelIndex &parent = QModelIndex()) const override;
53  QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
54  bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;
55  QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
56  Qt::ItemFlags flags(const QModelIndex &index) const override;
57  void removeRow(int irow);
58  };
59 
64  {
65  Q_OBJECT
66  WaveEditTable* mTable;
67  static QPixmap* sXdelete;
68  static QPixmap* piXdelete();
69  public:
70  WaveDeleteDelegate(WaveEditTable*tab) : mTable(tab) {;}
71 
72  void paint(QPainter *painter, const QStyleOptionViewItem &option,
73  const QModelIndex &index) const override;
74 
75  QSize sizeHint(const QStyleOptionViewItem &option,
76  const QModelIndex &index) const override;
77 
79  const QModelIndex &index) const override;
80  private Q_SLOTS:
81  void deleteClicked();
82  };
83 
87  class WaveEditDialog : public QDialog
88  {
89  Q_OBJECT
90  WaveEditTable* mWaveModel;
91  public:
92  WaveEditDialog(WaveData *wd, double tCursor, QWidget* parent = nullptr);
93  const QMap<u64,int>& dataMap() const;
94  };
95 
96 }
QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override
WaveDeleteDelegate(WaveEditTable *tab)
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override
QWidget * createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override
const QMap< u64, int > & dataMap() const
WaveEditDialog(WaveData *wd, double tCursor, QWidget *parent=nullptr)
WaveEditTable(WaveData *wd, double tCursor, QObject *parent=nullptr)
int columnCount(const QModelIndex &parent=QModelIndex()) const override
void removeRow(int irow)
int rowCount(const QModelIndex &parent=QModelIndex()) const override
QVariant headerData(int section, Qt::Orientation orientation, int role=Qt::DisplayRole) const override
Qt::ItemFlags flags(const QModelIndex &index) const override
QVariant data(const QModelIndex &index, int role=Qt::DisplayRole) const override
bool setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) override
Definition: defines.h:45
virtual QModelIndex index(int row, int column, const QModelIndex &parent) const const override
Q_OBJECTQ_OBJECT
Q_SLOTSQ_SLOTS
QObject * parent() const const
DisplayRole
typedef ItemFlags
Orientation