diff options
Diffstat (limited to 'src/gui/PatchWindow.hpp')
-rw-r--r-- | src/gui/PatchWindow.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/PatchWindow.hpp b/src/gui/PatchWindow.hpp index aafb9d2c..096343bd 100644 --- a/src/gui/PatchWindow.hpp +++ b/src/gui/PatchWindow.hpp @@ -57,6 +57,8 @@ public: PatchWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& glade_xml); ~PatchWindow(); + Gtk::TextView* doc_textview() { return _doc_textview; } + void set_patch_from_path(const Raul::Path& path, SharedPtr<PatchView> view); void set_patch(SharedPtr<PatchModel> pc, SharedPtr<PatchView> view); @@ -151,6 +153,8 @@ private: BreadCrumbs* _breadcrumbs; Gtk::Statusbar* _status_bar; + Gtk::TextView* _doc_textview; + sigc::connection _entered_connection; sigc::connection _left_connection; |