diff options
Diffstat (limited to 'src/gui/LoadPluginWindow.cpp')
-rw-r--r-- | src/gui/LoadPluginWindow.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/gui/LoadPluginWindow.cpp b/src/gui/LoadPluginWindow.cpp index 080520c4..8008ed87 100644 --- a/src/gui/LoadPluginWindow.cpp +++ b/src/gui/LoadPluginWindow.cpp @@ -106,7 +106,6 @@ LoadPluginWindow::LoadPluginWindow(BaseObjectType* cobject, const Glib::RefPtr<G //m_add_button->grab_default(); } - void LoadPluginWindow::present(SharedPtr<PatchModel> patch, GraphObject::Properties data) { @@ -115,7 +114,6 @@ LoadPluginWindow::present(SharedPtr<PatchModel> patch, GraphObject::Properties d Gtk::Window::present(); } - /** Called every time the user types into the name input box. * Used to display warning messages, and enable/disable the OK button. */ @@ -137,7 +135,6 @@ LoadPluginWindow::name_changed() } } - #ifdef HAVE_NEW_GTKMM void LoadPluginWindow::name_cleared(Gtk::EntryIconPosition pos, const GdkEventButton* event) @@ -146,7 +143,6 @@ LoadPluginWindow::name_cleared(Gtk::EntryIconPosition pos, const GdkEventButton* } #endif // HAVE_NEW_GTKMM - /** Sets the patch controller for this window and initializes everything. * * This function MUST be called before using the window in any way! @@ -167,7 +163,6 @@ LoadPluginWindow::set_patch(SharedPtr<PatchModel> patch) _polyphonic_checkbutton->property_sensitive() = true;*/ } - /** Populates the plugin list on the first show. * * This is done here instead of construction time as the list population is @@ -192,7 +187,6 @@ LoadPluginWindow::on_show() Gtk::Window::on_show(); } - void LoadPluginWindow::set_plugins(SharedPtr<const ClientStore::Plugins> m) { @@ -210,7 +204,6 @@ LoadPluginWindow::set_plugins(SharedPtr<const ClientStore::Plugins> m) _plugins_treeview->columns_autosize(); } - void LoadPluginWindow::new_plugin(SharedPtr<PluginModel> pm) { @@ -220,7 +213,6 @@ LoadPluginWindow::new_plugin(SharedPtr<PluginModel> pm) _refresh_list = true; } - void LoadPluginWindow::set_row(Gtk::TreeModel::Row& row, SharedPtr<PluginModel> plugin) { @@ -248,7 +240,6 @@ LoadPluginWindow::set_row(Gtk::TreeModel::Row& row, SharedPtr<PluginModel> plugi row[_plugins_columns._col_plugin] = plugin; } - void LoadPluginWindow::add_plugin(SharedPtr<PluginModel> plugin) { @@ -267,18 +258,14 @@ LoadPluginWindow::add_plugin(SharedPtr<PluginModel> plugin) plugin->uri())); } - - ///// Event Handlers ////// - void LoadPluginWindow::plugin_activated(const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn* col) { add_clicked(); } - void LoadPluginWindow::plugin_selection_changed() { @@ -308,7 +295,6 @@ LoadPluginWindow::plugin_selection_changed() } } - /** Generate an automatic name for this Node. * * Offset is an offset of the number that will be appended to the plugin's @@ -325,7 +311,6 @@ LoadPluginWindow::generate_module_name(SharedPtr<PluginModel> plugin, int offset return ss.str(); } - void LoadPluginWindow::load_plugin(const Gtk::TreeModel::iterator& iter) { @@ -365,7 +350,6 @@ LoadPluginWindow::load_plugin(const Gtk::TreeModel::iterator& iter) } } - void LoadPluginWindow::add_clicked() { @@ -373,7 +357,6 @@ LoadPluginWindow::add_clicked() sigc::mem_fun(*this, &LoadPluginWindow::load_plugin)); } - void LoadPluginWindow::filter_changed() { @@ -429,7 +412,6 @@ LoadPluginWindow::filter_changed() } } - bool LoadPluginWindow::on_key_press_event(GdkEventKey* event) { @@ -441,7 +423,6 @@ LoadPluginWindow::on_key_press_event(GdkEventKey* event) } } - void LoadPluginWindow::plugin_property_changed(const URI& plugin, const URI& predicate, @@ -455,7 +436,6 @@ LoadPluginWindow::plugin_property_changed(const URI& plugin, } } - } // namespace GUI } // namespace Ingen |