#pragma once #include "Fl_Osc_Widget.H" #include #include #include class Osc_IntModel:public Fl_Osc_Widget { public: Osc_IntModel(Fl_Osc_Interface *osc_) :Fl_Osc_Widget("", osc_), value(0) { assert(osc); } typedef int value_t; value_t value; std::function callback; void updateVal(value_t v) { value = v; oscWrite(ext, "i", v); } void doUpdate(std::string url) { if(!ext.empty()) osc->removeLink(this); ext = url; oscRegister(ext.c_str()); } //Raw messages virtual void OSC_raw(const char *msg) { std::string args = rtosc_argument_string(msg); if(args == "i") { value = rtosc_argument(msg, 0).i; if(callback) callback(value); } else if(args == "T") { value = 1; if(callback) callback(value); } else if(args == "F") { value = 0; if(callback) callback(value); } } };