/* * Remmina - The GTK+ Remote Desktop Client * Copyright (C) 2010 Vic Lee * * 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. */ #include "config.h" #include #include #include #include "remminamain.h" #include "remminawidgetpool.h" #include "remminaprefdialog.h" #include "remminafile.h" #include "remminafileeditor.h" #include "remminaconnectionwindow.h" #include "remminaabout.h" #include "remminapluginmanager.h" #include "remminaexec.h" void remmina_exec_command (RemminaCommandType command, const gchar *data) { GtkWidget *widget; gchar *s1, *s2; 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; } }