diff options
author | David Robillard <d@drobilla.net> | 2006-06-15 08:22:48 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-06-15 08:22:48 +0000 |
commit | 55c6e4c46d388189e35329a6519b9afa86f029fa (patch) | |
tree | a65e43a34a7dce7aa2c599ce39e7388e14c193cc /src/progs/gtk/PatchController.h | |
parent | 94c0fff479da5e81dede855cf5c382cf23aadf7d (diff) | |
download | ingen-55c6e4c46d388189e35329a6519b9afa86f029fa.tar.gz ingen-55c6e4c46d388189e35329a6519b9afa86f029fa.tar.bz2 ingen-55c6e4c46d388189e35329a6519b9afa86f029fa.zip |
Switched patch "description" window into a properties window (hopefully to extend
in the future)
git-svn-id: http://svn.drobilla.net/lad/grauph@40 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/progs/gtk/PatchController.h')
-rw-r--r-- | src/progs/gtk/PatchController.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/progs/gtk/PatchController.h b/src/progs/gtk/PatchController.h index 236fd0b6..eff525c8 100644 --- a/src/progs/gtk/PatchController.h +++ b/src/progs/gtk/PatchController.h @@ -41,6 +41,7 @@ class SubpatchModule; class Controller; class OmFlowCanvas; class NodeControlWindow; +class PatchPropertiesWindow; class ControlPanel; class PatchView; class NodeController; @@ -81,6 +82,7 @@ public: void get_new_module_location(int& x, int& y); void show_control_window(); + void show_properties_window(); void show_patch_window(); void claim_patch_view(); @@ -111,7 +113,9 @@ private: void create_connection(CountedPtr<ConnectionModel> cm); - PatchWindow* m_window; ///< Window currently showing this patch + PatchPropertiesWindow* m_properties_window; + + PatchWindow* m_window; ///< Patch Window currently showing m_patch_view PatchView* m_patch_view; ///< View (canvas) of this patch CountedPtr<PatchModel> m_patch_model; |