gem-graph-client/libide/gui/ide-environment-editor-row.c

279 lines
8.3 KiB
C
Raw Normal View History

/* ide-environment-editor-row.c
*
* Copyright 2016-2019 Christian Hergert <christian@hergert.me>
*
* 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 3 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/>.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#define G_LOG_DOMAIN "ide-environment-editor-row"
#include "config.h"
#include "ide-environment-editor-row.h"
struct _IdeEnvironmentEditorRow
{
GtkListBoxRow parent_instance;
IdeEnvironmentVariable *variable;
GtkEntry *key_entry;
GtkEntry *value_entry;
GtkButton *delete_button;
GBinding *key_binding;
GBinding *value_binding;
};
enum {
PROP_0,
PROP_VARIABLE,
LAST_PROP
};
enum {
DELETE,
LAST_SIGNAL
};
G_DEFINE_FINAL_TYPE (IdeEnvironmentEditorRow, ide_environment_editor_row, GTK_TYPE_LIST_BOX_ROW)
static GParamSpec *properties [LAST_PROP];
static guint signals [LAST_SIGNAL];
static gboolean
null_safe_mapping (GBinding *binding,
const GValue *from_value,
GValue *to_value,
gpointer user_data)
{
const gchar *str = g_value_get_string (from_value);
g_value_set_string (to_value, str ?: "");
return TRUE;
}
static void
ide_environment_editor_row_connect (IdeEnvironmentEditorRow *self)
{
g_assert (IDE_IS_ENVIRONMENT_EDITOR_ROW (self));
g_assert (IDE_IS_ENVIRONMENT_VARIABLE (self->variable));
self->key_binding =
g_object_bind_property_full (self->variable, "key", self->key_entry, "text",
G_BINDING_SYNC_CREATE | G_BINDING_BIDIRECTIONAL,
null_safe_mapping, NULL, NULL, NULL);
self->value_binding =
g_object_bind_property_full (self->variable, "value", self->value_entry, "text",
G_BINDING_SYNC_CREATE | G_BINDING_BIDIRECTIONAL,
null_safe_mapping, NULL, NULL, NULL);
}
static void
ide_environment_editor_row_disconnect (IdeEnvironmentEditorRow *self)
{
g_assert (IDE_IS_ENVIRONMENT_EDITOR_ROW (self));
g_assert (IDE_IS_ENVIRONMENT_VARIABLE (self->variable));
g_clear_pointer (&self->key_binding, g_binding_unbind);
g_clear_pointer (&self->value_binding, g_binding_unbind);
}
static void
delete_button_clicked (GtkButton *button,
IdeEnvironmentEditorRow *self)
{
g_assert (GTK_IS_BUTTON (button));
g_assert (IDE_IS_ENVIRONMENT_EDITOR_ROW (self));
g_signal_emit (self, signals [DELETE], 0);
}
static void
key_entry_activate (GtkWidget *entry,
IdeEnvironmentEditorRow *self)
{
g_assert (GTK_IS_ENTRY (entry));
g_assert (IDE_IS_ENVIRONMENT_EDITOR_ROW (self));
gtk_widget_grab_focus (GTK_WIDGET (self->value_entry));
}
static void
value_entry_activate (GtkWidget *entry,
IdeEnvironmentEditorRow *self)
{
GtkWidget *parent;
g_assert (GTK_IS_ENTRY (entry));
g_assert (IDE_IS_ENVIRONMENT_EDITOR_ROW (self));
gtk_widget_grab_focus (GTK_WIDGET (self));
parent = gtk_widget_get_ancestor (GTK_WIDGET (self), GTK_TYPE_LIST_BOX);
g_signal_emit_by_name (parent, "move-cursor", GTK_MOVEMENT_DISPLAY_LINES, 1);
}
static void
ide_environment_editor_row_destroy (GtkWidget *widget)
{
IdeEnvironmentEditorRow *self = (IdeEnvironmentEditorRow *)widget;
if (self->variable != NULL)
{
ide_environment_editor_row_disconnect (self);
g_clear_object (&self->variable);
}
GTK_WIDGET_CLASS (ide_environment_editor_row_parent_class)->destroy (widget);
}
static void
ide_environment_editor_row_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
IdeEnvironmentEditorRow *self = IDE_ENVIRONMENT_EDITOR_ROW (object);
switch (prop_id)
{
case PROP_VARIABLE:
g_value_set_object (value, ide_environment_editor_row_get_variable (self));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
ide_environment_editor_row_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
IdeEnvironmentEditorRow *self = IDE_ENVIRONMENT_EDITOR_ROW (object);
switch (prop_id)
{
case PROP_VARIABLE:
ide_environment_editor_row_set_variable (self, g_value_get_object (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
ide_environment_editor_row_class_init (IdeEnvironmentEditorRowClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
object_class->get_property = ide_environment_editor_row_get_property;
object_class->set_property = ide_environment_editor_row_set_property;
widget_class->destroy = ide_environment_editor_row_destroy;
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/libide-gui/ui/ide-environment-editor-row.ui");
gtk_widget_class_bind_template_child (widget_class, IdeEnvironmentEditorRow, delete_button);
gtk_widget_class_bind_template_child (widget_class, IdeEnvironmentEditorRow, key_entry);
gtk_widget_class_bind_template_child (widget_class, IdeEnvironmentEditorRow, value_entry);
properties [PROP_VARIABLE] =
g_param_spec_object ("variable",
"Variable",
"Variable",
IDE_TYPE_ENVIRONMENT_VARIABLE,
(G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
g_object_class_install_properties (object_class, LAST_PROP, properties);
signals [DELETE] =
g_signal_new ("delete",
G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST,
0, NULL, NULL, NULL, G_TYPE_NONE, 0);
}
static void
ide_environment_editor_row_init (IdeEnvironmentEditorRow *self)
{
gtk_widget_init_template (GTK_WIDGET (self));
g_signal_connect (self->delete_button,
"clicked",
G_CALLBACK (delete_button_clicked),
self);
g_signal_connect (self->key_entry,
"activate",
G_CALLBACK (key_entry_activate),
self);
g_signal_connect (self->value_entry,
"activate",
G_CALLBACK (value_entry_activate),
self);
}
/**
* ide_environment_editor_row_get_variable:
*
* Returns: (transfer none) (nullable): An #IdeEnvironmentVariable.
*/
IdeEnvironmentVariable *
ide_environment_editor_row_get_variable (IdeEnvironmentEditorRow *self)
{
g_return_val_if_fail (IDE_IS_ENVIRONMENT_EDITOR_ROW (self), NULL);
return self->variable;
}
void
ide_environment_editor_row_set_variable (IdeEnvironmentEditorRow *self,
IdeEnvironmentVariable *variable)
{
g_return_if_fail (IDE_IS_ENVIRONMENT_EDITOR_ROW (self));
g_return_if_fail (!variable || IDE_IS_ENVIRONMENT_VARIABLE (variable));
if (variable != self->variable)
{
if (self->variable != NULL)
{
ide_environment_editor_row_disconnect (self);
g_clear_object (&self->variable);
}
if (variable != NULL)
{
self->variable = g_object_ref (variable);
ide_environment_editor_row_connect (self);
}
g_object_notify_by_pspec (G_OBJECT (self), properties [PROP_VARIABLE]);
}
}
void
ide_environment_editor_row_start_editing (IdeEnvironmentEditorRow *self)
{
g_return_if_fail (IDE_IS_ENVIRONMENT_EDITOR_ROW (self));
gtk_widget_grab_focus (GTK_WIDGET (self->key_entry));
}