2014-09-26 08:46:48 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2014-04-07 09:28:04 +00:00
|
|
|
#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"
|
2014-05-12 05:59:24 +00:00
|
|
|
#include "utils.h"
|
2014-04-07 09:28:04 +00:00
|
|
|
#include "regtab.h"
|
|
|
|
|
2014-08-09 16:39:45 +00:00
|
|
|
class SocDisplayPanel : public QGroupBox, public RegTabPanel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-02-06 15:08:43 +00:00
|
|
|
SocDisplayPanel(QWidget *parent, IoBackend *io_backend,
|
|
|
|
const soc_desc::soc_ref_t& reg);
|
2014-08-09 16:39:45 +00:00
|
|
|
void Reload();
|
|
|
|
void AllowWrite(bool en);
|
|
|
|
QWidget *GetWidget();
|
|
|
|
bool Quit();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2016-02-06 15:08:43 +00:00
|
|
|
soc_desc::soc_ref_t m_soc;
|
2014-08-09 16:39:45 +00:00
|
|
|
QLabel *m_name;
|
|
|
|
QLabel *m_desc;
|
|
|
|
};
|
|
|
|
|
2016-02-06 15:08:43 +00:00
|
|
|
class NodeDisplayPanel : public QGroupBox, public RegTabPanel
|
2014-04-07 09:28:04 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-02-06 15:08:43 +00:00
|
|
|
NodeDisplayPanel(QWidget *parent, IoBackend *io_backend,
|
|
|
|
const soc_desc::node_inst_t& reg);
|
2014-04-07 09:28:04 +00:00
|
|
|
void Reload();
|
|
|
|
void AllowWrite(bool en);
|
|
|
|
QWidget *GetWidget();
|
|
|
|
bool Quit();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2016-02-06 15:08:43 +00:00
|
|
|
soc_desc::node_inst_t m_node;
|
2014-04-07 09:28:04 +00:00
|
|
|
QLabel *m_name;
|
2016-02-06 15:08:43 +00:00
|
|
|
QLabel *m_node_desc;
|
|
|
|
QLabel *m_inst_desc;
|
2014-04-07 09:28:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class RegDisplayPanel : public QGroupBox, public RegTabPanel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-02-06 15:08:43 +00:00
|
|
|
RegDisplayPanel(QWidget *parent, IoBackend *io_backend,
|
|
|
|
const soc_desc::node_inst_t& reg);
|
2014-04-07 09:28:04 +00:00
|
|
|
~RegDisplayPanel();
|
|
|
|
void AllowWrite(bool en);
|
|
|
|
void Reload();
|
|
|
|
QWidget *GetWidget();
|
|
|
|
bool Quit();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
IoBackend::WriteMode EditModeToWriteMode(RegLineEdit::EditMode mode);
|
|
|
|
|
2014-05-11 17:51:55 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
FieldBitsColumn = 0,
|
|
|
|
FieldNameColumn = 1,
|
|
|
|
FieldValueColumn = 2,
|
|
|
|
FieldMeaningColumn = 3,
|
|
|
|
FieldDescColumn = 4,
|
|
|
|
};
|
|
|
|
|
2014-04-07 09:28:04 +00:00
|
|
|
IoBackend *m_io_backend;
|
2016-02-06 15:08:43 +00:00
|
|
|
soc_desc::node_inst_t m_node;
|
2014-04-07 09:28:04 +00:00
|
|
|
bool m_allow_write;
|
|
|
|
RegLineEdit *m_raw_val_edit;
|
2016-02-06 15:08:43 +00:00
|
|
|
Unscroll< YRegDisplay > *m_sexy_display2;
|
2014-10-22 16:00:59 +00:00
|
|
|
GrowingTableView *m_value_table;
|
|
|
|
RegFieldTableModel *m_value_model;
|
2014-04-07 09:28:04 +00:00
|
|
|
QStyledItemDelegate *m_table_delegate;
|
|
|
|
QItemEditorFactory *m_table_edit_factory;
|
|
|
|
QLabel *m_raw_val_name;
|
|
|
|
QFont m_reg_font;
|
2016-02-06 15:08:43 +00:00
|
|
|
QLabel *m_name;
|
|
|
|
QLabel *m_node_desc;
|
|
|
|
QLabel *m_inst_desc;
|
2014-04-07 09:28:04 +00:00
|
|
|
QLabel *m_desc;
|
|
|
|
QWidget *m_viewport;
|
|
|
|
QScrollArea *m_scroll;
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void OnRawRegValueReturnPressed();
|
2014-10-22 16:00:59 +00:00
|
|
|
void OnRegValueChanged(int index);
|
2016-02-06 15:08:43 +00:00
|
|
|
void OnRegFieldActivated(const QModelIndex& index);
|
2014-04-07 09:28:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* REGDISPLAYPANEL_H */
|