#include "node_int.h" #include "flowgraph.h" #include "imgui/imgui.h" namespace satdump { namespace ndsp { namespace flowgraph { NodeInternal::NodeInternal(const Flowgraph *f, std::shared_ptr b) : f((Flowgraph *)f), blk(b) { optdisp = std::make_unique(blk); optdisp->setShowStats(true); } bool NodeInternal::render() { // Limit width. Might need to change that later? ImGui::PushItemWidth(200); bool r = optdisp->draw(); ImGui::PopItemWidth(); return r; } nlohmann::json NodeInternal::getP() { return blk->get_cfg(); } void NodeInternal::setP(nlohmann::json p) { blk->set_cfg(p); optdisp->update(); } } // namespace flowgraph } // namespace ndsp } // namespace satdump