add new clear-gray color theme
[ardour.git] / gtk2_ardour / au_pluginui.h
index 883e7e0d6c6d0e93803d13b6ce5bc779ad40a948..5e43bcbdcedfd67409ca459d1a44d4c71715e5cb 100644 (file)
@@ -23,6 +23,8 @@
 #include <vector>
 #include <string>
 
+#include <stdint.h>
+
 #include <AppKit/AppKit.h>
 #include <Carbon/Carbon.h>
 #include <AudioUnit/AudioUnitCarbonView.h>
@@ -65,6 +67,12 @@ class AUPluginUI;
 }
 @end
 
+@interface LiveResizeNotificationObject : NSObject {
+       @private
+               AUPluginUI* plugin_ui;
+}
+@end
+
 class AUPluginUI : public PlugUIBase, public Gtk::VBox
 {
   public:
@@ -88,7 +96,6 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox
        void lower_box_unmap ();
        void lower_box_size_request (GtkRequisition*);
        void lower_box_size_allocate (Gtk::Allocation&);
-       gboolean lower_box_expose (GdkEventExpose*);
 
        void cocoa_view_resized ();
        void on_realize ();
@@ -100,6 +107,9 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox
 
        OSStatus carbon_event (EventHandlerCallRef nextHandlerRef, EventRef event);
 
+       void start_live_resize ();
+       void end_live_resize ();
+
   private:
        WindowRef wr;
        boost::shared_ptr<ARDOUR::AUPlugin> au;
@@ -115,20 +125,17 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox
 
        static std::vector<std::string> automation_mode_strings;
 
-       bool mapped;
        bool resizable;
-       int  min_width;
-       int  min_height;
        int  req_width;
        int  req_height;
-       int  alo_width;
-       int  alo_height;
 
        /* Cocoa */
 
        NSWindow*           cocoa_window;
        NSView*             au_view;
         NSRect              last_au_frame;
+       bool                in_live_resize;
+       uint32_t            plugin_requested_resize;
 
        /* Carbon */
 
@@ -136,9 +143,13 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox
        ComponentDescription carbon_descriptor;
        AudioUnitCarbonView  editView;
        WindowRef            carbon_window;
-       EventHandlerRef      carbon_event_handler;
+       EventHandlerRef      carbon_event_handler;
        bool                 _activating_from_app;
+
+       /* Generic */
+
        NotificationObject* _notify;
+       LiveResizeNotificationObject* _resize_notify;
 
        bool test_cocoa_view_support ();
        bool test_carbon_view_support ();
@@ -152,6 +163,21 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox
        void update_view_size ();
 
        bool plugin_class_valid (Class pluginClass);
+
+       friend void au_cf_timer_callback (CFRunLoopTimerRef timer, void* info);
+       static CFRunLoopTimerRef   cf_timer;
+       static void cf_timer_callback ();
+       static int64_t last_timer;
+       static bool timer_needed;
+       static uint64_t timer_callbacks;
+       static uint64_t timer_out_of_range;
+
+       static bool timer_callback ();
+       static sigc::connection timer_connection;
+
+  public:
+       static void start_cf_timer ();
+       static void stop_cf_timer ();
 };
 
 #endif /* __gtk2_ardour_auplugin_ui_h__  */