Remove erroneous assert which I added earlier.
[ardour2.git] / gtk2_ardour / au_pluginui.h
blobaf3551b08e812c14e0ae304308220eb2cd7c9271
1 #ifndef __gtk2_ardour_auplugin_ui_h__
2 #define __gtk2_ardour_auplugin_ui_h__
4 #include <vector>
5 #include <string>
7 #include <AppKit/AppKit.h>
8 #include <Carbon/Carbon.h>
9 #include <AudioUnit/AudioUnitCarbonView.h>
10 #include <AudioUnit/AudioUnit.h>
12 /* fix up stupid apple macros */
14 #undef check
15 #undef require
16 #undef verify
18 #include <gtkmm/box.h>
19 #include <gtkmm/combobox.h>
20 #include <gtkmm/button.h>
21 #include <gtkmm/label.h>
23 #include "plugin_ui.h"
25 namespace ARDOUR {
26 class AUPlugin;
27 class PluginInsert;
28 class IOProcessor;
31 class AUPluginUI;
33 @interface NotificationObject : NSObject {
34 @private
35 AUPluginUI* plugin_ui;
36 NSWindow* cocoa_parent;
37 NSWindow* top_level_parent;
39 @end
41 class AUPluginUI : public PlugUIBase, public Gtk::VBox
43 public:
44 AUPluginUI (boost::shared_ptr<ARDOUR::PluginInsert>);
45 ~AUPluginUI ();
47 gint get_preferred_height () { return prefheight; }
48 gint get_preferred_width () { return prefwidth; }
49 bool start_updating(GdkEventAny*);
50 bool stop_updating(GdkEventAny*);
52 void activate ();
53 void deactivate ();
55 bool non_gtk_gui() const { return true; }
57 void lower_box_realized ();
58 void cocoa_view_resized ();
59 void on_realize ();
60 bool on_map_event (GdkEventAny*);
61 bool on_focus_in_event (GdkEventFocus*);
62 bool on_focus_out_event (GdkEventFocus*);
63 void forward_key_event (GdkEventKey*);
65 bool on_window_show (const std::string& /*title*/);
66 void on_window_hide ();
68 OSStatus carbon_event (EventHandlerCallRef nextHandlerRef, EventRef event);
70 private:
71 WindowRef wr;
72 boost::shared_ptr<ARDOUR::AUPlugin> au;
73 int prefheight;
74 int prefwidth;
76 Gtk::HBox top_box;
77 Gtk::EventBox low_box;
78 Gtk::VBox vpacker;
79 Gtk::Label automation_mode_label;
80 Gtk::ComboBoxText automation_mode_selector;
81 Gtk::Label preset_label;
83 static std::vector<std::string> automation_mode_strings;
85 /* Cocoa */
87 NSWindow* cocoa_window;
88 NSView* au_view;
90 /* Carbon */
92 NSWindow* cocoa_parent;
93 ComponentDescription carbon_descriptor;
94 AudioUnitCarbonView editView;
95 WindowRef carbon_window;
96 EventHandlerRef carbon_event_handler;
97 bool _activating_from_app;
98 NotificationObject* _notify;
100 bool test_cocoa_view_support ();
101 bool test_carbon_view_support ();
102 int create_carbon_view ();
103 int create_cocoa_view ();
105 int parent_carbon_window ();
106 int parent_cocoa_window ();
107 NSWindow* get_nswindow();
109 bool plugin_class_valid (Class pluginClass);
112 #endif /* __gtk2_ardour_auplugin_ui_h__ */