summaryrefslogtreecommitdiffstats
path: root/gedit/gedit-file-chooser-open-dialog.c
blob: 1975f51f96961112973f4bb84c122eae1ad1e229 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
 * This file is part of gedit
 *
 * Copyright (C) 2020 Sébastien Wilmet <swilmet@gnome.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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
 */

#include "gedit-file-chooser-open-dialog.h"
#include <glib/gi18n.h>
#include "gedit-encodings-combo-box.h"

/* A GtkFileChooserDialog to *open* files. */

struct _GeditFileChooserOpenDialogPrivate
{
	GeditEncodingsComboBox *encodings_combo_box;
};

G_DEFINE_TYPE_WITH_PRIVATE (GeditFileChooserOpenDialog, _gedit_file_chooser_open_dialog, GEDIT_TYPE_FILE_CHOOSER_OPEN)

static void
setup_encoding_extra_widget (GeditFileChooserOpenDialog *chooser,
			     GtkFileChooser             *gtk_chooser)
{
	GtkWidget *label;
	GtkWidget *encodings_combo_box;
	GtkWidget *hgrid;

	g_assert (chooser->priv->encodings_combo_box == NULL);

	label = gtk_label_new_with_mnemonic (_("C_haracter Encoding:"));
	encodings_combo_box = gedit_encodings_combo_box_new (FALSE);
	gtk_label_set_mnemonic_widget (GTK_LABEL (label), encodings_combo_box);

	hgrid = gtk_grid_new ();
	gtk_grid_set_column_spacing (GTK_GRID (hgrid), 6);
	gtk_container_add (GTK_CONTAINER (hgrid), label);
	gtk_container_add (GTK_CONTAINER (hgrid), encodings_combo_box);

	chooser->priv->encodings_combo_box = GEDIT_ENCODINGS_COMBO_BOX (encodings_combo_box);
	g_object_ref_sink (chooser->priv->encodings_combo_box);

	gtk_widget_show_all (hgrid);
	gtk_file_chooser_set_extra_widget (gtk_chooser, hgrid);
}

static void
_gedit_file_chooser_open_dialog_dispose (GObject *object)
{
	GeditFileChooserOpenDialog *chooser = GEDIT_FILE_CHOOSER_OPEN_DIALOG (object);

	g_clear_object (&chooser->priv->encodings_combo_box);

	G_OBJECT_CLASS (_gedit_file_chooser_open_dialog_parent_class)->dispose (object);
}

static GtkFileChooser *
chooser_create_gtk_file_chooser (GeditFileChooser *chooser)
{
	GtkWidget *file_chooser;

	/* Translators: "Open Files" is the title of the file chooser window. */
	file_chooser = gtk_file_chooser_dialog_new (C_("window title", "Open Files"),
						    NULL,
						    GTK_FILE_CHOOSER_ACTION_OPEN,
						    _("_Cancel"), GTK_RESPONSE_CANCEL,
						    _("_Open"), GTK_RESPONSE_ACCEPT,
						    NULL);

	gtk_dialog_set_default_response (GTK_DIALOG (file_chooser), GTK_RESPONSE_ACCEPT);

	setup_encoding_extra_widget (GEDIT_FILE_CHOOSER_OPEN_DIALOG (chooser),
				     GTK_FILE_CHOOSER (file_chooser));

	if (g_object_is_floating (file_chooser))
	{
		g_object_ref_sink (file_chooser);
	}

	return GTK_FILE_CHOOSER (file_chooser);
}

static const GtkSourceEncoding *
chooser_get_encoding (GeditFileChooser *_chooser)
{
	GeditFileChooserOpenDialog *chooser = GEDIT_FILE_CHOOSER_OPEN_DIALOG (_chooser);

	return gedit_encodings_combo_box_get_selected_encoding (chooser->priv->encodings_combo_box);
}

static void
_gedit_file_chooser_open_dialog_class_init (GeditFileChooserOpenDialogClass *klass)
{
	GObjectClass *object_class = G_OBJECT_CLASS (klass);
	GeditFileChooserClass *file_chooser_class = GEDIT_FILE_CHOOSER_CLASS (klass);

	object_class->dispose = _gedit_file_chooser_open_dialog_dispose;

	file_chooser_class->create_gtk_file_chooser = chooser_create_gtk_file_chooser;
	file_chooser_class->get_encoding = chooser_get_encoding;
}

static void
_gedit_file_chooser_open_dialog_init (GeditFileChooserOpenDialog *chooser)
{
	chooser->priv = _gedit_file_chooser_open_dialog_get_instance_private (chooser);
}

GeditFileChooserOpen *
_gedit_file_chooser_open_dialog_new (void)
{
	return g_object_new (GEDIT_TYPE_FILE_CHOOSER_OPEN_DIALOG, NULL);
}