From 1c736a348c59d98e4022fb02b49a8b4c93baa3d2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 1 May 2012 22:30:55 +0000 Subject: Remove half baked control window stuff. The canvas is better anyway. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4309 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/WindowFactory.hpp | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) (limited to 'src/gui/WindowFactory.hpp') diff --git a/src/gui/WindowFactory.hpp b/src/gui/WindowFactory.hpp index a962856c..c9d281c3 100644 --- a/src/gui/WindowFactory.hpp +++ b/src/gui/WindowFactory.hpp @@ -40,7 +40,6 @@ class App; class LoadPatchWindow; class LoadPluginWindow; class NewSubpatchWindow; -class NodeControlWindow; class PropertiesWindow; class PatchBox; class PatchView; @@ -61,18 +60,15 @@ public: size_t num_open_patch_windows(); - PatchBox* patch_box(SharedPtr patch); - PatchWindow* patch_window(SharedPtr patch); - PatchWindow* parent_patch_window(SharedPtr node); - NodeControlWindow* control_window(SharedPtr node); + PatchBox* patch_box(SharedPtr patch); + PatchWindow* patch_window(SharedPtr patch); + PatchWindow* parent_patch_window(SharedPtr node); void present_patch( SharedPtr model, PatchWindow* preferred = NULL, SharedPtr view = SharedPtr()); - void present_controls(SharedPtr node); - typedef GraphObject::Properties Properties; void present_load_plugin(SharedPtr patch, Properties data=Properties()); @@ -89,20 +85,14 @@ public: void clear(); private: - typedef std::map PatchWindowMap; - typedef std::map ControlWindowMap; + typedef std::map PatchWindowMap; PatchWindow* new_patch_window(SharedPtr patch, SharedPtr view); - NodeControlWindow* new_control_window(SharedPtr node); - bool remove_control_window(NodeControlWindow* win, - GdkEventAny* ignored); - App& _app; PatchBox* _main_box; PatchWindowMap _patch_windows; - ControlWindowMap _control_windows; LoadPluginWindow* _load_plugin_win; LoadPatchWindow* _load_patch_win; NewSubpatchWindow* _new_subpatch_win; -- cgit v1.2.1