X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=pv%2Fdialogs%2Fdecoder.h;h=2277f987c23e4b0250ec715b1882949d4f4a43fd;hb=b213ef0991a13af0c74ffe5c54382c5c455c5496;hp=08af38cb71bf6a655218deed04b7fc62e551f020;hpb=708c552391bc942e91bc09bc808577e2564347bd;p=pulseview.git diff --git a/pv/dialogs/decoder.h b/pv/dialogs/decoder.h index 08af38cb..2277f987 100644 --- a/pv/dialogs/decoder.h +++ b/pv/dialogs/decoder.h @@ -33,6 +33,8 @@ #include #include +#include + struct srd_decoder; namespace pv { @@ -47,7 +49,10 @@ class Decoder : public QDialog { public: Decoder(QWidget *parent, const srd_decoder *decoder, - const std::vector< boost::shared_ptr > &sigs); + const std::vector< boost::shared_ptr > &sigs, + GHashTable *options); + + void accept(); std::map > get_probes(); @@ -62,6 +67,9 @@ private: std::map _probe_selector_map; + GHashTable *const _options; + pv::prop::binding::DecoderOptions _binding; + QVBoxLayout _layout; QWidget _form;