Add in MXF file as a supported video format
[ardour.git] / gtk2_ardour / ardour_window.h
index 3b8628d5a7b0d636d654f45b1743359975c18f7f..7ae9c3dbce205b52ddbd472e232710293d7d61b6 100644 (file)
 
 #include "ardour/session_handle.h"
 
+namespace WM {
+       class ProxyTemporary;
+}
+
 /**
  * This virtual parent class is so that each window uses the
  * same mechanism to declare its closing. It shares a common
@@ -40,12 +44,15 @@ class ArdourWindow : public Gtk::Window, public ARDOUR::SessionHandlePtr, public
        ArdourWindow (Gtk::Window& parent, std::string title);
        ~ArdourWindow();
 
-       bool on_enter_notify_event (GdkEventCrossing*);
-       bool on_leave_notify_event (GdkEventCrossing*);
+       bool on_focus_in_event (GdkEventFocus*);
+       bool on_focus_out_event (GdkEventFocus*);
+        bool on_delete_event (GdkEventAny *);
+        bool on_key_press_event (GdkEventKey*);
        void on_unmap ();
 
   private:
-       void init ();
+    WM::ProxyTemporary* proxy;
+    void init ();
 };
 
 #endif // __ardour_window_h__