/* $Id$ */ /* * Copyright (c) 2006 Jean-François Wauthy (pollux@xfce.org) * * 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 Library 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. */ #ifdef HAVE_CONFIG_H #include #endif #ifdef HAVE_STRING_H #include #endif #include #include #include "menueditor-edit-external-dialog.h" #define MENUEDITOR_EDIT_EXTERNAL_DIALOG_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), MENUEDITOR_TYPE_EDIT_EXTERNAL_DIALOG, MenuEditorEditExternalDialogPrivate)) /* private struct */ typedef struct { GtkWidget *label_src; GtkWidget *chooser_src; GtkWidget *label_style; GtkWidget *combo_style; GtkWidget *check_button_unique; } MenuEditorEditExternalDialogPrivate; /* prototypes */ static void menueditor_edit_external_dialog_class_init (MenuEditorEditExternalDialogClass *); static void menueditor_edit_external_dialog_init (MenuEditorEditExternalDialog *); /* globals */ static XfceTitledDialogClass *parent_class = NULL; /******************************/ /* MenuEditorEditExternalDialog class */ /******************************/ GtkType menueditor_edit_external_dialog_get_type (void) { static GtkType edit_external_dialog_type = 0; if (!edit_external_dialog_type) { static const GTypeInfo edit_external_dialog_info = { sizeof (MenuEditorEditExternalDialogClass), NULL, NULL, (GClassInitFunc) menueditor_edit_external_dialog_class_init, NULL, NULL, sizeof (MenuEditorEditExternalDialog), 0, (GInstanceInitFunc) menueditor_edit_external_dialog_init }; edit_external_dialog_type = g_type_register_static (XFCE_TYPE_TITLED_DIALOG, "MenuEditorEditExternalDialog", &edit_external_dialog_info, 0); } return edit_external_dialog_type; } static void menueditor_edit_external_dialog_class_init (MenuEditorEditExternalDialogClass * klass) { g_type_class_add_private (klass, sizeof (MenuEditorEditExternalDialogPrivate)); parent_class = g_type_class_peek_parent (klass); } static void menueditor_edit_external_dialog_init (MenuEditorEditExternalDialog * dialog) { MenuEditorEditExternalDialogPrivate *priv = MENUEDITOR_EDIT_EXTERNAL_DIALOG_GET_PRIVATE (dialog); GtkWidget *table; gchar *label_text = NULL; GtkFileFilter *filter; gtk_window_set_title (GTK_WINDOW (dialog), _("Edit external menu entry")); gtk_window_set_destroy_with_parent (GTK_WINDOW (dialog), TRUE); gtk_window_set_icon_name (GTK_WINDOW (dialog), GTK_STOCK_EDIT); /* table */ table = gtk_table_new (3, 2, FALSE); gtk_table_set_row_spacings (GTK_TABLE (table), 5); gtk_table_set_col_spacings (GTK_TABLE (table), 5); gtk_container_set_border_width (GTK_CONTAINER (table), 10); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), table, TRUE, TRUE, 0); gtk_widget_show (table); /* Source */ priv->label_src = gtk_label_new (_("Source:")); label_text = g_strdup_printf ("%s", _("Source:")); gtk_label_set_markup (GTK_LABEL (priv->label_src), label_text); g_free (label_text); gtk_misc_set_alignment (GTK_MISC (priv->label_src), 1.0f, 0.5f); gtk_widget_show (priv->label_src); gtk_table_attach (GTK_TABLE (table), priv->label_src, 0, 1, 0, 1, GTK_FILL, GTK_FILL, 0, 0); priv->chooser_src = gtk_file_chooser_button_new (_("Select external menu"), GTK_FILE_CHOOSER_ACTION_OPEN); gtk_widget_show (priv->chooser_src); gtk_table_attach (GTK_TABLE (table), priv->chooser_src, 1, 2, 0, 1, GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 6); filter = gtk_file_filter_new (); gtk_file_filter_set_name (filter, _("All Files")); gtk_file_filter_add_pattern (filter, "*"); gtk_file_chooser_add_filter (GTK_FILE_CHOOSER(priv->chooser_src), filter); filter = gtk_file_filter_new (); gtk_file_filter_set_name (filter, _("Menu Files")); gtk_file_filter_add_pattern (filter, "*.xml"); gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (priv->chooser_src), filter); gtk_file_chooser_set_filter (GTK_FILE_CHOOSER (priv->chooser_src), filter); gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (priv->chooser_src), TRUE); gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (priv->chooser_src), xfce_get_homedir ()); /* Style */ priv->label_style = gtk_label_new (_("Style:")); label_text = g_strdup_printf ("%s", _("Style:")); gtk_label_set_markup (GTK_LABEL (priv->label_style), label_text); g_free (label_text); gtk_misc_set_alignment (GTK_MISC (priv->label_style), 1.0f, 0.5f); gtk_widget_show (priv->label_style); gtk_table_attach (GTK_TABLE (table), priv->label_style, 0, 1, 1, 2, GTK_FILL, GTK_FILL, 0, 0); priv->combo_style = gtk_combo_box_new_text (); gtk_widget_show (priv->combo_style); gtk_combo_box_append_text (GTK_COMBO_BOX (priv->combo_style), _("Simple")); gtk_combo_box_append_text (GTK_COMBO_BOX (priv->combo_style), _("Multilevel")); gtk_combo_box_set_active (GTK_COMBO_BOX (priv->combo_style), 0); gtk_table_attach (GTK_TABLE (table), priv->combo_style, 1, 2, 1, 2, GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 6); /* Unique check button */ priv->check_button_unique = gtk_check_button_new_with_mnemonic (_("_Unique entries only")); gtk_widget_show (priv->check_button_unique); gtk_table_attach (GTK_TABLE (table), priv->check_button_unique, 1, 2, 2, 3, GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 0); gtk_dialog_add_buttons (GTK_DIALOG (dialog), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OK, GTK_RESPONSE_OK, NULL); gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK); } /******************/ /* public methods */ /******************/ GtkWidget * menueditor_edit_external_dialog_new (GtkWindow *parent) { GtkWidget *obj = NULL; MenuEditorEditExternalDialogPrivate *priv; obj = g_object_new (menueditor_edit_external_dialog_get_type (), NULL); priv = MENUEDITOR_EDIT_EXTERNAL_DIALOG_GET_PRIVATE (obj); if (parent) gtk_window_set_transient_for (GTK_WINDOW (obj), parent); return obj; } gchar * menueditor_edit_external_dialog_get_entry_source (MenuEditorEditExternalDialog *dialog) { MenuEditorEditExternalDialogPrivate *priv = MENUEDITOR_EDIT_EXTERNAL_DIALOG_GET_PRIVATE (dialog); return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (priv->chooser_src)); } ExternalEntryStyle menueditor_edit_external_dialog_get_entry_style (MenuEditorEditExternalDialog *dialog) { MenuEditorEditExternalDialogPrivate *priv = MENUEDITOR_EDIT_EXTERNAL_DIALOG_GET_PRIVATE (dialog); return gtk_combo_box_get_active (GTK_COMBO_BOX (priv->combo_style)); } gboolean menueditor_edit_external_dialog_get_entry_unique (MenuEditorEditExternalDialog *dialog) { MenuEditorEditExternalDialogPrivate *priv = MENUEDITOR_EDIT_EXTERNAL_DIALOG_GET_PRIVATE (dialog); return gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->check_button_unique)); } void menueditor_edit_external_dialog_set_entry_type (MenuEditorEditExternalDialog *dialog, EntryType type) { MenuEditorEditExternalDialogPrivate *priv = MENUEDITOR_EDIT_EXTERNAL_DIALOG_GET_PRIVATE (dialog); if (type == INCLUDE_FILE) { gtk_widget_show (priv->label_src); gtk_widget_show (priv->chooser_src); gtk_widget_hide (priv->label_style); gtk_widget_hide (priv->combo_style); gtk_widget_hide (priv->check_button_unique); } else if (type == INCLUDE_SYSTEM) { gtk_widget_hide (priv->label_src); gtk_widget_hide (priv->chooser_src); gtk_widget_show (priv->label_style); gtk_widget_show (priv->combo_style); gtk_widget_show (priv->check_button_unique); } else g_warning ("Wrong entry type : not an external entry"); } void menueditor_edit_external_dialog_set_entry_source (MenuEditorEditExternalDialog *dialog, const gchar *source) { MenuEditorEditExternalDialogPrivate *priv = MENUEDITOR_EDIT_EXTERNAL_DIALOG_GET_PRIVATE (dialog); if (source) gtk_file_chooser_select_filename (GTK_FILE_CHOOSER (priv->chooser_src), source); } void menueditor_edit_external_dialog_set_entry_style (MenuEditorEditExternalDialog *dialog, ExternalEntryStyle style) { MenuEditorEditExternalDialogPrivate *priv = MENUEDITOR_EDIT_EXTERNAL_DIALOG_GET_PRIVATE (dialog); gtk_combo_box_set_active (GTK_COMBO_BOX (priv->combo_style), style); } void menueditor_edit_external_dialog_set_entry_unique (MenuEditorEditExternalDialog *dialog, gboolean unique) { MenuEditorEditExternalDialogPrivate *priv = MENUEDITOR_EDIT_EXTERNAL_DIALOG_GET_PRIVATE (dialog); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (priv->check_button_unique), unique); }