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 AUX_H
|
|
|
|
#define AUX_H
|
|
|
|
|
|
|
|
#include <QEvent>
|
|
|
|
#include <QPaintEvent>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QValidator>
|
|
|
|
#include <QToolButton>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QTextEdit>
|
|
|
|
#include <QTableWidget>
|
|
|
|
#include <QToolBar>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QItemEditorCreatorBase>
|
|
|
|
#include <QStyledItemDelegate>
|
2014-09-18 17:02:54 +00:00
|
|
|
#include <QComboBox>
|
|
|
|
#include <QFileDialog>
|
|
|
|
#include "settings.h"
|
2014-04-07 09:28:04 +00:00
|
|
|
#include "backend.h"
|
|
|
|
|
|
|
|
class SocBitRangeValidator : public QValidator
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
SocBitRangeValidator(QObject *parent = 0);
|
|
|
|
|
|
|
|
virtual void fixup(QString& input) const;
|
|
|
|
virtual State validate(QString& input, int& pos) const;
|
|
|
|
/* validate and return the interpreted value */
|
|
|
|
State parse(const QString& input, int& last_bit, int& first_bit) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SocFieldValidator : public QValidator
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
SocFieldValidator(QObject *parent = 0);
|
|
|
|
SocFieldValidator(const soc_reg_field_t& field, QObject *parent = 0);
|
|
|
|
|
|
|
|
virtual void fixup(QString& input) const;
|
|
|
|
virtual State validate(QString& input, int& pos) const;
|
|
|
|
/* validate and return the interpreted value */
|
|
|
|
State parse(const QString& input, soc_word_t& val) const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
soc_reg_field_t m_field;
|
|
|
|
};
|
|
|
|
|
|
|
|
class RegLineEdit : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
enum EditMode
|
|
|
|
{
|
|
|
|
Write, Set, Clear, Toggle
|
|
|
|
};
|
|
|
|
|
|
|
|
RegLineEdit(QWidget *parent = 0);
|
|
|
|
~RegLineEdit();
|
|
|
|
void SetReadOnly(bool ro);
|
|
|
|
void EnableSCT(bool en);
|
|
|
|
void SetMode(EditMode mode);
|
|
|
|
EditMode GetMode();
|
|
|
|
QLineEdit *GetLineEdit();
|
|
|
|
void setText(const QString& text);
|
|
|
|
QString text() const;
|
|
|
|
|
|
|
|
Q_PROPERTY(QString text READ text WRITE setText USER true)
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void OnWriteAct();
|
|
|
|
void OnSetAct();
|
|
|
|
void OnClearAct();
|
|
|
|
void OnToggleAct();
|
|
|
|
protected:
|
|
|
|
void ShowMode(bool show);
|
|
|
|
void DoAutoHide();
|
|
|
|
|
|
|
|
QHBoxLayout *m_layout;
|
|
|
|
QToolButton *m_button;
|
|
|
|
QLineEdit *m_edit;
|
|
|
|
EditMode m_mode;
|
|
|
|
bool m_has_sct;
|
|
|
|
bool m_readonly;
|
|
|
|
QMenu *m_menu;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SocFieldItemDelegate : public QStyledItemDelegate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SocFieldItemDelegate(QObject *parent = 0):QStyledItemDelegate(parent), m_bitcount(32) {}
|
|
|
|
SocFieldItemDelegate(const soc_reg_field_t& field, QObject *parent = 0)
|
|
|
|
:QStyledItemDelegate(parent), m_bitcount(field.last_bit - field.first_bit + 1) {}
|
|
|
|
|
|
|
|
virtual QString displayText(const QVariant& value, const QLocale& locale) const;
|
|
|
|
protected:
|
|
|
|
int m_bitcount;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SocFieldEditor : public QLineEdit
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(uint field READ field WRITE setField USER true)
|
|
|
|
public:
|
|
|
|
SocFieldEditor(const soc_reg_field_t& field, QWidget *parent = 0);
|
|
|
|
virtual ~SocFieldEditor();
|
|
|
|
|
|
|
|
uint field() const;
|
|
|
|
void setField(uint field);
|
2014-10-22 15:56:13 +00:00
|
|
|
void SetRegField(const soc_reg_field_t& field);
|
2014-04-07 09:28:04 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
SocFieldValidator *m_validator;
|
|
|
|
uint m_field;
|
|
|
|
soc_reg_field_t m_reg_field;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SocFieldEditorCreator : public QItemEditorCreatorBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SocFieldEditorCreator() { m_field.first_bit = 0; m_field.last_bit = 31; }
|
|
|
|
SocFieldEditorCreator(const soc_reg_field_t& field):m_field(field) {}
|
|
|
|
|
|
|
|
virtual QWidget *createWidget(QWidget *parent) const;
|
|
|
|
virtual QByteArray valuePropertyName() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
soc_reg_field_t m_field;
|
|
|
|
};
|
|
|
|
|
2014-05-11 17:51:55 +00:00
|
|
|
class SocFieldCachedValue
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SocFieldCachedValue():m_value(0) {}
|
2014-10-22 15:56:13 +00:00
|
|
|
SocFieldCachedValue(const soc_reg_field_t& field, uint value);
|
2014-05-11 17:51:55 +00:00
|
|
|
virtual ~SocFieldCachedValue() {}
|
|
|
|
const soc_reg_field_t& field() const { return m_field; }
|
|
|
|
uint value() const { return m_value; }
|
2014-10-22 15:56:13 +00:00
|
|
|
/* return empty string if there no match */
|
|
|
|
QString value_name() const { return m_name; }
|
2014-05-11 17:51:55 +00:00
|
|
|
protected:
|
|
|
|
soc_reg_field_t m_field;
|
|
|
|
uint m_value;
|
2014-10-22 15:56:13 +00:00
|
|
|
QString m_name;
|
2014-05-11 17:51:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(SocFieldCachedValue)
|
|
|
|
|
|
|
|
class SocFieldCachedItemDelegate : public QStyledItemDelegate
|
|
|
|
{
|
|
|
|
public:
|
2014-10-22 16:00:59 +00:00
|
|
|
enum DisplayMode
|
|
|
|
{
|
|
|
|
DisplayValueAndName, /* "value (name)" or "value" if no name */
|
|
|
|
DisplayName, /* "name" or "value" if no name */
|
|
|
|
DisplayValue, /* "value" */
|
|
|
|
};
|
2014-10-22 16:00:59 +00:00
|
|
|
|
2014-10-22 16:00:59 +00:00
|
|
|
SocFieldCachedItemDelegate(QObject *parent = 0):QStyledItemDelegate(parent) {}
|
2014-12-15 21:44:17 +00:00
|
|
|
virtual QString displayText(const QVariant& value, const QLocale& locale) const;
|
2014-10-22 16:00:59 +00:00
|
|
|
void SetMode(DisplayMode mode) { m_mode = mode; }
|
|
|
|
DisplayMode GetMode() const { return m_mode; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
DisplayMode m_mode;
|
2014-05-11 17:51:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class SocFieldCachedEditor : public SocFieldEditor
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(SocFieldCachedValue value READ value WRITE setValue USER true)
|
|
|
|
public:
|
|
|
|
SocFieldCachedEditor(QWidget *parent = 0);
|
|
|
|
virtual ~SocFieldCachedEditor();
|
|
|
|
|
|
|
|
SocFieldCachedValue value() const;
|
|
|
|
void setValue(SocFieldCachedValue field);
|
|
|
|
protected:
|
|
|
|
SocFieldCachedValue m_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SocFieldCachedEditorCreator : public QItemEditorCreatorBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SocFieldCachedEditorCreator() {}
|
|
|
|
|
|
|
|
virtual QWidget *createWidget(QWidget *parent) const;
|
|
|
|
virtual QByteArray valuePropertyName() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
|
2014-10-22 15:59:57 +00:00
|
|
|
struct RegThemeGroup
|
|
|
|
{
|
|
|
|
QBrush foreground;
|
|
|
|
QBrush background;
|
|
|
|
QFont font;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct RegTheme
|
|
|
|
{
|
|
|
|
RegTheme():valid(false) {}
|
|
|
|
bool valid;
|
|
|
|
RegThemeGroup normal;
|
|
|
|
RegThemeGroup diff;
|
|
|
|
RegThemeGroup error;
|
|
|
|
};
|
|
|
|
|
|
|
|
class RegFieldTableModel : public QAbstractTableModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
RegFieldTableModel(QObject *parent);
|
|
|
|
virtual int rowCount(const QModelIndex & parent = QModelIndex()) const;
|
|
|
|
virtual int columnCount(const QModelIndex & parent = QModelIndex()) const;
|
|
|
|
virtual QVariant data(const QModelIndex & index, int role) const;
|
|
|
|
virtual QVariant headerData(int section, Qt::Orientation orientation, int role) const;
|
|
|
|
virtual Qt::ItemFlags flags (const QModelIndex & index) const;
|
|
|
|
virtual bool setData(const QModelIndex& index, const QVariant& value, int role);
|
|
|
|
|
|
|
|
void SetRegister(const soc_reg_t& reg);
|
|
|
|
/* values can either be an invalid QVariant() (means no value/error), or a
|
|
|
|
* QVariant containing a soc_word_t */
|
|
|
|
void SetValues(const QVector< QVariant >& values);
|
|
|
|
QVariant GetValue(int index);
|
|
|
|
void SetTheme(const RegTheme& theme);
|
|
|
|
void SetReadOnly(bool en);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void OnValueModified(int index);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void RecomputeTheme();
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
BitRangeColumn = 0,
|
|
|
|
NameColumn,
|
|
|
|
FirstValueColumn,
|
|
|
|
DescColumnOffset = FirstValueColumn, /* offset from nr_values */
|
|
|
|
ColumnCountOffset, /* offset from nr_values */
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ColorStatus
|
|
|
|
{
|
|
|
|
None,
|
|
|
|
Normal,
|
|
|
|
Diff,
|
|
|
|
Error
|
|
|
|
};
|
|
|
|
|
|
|
|
soc_reg_t m_reg;
|
|
|
|
QVector< QVariant > m_value;
|
|
|
|
QVector< ColorStatus > m_status;
|
|
|
|
RegTheme m_theme;
|
|
|
|
bool m_read_only;
|
|
|
|
};
|
|
|
|
|
2014-04-07 09:28:04 +00:00
|
|
|
class RegSexyDisplay : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
RegSexyDisplay(const SocRegRef& reg, QWidget *parent = 0);
|
|
|
|
|
|
|
|
QSize minimumSizeHint() const;
|
|
|
|
QSize sizeHint() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int marginSize() const;
|
|
|
|
int separatorSize() const;
|
|
|
|
int columnWidth() const;
|
|
|
|
int headerHeight() const;
|
|
|
|
int gapHeight() const;
|
|
|
|
int maxContentHeight() const;
|
|
|
|
int textSep() const;
|
|
|
|
void paintEvent(QPaintEvent *event);
|
|
|
|
|
|
|
|
private:
|
|
|
|
SocRegRef m_reg;
|
|
|
|
mutable QSize m_size;
|
|
|
|
};
|
|
|
|
|
2014-10-22 16:00:59 +00:00
|
|
|
class GrowingTableView : public QTableView
|
2014-04-07 09:28:04 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-10-22 16:00:59 +00:00
|
|
|
GrowingTableView(QWidget *parent = 0);
|
|
|
|
virtual void setModel(QAbstractItemModel *model);
|
2014-04-07 09:28:04 +00:00
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void DataChanged(const QModelIndex& tl, const QModelIndex& br);
|
|
|
|
};
|
|
|
|
|
|
|
|
class MyTextEditor : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
MyTextEditor(QWidget *parent = 0);
|
|
|
|
void SetGrowingMode(bool en);
|
|
|
|
void SetReadOnly(bool ro);
|
|
|
|
void SetTextHtml(const QString& text);
|
|
|
|
QString GetTextHtml();
|
|
|
|
bool IsModified();
|
|
|
|
signals:
|
|
|
|
void OnTextChanged();
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void OnInternalTextChanged();
|
|
|
|
void OnTextBold(bool checked);
|
|
|
|
void OnTextItalic(bool checked);
|
|
|
|
void OnTextUnderline(bool checked);
|
|
|
|
void OnCharFormatChanged(const QTextCharFormat& fmt);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool m_growing_mode;
|
|
|
|
bool m_read_only;
|
|
|
|
QToolBar *m_toolbar;
|
|
|
|
QTextEdit *m_edit;
|
|
|
|
QToolButton *m_bold_button;
|
|
|
|
QToolButton *m_italic_button;
|
|
|
|
QToolButton *m_underline_button;
|
|
|
|
};
|
|
|
|
|
2014-09-18 17:02:54 +00:00
|
|
|
class BackendSelector : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
BackendSelector(Backend *backend, QWidget *parent = 0);
|
|
|
|
virtual ~BackendSelector();
|
|
|
|
IoBackend *GetBackend();
|
2014-09-27 19:24:18 +00:00
|
|
|
void SetNothingMessage(const QString& msg);
|
2014-09-18 17:02:54 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void OnSelect(IoBackend *backend);
|
|
|
|
|
|
|
|
protected:
|
2014-09-27 19:24:18 +00:00
|
|
|
void ChangeBackend(IoBackend *new_backend);
|
|
|
|
|
2014-09-18 17:02:54 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
DataSelNothing,
|
|
|
|
DataSelFile,
|
|
|
|
#ifdef HAVE_HWSTUB
|
|
|
|
DataSelDevice,
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
Backend *m_backend;
|
|
|
|
IoBackend *m_io_backend;
|
|
|
|
QComboBox *m_data_selector;
|
|
|
|
QLineEdit *m_data_sel_edit;
|
|
|
|
#ifdef HAVE_HWSTUB
|
|
|
|
QComboBox *m_dev_selector;
|
|
|
|
HWStubBackendHelper m_hwstub_helper;
|
|
|
|
#endif
|
2014-09-27 19:24:18 +00:00
|
|
|
QLabel *m_nothing_text;
|
2014-09-18 17:02:54 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
#ifdef HAVE_HWSTUB
|
|
|
|
void OnDevListChanged();
|
|
|
|
void OnDevChanged(int index);
|
2014-09-18 17:46:26 +00:00
|
|
|
void OnDevListChanged2(bool, struct libusb_device *);
|
2014-09-18 17:02:54 +00:00
|
|
|
void ClearDevList();
|
|
|
|
#endif
|
|
|
|
void OnDataSelChanged(int index);
|
|
|
|
};
|
|
|
|
|
2014-09-27 11:29:44 +00:00
|
|
|
class MessageWidget : public QFrame
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
enum MessageType
|
|
|
|
{
|
|
|
|
Positive,
|
|
|
|
Information,
|
|
|
|
Warning,
|
|
|
|
Error
|
|
|
|
};
|
|
|
|
|
|
|
|
MessageWidget(QWidget *parent = 0);
|
|
|
|
virtual ~MessageWidget();
|
2014-10-07 12:30:24 +00:00
|
|
|
/* returns message ID */
|
|
|
|
int SetMessage(MessageType type, const QString& msg);
|
|
|
|
/* clear message if ID match, nop otherwise */
|
|
|
|
void HideMessage(int id);
|
2014-09-27 11:29:44 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void UpdateType();
|
|
|
|
|
|
|
|
QLabel *m_icon;
|
|
|
|
QLabel *m_text;
|
|
|
|
QToolButton *m_close;
|
|
|
|
MessageType m_type;
|
2014-10-07 12:30:24 +00:00
|
|
|
int m_id;
|
2014-09-27 11:29:44 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void OnClose(bool clicked);
|
|
|
|
};
|
|
|
|
|
2014-04-07 09:28:04 +00:00
|
|
|
#endif /* AUX_H */
|