From a0b504d11542097843db77653d3e26516a892593 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Mon, 10 Sep 2018 23:24:49 +0100 Subject: lut blend --- gui/src/threadedSystemDialogs.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 gui/src/threadedSystemDialogs.h (limited to 'gui/src/threadedSystemDialogs.h') diff --git a/gui/src/threadedSystemDialogs.h b/gui/src/threadedSystemDialogs.h new file mode 100644 index 0000000..5a055b2 --- /dev/null +++ b/gui/src/threadedSystemDialogs.h @@ -0,0 +1,20 @@ + +#pragma once + +#include "ofThread.h" +#include "ofURLFileLoader.h" +#include "ofTypes.h" + + +class threadedSystemLoadDialog : public ofThread { + public: + threadedSystemLoadDialog(){}; + ~threadedSystemLoadDialog(){}; + + void load(std::string _caption,std::function _callback); //bool (*_callback)(std::string filename)); + + std::string caption; + std::function load_callback; + + virtual void threadedFunction(); +}; -- cgit v1.2.3