summaryrefslogtreecommitdiffstats
path: root/utils/regtools/qeditor/regdisplaypanel.h
blob: 9a692778fe1e117a9fe74b3b9f1398c8f617e518 (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
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2014 by Amaury Pouly
 *
 * 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 software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/
#ifndef REGDISPLAYPANEL_H
#define REGDISPLAYPANEL_H

#include <QVBoxLayout>
#include <QLabel>
#include <QGroupBox>
#include <QTableWidget>
#include <QStyledItemDelegate>
#include <QItemEditorCreatorBase>
#include <QTextEdit>
#include <QScrollArea>
#include <soc_desc.hpp>
#include "backend.h"
#include "settings.h"
#include "utils.h"
#include "regtab.h"

class RegItemEditorCreator : public QItemEditorCreatorBase
{
public:
    RegItemEditorCreator() {}
    virtual QWidget *createWidget(QWidget * parent) const;
    virtual QByteArray  valuePropertyName () const;
};

class SocDisplayPanel : public QGroupBox, public RegTabPanel
{
    Q_OBJECT
public:
    SocDisplayPanel(QWidget *parent, const SocRef& reg);
    void Reload();
    void AllowWrite(bool en);
    QWidget *GetWidget();
    bool Quit();

protected:

    const SocRef& m_soc;
    QLabel *m_name;
    QLabel *m_desc;
};

class DevDisplayPanel : public QGroupBox, public RegTabPanel
{
    Q_OBJECT
public:
    DevDisplayPanel(QWidget *parent, const SocDevRef& reg);
    void Reload();
    void AllowWrite(bool en);
    QWidget *GetWidget();
    bool Quit();

protected:

    const SocDevRef& m_dev;
    QFont m_reg_font;
    QLabel *m_name;
    QLabel *m_desc;
};

class RegDisplayPanel : public QGroupBox, public RegTabPanel
{
    Q_OBJECT
public:
    RegDisplayPanel(QWidget *parent, IoBackend *io_backend, const SocRegRef& reg);
    ~RegDisplayPanel();
    void AllowWrite(bool en);
    void Reload();
    QWidget *GetWidget();
    bool Quit();

protected:
    IoBackend::WriteMode EditModeToWriteMode(RegLineEdit::EditMode mode);

    enum
    {
        FieldBitsColumn = 0,
        FieldNameColumn = 1,
        FieldValueColumn = 2,
        FieldMeaningColumn = 3,
        FieldDescColumn = 4,
    };

    IoBackend *m_io_backend;
    const SocRegRef& m_reg;
    bool m_allow_write;
    RegLineEdit *m_raw_val_edit;
    Unscroll< RegSexyDisplay2 > *m_sexy_display2;
    GrowingTableView *m_value_table;
    RegFieldTableModel *m_value_model;
    QStyledItemDelegate *m_table_delegate;
    QItemEditorFactory *m_table_edit_factory;
    RegItemEditorCreator *m_regedit_creator;
    QLabel *m_raw_val_name;
    QFont m_reg_font;
    QLabel *m_desc;
    QWidget *m_viewport;
    QScrollArea *m_scroll;

private slots:
    void OnRawRegValueReturnPressed();
    void OnRegValueChanged(int index);
};

#endif /* REGDISPLAYPANEL_H */