summaryrefslogtreecommitdiffstats
path: root/src/libs/gui/NodeModule.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-06-23 19:41:58 +0000
committerDavid Robillard <d@drobilla.net>2008-06-23 19:41:58 +0000
commit11148a825b0363908ed18427e99392fc7047f747 (patch)
tree6e4e416bc60465e62311451a5d893a0abdc7df9d /src/libs/gui/NodeModule.hpp
parentc2af33c189d0e9c2c957f9e73d7995302faf7df9 (diff)
downloadingen-11148a825b0363908ed18427e99392fc7047f747.tar.gz
ingen-11148a825b0363908ed18427e99392fc7047f747.tar.bz2
ingen-11148a825b0363908ed18427e99392fc7047f747.zip
Move widget embedding down to FlowCanvas.
git-svn-id: http://svn.drobilla.net/lad/ingen@1274 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/gui/NodeModule.hpp')
-rw-r--r--src/libs/gui/NodeModule.hpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/libs/gui/NodeModule.hpp b/src/libs/gui/NodeModule.hpp
index 595cb1e1..413020f5 100644
--- a/src/libs/gui/NodeModule.hpp
+++ b/src/libs/gui/NodeModule.hpp
@@ -68,6 +68,7 @@ protected:
void on_double_click(GdkEventButton* ev);
void show_control_window();
+ void embed_gui(bool embed);
bool popup_gui();
void on_gui_window_close();
@@ -78,9 +79,6 @@ protected:
void remove_port(SharedPtr<PortModel> port);
void value_changed(uint32_t index, const Atom& value);
-
- void embed_gui(bool embed);
- void gui_size_request(Gtk::Requisition* req, bool force);
void initialise_gui_values();
void create_menu();
@@ -89,11 +87,7 @@ protected:
NodeMenu* _menu;
SharedPtr<PluginUI> _plugin_ui;
Gtk::Widget* _gui_widget;
- Gtk::Container* _gui_container;
- Gnome::Canvas::Widget* _gui_item; ///< iff embedded
Gtk::Window* _gui_window; ///< iff popped up
- int _last_gui_request_width;
- int _last_gui_request_height;
};