summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_window.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-05-07 22:09:16 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-05-07 22:09:16 -0400
commitbedc7b170eb72f1b9aaaf3872c7160aa1661a4e1 (patch)
tree2c659ab7a49ede69a32e00799c04713a9ec15b02 /gtk2_ardour/ardour_window.h
parent87d502c15bf78f84a67566e0f2a8d51a820ad14a (diff)
change namespace/naming of WindowManager classes; register all ArdourDialog and ArdourWindow classes as ProxyTemporary windows so that transient-for can be set for all such windows
Diffstat (limited to 'gtk2_ardour/ardour_window.h')
-rw-r--r--gtk2_ardour/ardour_window.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/gtk2_ardour/ardour_window.h b/gtk2_ardour/ardour_window.h
index e113f724c8..c90eb3c049 100644
--- a/gtk2_ardour/ardour_window.h
+++ b/gtk2_ardour/ardour_window.h
@@ -27,6 +27,10 @@
#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
@@ -47,7 +51,8 @@ class ArdourWindow : public Gtk::Window, public ARDOUR::SessionHandlePtr, public
void on_unmap ();
private:
- void init ();
+ WM::ProxyTemporary* proxy;
+ void init ();
};
#endif // __ardour_window_h__