/* * Remmina - The GTK+ Remote Desktop Client * Copyright (C) 2010 Vic Lee * Copyright (C) 2014-2015 Antenore Gatta, Fabio Castelli, Giovanni Panozzo * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307, USA. * * In addition, as a special exception, the copyright holders give * permission to link the code of portions of this program with the * OpenSSL library under certain conditions as described in each * individual source file, and distribute linked combinations * including the two. * You must obey the GNU General Public License in all respects * for all of the code used other than OpenSSL. * If you modify * file(s) with this exception, you may extend this exception to your * version of the file(s), but you are not obligated to do so. * If you * do not wish to do so, delete this exception statement from your * version. * If you delete this exception statement from all source * files in the program, then also delete it here. * */ #include "config.h" #include #include #include #include "remmina_main.h" #include "remmina_widget_pool.h" #include "remmina_pref_dialog.h" #include "remmina_file.h" #include "remmina_file_editor.h" #include "remmina_connection_window.h" #include "remmina_about.h" #include "remmina_plugin_manager.h" #include "remmina_exec.h" #include "remmina/remmina_trace_calls.h" void remmina_exec_command(RemminaCommandType command, const gchar* data) { TRACE_CALL("remmina_exec_command"); gchar* s1; gchar* s2; GtkWidget* widget; RemminaEntryPlugin* plugin; switch (command) { case REMMINA_COMMAND_MAIN: widget = remmina_widget_pool_find(REMMINA_TYPE_MAIN, NULL); if (widget) { gtk_window_present(GTK_WINDOW(widget)); gtk_window_deiconify(GTK_WINDOW(widget)); } else { widget = remmina_main_new(); gtk_widget_show(widget); } break; case REMMINA_COMMAND_PREF: widget = remmina_widget_pool_find(REMMINA_TYPE_PREF_DIALOG, NULL); if (widget) { gtk_window_present(GTK_WINDOW(widget)); } else { widget = remmina_pref_dialog_new(atoi(data)); gtk_widget_show(widget); } break; case REMMINA_COMMAND_NEW: s1 = (data ? strchr(data, ',') : NULL); if (s1) { s1 = g_strdup(data); s2 = strchr(s1, ','); *s2++ = '\0'; widget = remmina_file_editor_new_full(s2, s1); g_free(s1); } else { widget = remmina_file_editor_new_full(NULL, data); } gtk_widget_show(widget); break; case REMMINA_COMMAND_CONNECT: remmina_connection_window_open_from_filename(data); break; case REMMINA_COMMAND_EDIT: widget = remmina_file_editor_new_from_filename(data); if (widget) gtk_widget_show(widget); break; case REMMINA_COMMAND_ABOUT: remmina_about_open(NULL); break; case REMMINA_COMMAND_PLUGIN: plugin = (RemminaEntryPlugin*) remmina_plugin_manager_get_plugin(REMMINA_PLUGIN_TYPE_ENTRY, data); if (plugin) { plugin->entry_func(); } else { widget = gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, _("Plugin %s is not registered."), data); g_signal_connect(G_OBJECT(widget), "response", G_CALLBACK(gtk_widget_destroy), NULL); gtk_widget_show(widget); remmina_widget_pool_register(widget); } break; default: break; } }