OSC: Changed gainVCA to gainfader as VCA is already used.
[ardour.git] / gtk2_ardour / au_pluginui.h
index bc1ce4ce21a76d8d1631ef10bccb050d8c6c8488..883e7e0d6c6d0e93803d13b6ce5bc779ad40a948 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Paul Davis 
+    Copyright (C) 2012 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 #undef require
 #undef verify
 
+#ifdef YES
+#undef YES
+#endif
+#ifdef NO
+#undef NO
+#endif
+
 #include <gtkmm/box.h>
 #include <gtkmm/eventbox.h>
 #include <gtkmm/combobox.h>
@@ -64,8 +71,8 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox
        AUPluginUI (boost::shared_ptr<ARDOUR::PluginInsert>);
        ~AUPluginUI ();
 
-       gint get_preferred_height () { return prefheight; }
-       gint get_preferred_width () { return prefwidth; }
+       gint get_preferred_width () { return req_width; }
+       gint get_preferred_height () { return req_height; }
        bool start_updating(GdkEventAny*);
        bool stop_updating(GdkEventAny*);
 
@@ -77,6 +84,12 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox
        void lower_box_realized ();
        bool lower_box_visibility_notify (GdkEventVisibility*);
 
+       void lower_box_map ();
+       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 ();
        void grab_focus();
@@ -102,6 +115,15 @@ 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;
@@ -127,6 +149,8 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox
        int parent_cocoa_window ();
        NSWindow* get_nswindow();
 
+       void update_view_size ();
+
        bool plugin_class_valid (Class pluginClass);
 };