X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fbinding%2Fdevice.hpp;h=81c505986c85ac27662dfa7443b13ff5bcceff5f;hp=a8acd1669b00f05c9356ea1faff93dadebbd101e;hb=efdec55aec1a137460fa362a381ed1904182bfed;hpb=7a01bd3654ed046216308fa64edfd79be7cd525f diff --git a/pv/binding/device.hpp b/pv/binding/device.hpp index a8acd16..81c5059 100644 --- a/pv/binding/device.hpp +++ b/pv/binding/device.hpp @@ -14,8 +14,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 . */ #ifndef PULSEVIEW_PV_BINDING_DEVICE_HPP @@ -30,9 +29,7 @@ #include -namespace sigrok { - class Configurable; -} +#include namespace pv { @@ -51,7 +48,9 @@ Q_SIGNALS: private: void bind_bool(const QString &name, prop::Property::Getter getter, prop::Property::Setter setter); - void bind_enum(const QString &name, Glib::VariantContainerBase gvar_list, + void bind_enum(const QString &name, + const sigrok::ConfigKey *key, + std::set capabilities, prop::Property::Getter getter, prop::Property::Setter setter, std::function printer = print_gvariant); void bind_int(const QString &name, QString suffix, @@ -61,6 +60,7 @@ private: static QString print_timebase(Glib::VariantBase gvar); static QString print_vdiv(Glib::VariantBase gvar); static QString print_voltage_threshold(Glib::VariantBase gvar); + static QString print_probe_factor(Glib::VariantBase gvar); protected: std::shared_ptr configurable_;