MIDI Clock - Shuffling locate code (not actually used yet)
[ardour.git] / libs / ardour / ardour / ardour.h
index 5ce29d75801cb7d5908eee10c40cee74b226aea8..5f64c4b6a31bcae51e6d09ec3e2b15a211d11d0f 100644 (file)
@@ -22,6 +22,7 @@
 
 #include <map>
 #include <string>
+#include <vector>
 
 #include <limits.h>
 #include <signal.h>
@@ -47,8 +48,9 @@ namespace ARDOUR {
        class AudioEngine;
 
        extern PBD::Signal1<void,std::string> BootMessage;
+       extern PBD::Signal0<void> GUIIdle;
 
-       int init (bool with_vst, bool try_optimization);
+       int init (bool with_vst, bool try_optimization, const char* localedir);
        void init_post_engine ();
        int cleanup ();
        bool no_auto_connect ();
@@ -60,14 +62,17 @@ namespace ARDOUR {
 
        void find_bindings_files (std::map<std::string,std::string>&);
 
-       std::string translation_kill_path ();
-       bool translations_are_disabled ();
+       /* these only impact bundled installations */
+       std::string translation_enable_path ();
+       bool translations_are_enabled ();
+       bool set_translations_enabled (bool);
 
        static inline microseconds_t get_microseconds () {
                return (microseconds_t) jack_get_time();
        }
 
        void setup_fpu ();
+       std::vector<SyncSource> get_available_sync_options();
 }
 
 #endif /* __ardour_ardour_h__ */