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/PatchWindow.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/PatchWindow.h')
-rw-r--r-- | src/progs/gtk/PatchWindow.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/progs/gtk/PatchWindow.h b/src/progs/gtk/PatchWindow.h index 54ea11ef..42fba478 100644 --- a/src/progs/gtk/PatchWindow.h +++ b/src/progs/gtk/PatchWindow.h @@ -69,9 +69,6 @@ public: LoadSubpatchWindow* load_subpatch_window() const { return m_load_subpatch_window; } NewSubpatchWindow* new_subpatch_window() const { return m_new_subpatch_window; } - void show_control_window(); - void show_description_window(); - // Breadcrumb management void node_removed(const string& name); void node_renamed(const string& old_path, const string& new_path); @@ -96,13 +93,15 @@ private: void event_destroy(); void event_clear(); void event_fullscreen_toggled(); + void event_show_properties(); + void event_show_controls(); + PatchController* m_patch; LoadPluginWindow* m_load_plugin_window; LoadPatchWindow* m_load_patch_window; NewSubpatchWindow* m_new_subpatch_window; LoadSubpatchWindow* m_load_subpatch_window; - PatchDescriptionWindow* m_description_window; bool m_enable_signal; bool m_position_stored; |