summaryrefslogtreecommitdiffstats
path: root/src/gui/ConnectWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/ConnectWindow.cpp')
-rw-r--r--src/gui/ConnectWindow.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/gui/ConnectWindow.cpp b/src/gui/ConnectWindow.cpp
index a4bf3e43..e314d1aa 100644
--- a/src/gui/ConnectWindow.cpp
+++ b/src/gui/ConnectWindow.cpp
@@ -54,7 +54,6 @@ namespace Raul { class Deletable; }
namespace Ingen {
namespace GUI {
-
ConnectWindow::ConnectWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& xml)
: Dialog(cobject)
, _xml(xml)
@@ -68,7 +67,6 @@ ConnectWindow::ConnectWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::
{
}
-
void
ConnectWindow::start(Ingen::Shared::World* world)
{
@@ -85,7 +83,6 @@ ConnectWindow::start(Ingen::Shared::World* world)
connect(true);
}
-
void
ConnectWindow::set_connected_to(SharedPtr<Shared::EngineInterface> engine)
{
@@ -128,7 +125,6 @@ ConnectWindow::set_connected_to(SharedPtr<Shared::EngineInterface> engine)
}
}
-
void
ConnectWindow::set_connecting_widget_states()
{
@@ -145,7 +141,6 @@ ConnectWindow::set_connecting_widget_states()
_port_spinbutton->set_sensitive(false);
}
-
/** Launch (if applicable) and connect to the Engine.
*
* This will create the EngineInterface and ClientInterface and initialize
@@ -264,7 +259,6 @@ ConnectWindow::connect(bool existing)
}
}
-
void
ConnectWindow::disconnect()
{
@@ -285,21 +279,18 @@ ConnectWindow::disconnect()
_disconnect_button->set_sensitive(false);
}
-
void
ConnectWindow::activate()
{
App::instance().engine()->activate();
}
-
void
ConnectWindow::deactivate()
{
App::instance().engine()->deactivate();
}
-
void
ConnectWindow::on_show()
{
@@ -312,7 +303,6 @@ ConnectWindow::on_show()
Gtk::Dialog::on_show();
}
-
void
ConnectWindow::load_widgets()
{
@@ -346,7 +336,6 @@ ConnectWindow::load_widgets()
server_toggled();
}
-
void
ConnectWindow::on_hide()
{
@@ -355,7 +344,6 @@ ConnectWindow::on_hide()
quit();
}
-
void
ConnectWindow::quit_clicked()
{
@@ -363,7 +351,6 @@ ConnectWindow::quit_clicked()
_quit_flag = true;
}
-
void
ConnectWindow::server_toggled()
{
@@ -372,7 +359,6 @@ ConnectWindow::server_toggled()
_mode = CONNECT_REMOTE;
}
-
void
ConnectWindow::launch_toggled()
{
@@ -381,7 +367,6 @@ ConnectWindow::launch_toggled()
_mode = LAUNCH_REMOTE;
}
-
void
ConnectWindow::internal_toggled()
{
@@ -390,7 +375,6 @@ ConnectWindow::internal_toggled()
_mode = INTERNAL;
}
-
bool
ConnectWindow::gtk_callback()
{
@@ -489,7 +473,6 @@ ConnectWindow::gtk_callback()
}
}
-
void
ConnectWindow::quit()
{
@@ -497,6 +480,5 @@ ConnectWindow::quit()
Gtk::Main::quit();
}
-
} // namespace GUI
} // namespace Ingen