Support thread-safe LV2 state restoration
[ardour.git] / libs / ardour / ardour / ardour.h
index f21d62c6b7559b978e404e3427511b41d16c1cf8..79b69124ac2a39a127359808e25cf5dcd5c58c4f 100644 (file)
@@ -38,8 +38,6 @@
 #include "ardour/types.h"
 #include "ardour/libardour_visibility.h"
 
-#include <jack/jack.h>
-
 namespace MIDI {
        class MachineControl;
        class Port;
@@ -50,7 +48,11 @@ namespace ARDOUR {
        class AudioEngine;
 
        extern LIBARDOUR_API PBD::Signal1<void,std::string> BootMessage;
+       extern LIBARDOUR_API PBD::Signal3<void,std::string,std::string,bool> PluginScanMessage;
+       extern LIBARDOUR_API PBD::Signal1<void,int> PluginScanTimeout;
        extern LIBARDOUR_API PBD::Signal0<void> GUIIdle;
+       extern LIBARDOUR_API PBD::Signal3<bool,std::string,std::string,int> CopyConfigurationFiles;
+       extern LIBARDOUR_API std::vector<std::string> reserved_io_names;
 
        /**
         * @param with_vst true to enable VST Support
@@ -70,8 +72,6 @@ namespace ARDOUR {
 
        extern LIBARDOUR_API const char* const ardour_config_info;
 
-       LIBARDOUR_API void find_bindings_files (std::map<std::string,std::string>&);
-
        /* these only impact bundled installations */
        LIBARDOUR_API std::string translation_enable_path ();
        LIBARDOUR_API bool translations_are_enabled ();
@@ -81,6 +81,14 @@ namespace ARDOUR {
 
        LIBARDOUR_API void setup_fpu ();
        LIBARDOUR_API std::vector<SyncSource> get_available_sync_options();
+
+       /* the @param ui_handler will be called if there are old configuration
+        * files to be copied. It should (probably) ask the user about the
+        * action, and return true or false depending on whether or not the
+        * copy should take place.
+        */
+       LIBARDOUR_API void check_for_old_configuration_files ();
+       LIBARDOUR_API int handle_old_configuration_files (boost::function<bool (std::string const&, std::string const&, int)> ui_handler);
 }
 
 #endif /* __ardour_ardour_h__ */