license: remove FSF postal address from boiler plate license text
[pulseview.git] / pv / data / signalbase.hpp
index db1af1c718e4ddb0b8262b6790b5e2fd9afea2da..6667dd76847cab8ce3235c99d6ec19deb73544fb 100644 (file)
@@ -15,8 +15,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifndef PULSEVIEW_PV_DATA_SIGNALBASE_HPP
@@ -24,6 +23,7 @@
 
 #include <QColor>
 #include <QObject>
+#include <QSettings>
 #include <QString>
 
 #include <libsigrokcxx/libsigrokcxx.hpp>
@@ -37,6 +37,11 @@ class ChannelType;
 namespace pv {
 namespace data {
 
+class Analog;
+class DecoderStack;
+class Logic;
+class SignalData;
+
 class SignalBase : public QObject
 {
        Q_OBJECT
@@ -80,6 +85,11 @@ public:
         */
        QString name() const;
 
+       /**
+        * Gets the internal name of this signal, i.e. how the device calls it.
+        */
+       QString internal_name() const;
+
        /**
         * Sets the name of the signal.
         */
@@ -100,6 +110,34 @@ public:
         */
        QColor bgcolour() const;
 
+       /**
+        * Sets the internal data object.
+        */
+       void set_data(std::shared_ptr<pv::data::SignalData> data);
+
+       /**
+        * Get the internal data as analog data object in case of analog type.
+        */
+       std::shared_ptr<pv::data::Analog> analog_data() const;
+
+       /**
+        * Get the internal data as logic data object in case of logic type.
+        */
+       std::shared_ptr<pv::data::Logic> logic_data() const;
+
+#ifdef ENABLE_DECODE
+       bool is_decode_signal() const;
+
+       std::shared_ptr<pv::data::DecoderStack> decoder_stack() const;
+
+       void set_decoder_stack(std::shared_ptr<pv::data::DecoderStack>
+               decoder_stack);
+#endif
+
+       void save_settings(QSettings &settings) const;
+
+       void restore_settings(QSettings &settings);
+
 Q_SIGNALS:
        void enabled_changed(const bool &value);
 
@@ -109,7 +147,13 @@ Q_SIGNALS:
 
 private:
        std::shared_ptr<sigrok::Channel> channel_;
-       QString name_;
+       std::shared_ptr<pv::data::SignalData> data_;
+
+#ifdef ENABLE_DECODE
+       std::shared_ptr<pv::data::DecoderStack> decoder_stack_;
+#endif
+
+       QString internal_name_, name_;
        QColor colour_, bgcolour_;
 };