X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdialogs%2Fdecoder.h;h=2277f987c23e4b0250ec715b1882949d4f4a43fd;hb=67fe5e9c02e4e9cfe94d465a0a5e5b598129e4e3;hp=08af38cb71bf6a655218deed04b7fc62e551f020;hpb=4206fe26e6b3f6439e382a072f5ff67c009f412a;p=pulseview.git diff --git a/pv/dialogs/decoder.h b/pv/dialogs/decoder.h index 08af38c..2277f98 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;