summaryrefslogtreecommitdiff
path: root/utils/regtools/qeditor/std_analysers.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/regtools/qeditor/std_analysers.h')
-rw-r--r--utils/regtools/qeditor/std_analysers.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/utils/regtools/qeditor/std_analysers.h b/utils/regtools/qeditor/std_analysers.h
index 20bc07da24..e613c07096 100644
--- a/utils/regtools/qeditor/std_analysers.h
+++ b/utils/regtools/qeditor/std_analysers.h
@@ -91,4 +91,26 @@ private:
91 QLineEdit *m_emi_freq_label; 91 QLineEdit *m_emi_freq_label;
92}; 92};
93 93
94/**
95 * PINCTRL analyzer
96 */
97class PinAnalyser : public Analyser
98{
99 Q_OBJECT
100public:
101 PinAnalyser(const soc_t& soc, IoBackend *backend);
102 virtual ~PinAnalyser();
103 virtual QWidget *GetWidget();
104
105 static bool SupportSoc(const QString& soc_name);
106
107private:
108 void FillList();
109
110private:
111 QGroupBox *m_group;
112 QLineEdit *m_package_edit;
113 QToolBox *m_panel;
114};
115
94#endif /* _STDANALYSER_H_ */ 116#endif /* _STDANALYSER_H_ */