2014-05-03 01:48:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013 Intel Corporation
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included
|
|
|
|
* in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2014-05-07 04:13:00 +00:00
|
|
|
#include "config.h"
|
2014-05-09 02:19:21 +00:00
|
|
|
#include <glib/gi18n-lib.h>
|
2014-05-03 01:48:33 +00:00
|
|
|
|
2014-07-12 03:14:04 +00:00
|
|
|
#include "css-editor.h"
|
|
|
|
|
|
|
|
#include "gtkcssprovider.h"
|
|
|
|
#include "gtkstyleprovider.h"
|
|
|
|
#include "gtkstylecontext.h"
|
|
|
|
#include "gtktextview.h"
|
|
|
|
#include "gtkmessagedialog.h"
|
|
|
|
#include "gtkfilechooserdialog.h"
|
2014-11-22 18:26:53 +00:00
|
|
|
#include "gtktogglebutton.h"
|
|
|
|
#include "gtklabel.h"
|
2014-07-12 03:14:04 +00:00
|
|
|
|
2014-05-07 03:24:20 +00:00
|
|
|
#define GTK_INSPECTOR_CSS_EDITOR_TEXT "inspector-css-editor-text"
|
|
|
|
#define GTK_INSPECTOR_CSS_EDITOR_PROVIDER "inspector-css-editor-provider"
|
2014-05-03 01:48:33 +00:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
COLUMN_ENABLED,
|
|
|
|
COLUMN_NAME,
|
2014-05-04 18:53:17 +00:00
|
|
|
COLUMN_USER
|
2014-05-03 01:48:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_GLOBAL
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
gboolean enabled;
|
|
|
|
gboolean user;
|
2014-05-07 03:24:20 +00:00
|
|
|
} GtkInspectorCssEditorByContext;
|
2014-05-03 01:48:33 +00:00
|
|
|
|
2014-05-07 03:24:20 +00:00
|
|
|
struct _GtkInspectorCssEditorPrivate
|
2014-05-03 01:48:33 +00:00
|
|
|
{
|
2014-05-04 18:53:17 +00:00
|
|
|
GtkWidget *view;
|
2014-11-22 18:26:53 +00:00
|
|
|
GtkWidget *object_title;
|
2014-05-03 01:48:33 +00:00
|
|
|
GtkTextBuffer *text;
|
|
|
|
GtkCssProvider *provider;
|
|
|
|
gboolean global;
|
2014-05-09 02:19:21 +00:00
|
|
|
GtkStyleContext *context;
|
2014-11-22 18:26:53 +00:00
|
|
|
GtkToggleButton *disable_button;
|
2014-06-03 13:44:28 +00:00
|
|
|
guint timeout;
|
2014-05-03 01:48:33 +00:00
|
|
|
};
|
|
|
|
|
2014-09-26 03:05:15 +00:00
|
|
|
static void gtk_inspector_css_editor_remove_dead_object (gpointer data,
|
|
|
|
GObject *dead_object);
|
|
|
|
|
2014-05-07 03:24:20 +00:00
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GtkInspectorCssEditor, gtk_inspector_css_editor, GTK_TYPE_BOX)
|
2014-05-03 01:48:33 +00:00
|
|
|
|
|
|
|
static void
|
2014-05-09 02:19:21 +00:00
|
|
|
set_initial_text (GtkInspectorCssEditor *ce)
|
2014-05-04 18:53:17 +00:00
|
|
|
{
|
|
|
|
const gchar *text = NULL;
|
|
|
|
|
2014-05-09 02:19:21 +00:00
|
|
|
if (ce->priv->context)
|
|
|
|
text = g_object_get_data (G_OBJECT (ce->priv->context), GTK_INSPECTOR_CSS_EDITOR_TEXT);
|
2014-05-04 18:53:17 +00:00
|
|
|
if (text)
|
2014-05-09 02:19:21 +00:00
|
|
|
gtk_text_buffer_set_text (GTK_TEXT_BUFFER (ce->priv->text), text, -1);
|
2014-05-04 18:53:17 +00:00
|
|
|
else
|
2014-05-07 04:13:00 +00:00
|
|
|
{
|
|
|
|
gchar *initial_text;
|
2014-05-09 02:19:21 +00:00
|
|
|
if (ce->priv->global)
|
2014-05-07 04:13:00 +00:00
|
|
|
initial_text = g_strconcat ("/*\n",
|
|
|
|
_("You can type here any CSS rule recognized by GTK+."), "\n",
|
2014-08-22 15:09:21 +00:00
|
|
|
_("You can temporarily disable this custom CSS by clicking on the “Pause” button above."), "\n\n",
|
2014-05-07 04:13:00 +00:00
|
|
|
_("Changes are applied instantly and globally, for the whole application."), "\n",
|
|
|
|
"*/\n\n", NULL);
|
|
|
|
else
|
|
|
|
initial_text = g_strconcat ("/*\n",
|
|
|
|
_("You can type here any CSS rule recognized by GTK+."), "\n",
|
2014-08-22 15:09:21 +00:00
|
|
|
_("You can temporarily disable this custom CSS by clicking on the “Pause” button above."), "\n\n",
|
2014-05-07 04:13:00 +00:00
|
|
|
_("Changes are applied instantly, only for this selected widget."), "\n",
|
|
|
|
"*/\n\n", NULL);
|
2014-05-09 02:19:21 +00:00
|
|
|
gtk_text_buffer_set_text (GTK_TEXT_BUFFER (ce->priv->text), initial_text, -1);
|
2014-05-07 04:13:00 +00:00
|
|
|
g_free (initial_text);
|
|
|
|
}
|
2014-05-04 18:53:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-11-22 18:26:53 +00:00
|
|
|
disable_toggled (GtkToggleButton *button,
|
2014-05-09 02:19:21 +00:00
|
|
|
GtkInspectorCssEditor *ce)
|
2014-05-03 01:48:33 +00:00
|
|
|
{
|
2014-11-22 18:26:53 +00:00
|
|
|
if (gtk_toggle_button_get_active (button))
|
2014-05-03 01:48:33 +00:00
|
|
|
{
|
2014-05-09 02:19:21 +00:00
|
|
|
if (ce->priv->global)
|
2014-05-04 18:53:17 +00:00
|
|
|
gtk_style_context_remove_provider_for_screen (gdk_screen_get_default (),
|
2014-05-09 02:19:21 +00:00
|
|
|
GTK_STYLE_PROVIDER (ce->priv->provider));
|
|
|
|
else if (ce->priv->context)
|
|
|
|
gtk_style_context_remove_provider (ce->priv->context,
|
|
|
|
GTK_STYLE_PROVIDER (g_object_get_data (G_OBJECT (ce->priv->context), GTK_INSPECTOR_CSS_EDITOR_PROVIDER)));
|
2014-05-03 01:48:33 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-05-09 02:19:21 +00:00
|
|
|
if (ce->priv->global)
|
2014-05-04 18:53:17 +00:00
|
|
|
gtk_style_context_add_provider_for_screen (gdk_screen_get_default (),
|
2014-05-09 02:19:21 +00:00
|
|
|
GTK_STYLE_PROVIDER (ce->priv->provider),
|
2014-05-04 18:53:17 +00:00
|
|
|
GTK_STYLE_PROVIDER_PRIORITY_USER);
|
2014-05-09 02:19:21 +00:00
|
|
|
else if (ce->priv->context)
|
|
|
|
gtk_style_context_add_provider (ce->priv->context,
|
|
|
|
GTK_STYLE_PROVIDER (g_object_get_data (G_OBJECT (ce->priv->context), GTK_INSPECTOR_CSS_EDITOR_PROVIDER)),
|
2014-05-04 18:53:17 +00:00
|
|
|
G_MAXUINT);
|
2014-05-03 01:48:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-31 00:35:43 +00:00
|
|
|
static gchar *
|
|
|
|
get_current_text (GtkTextBuffer *buffer)
|
|
|
|
{
|
|
|
|
GtkTextIter start, end;
|
|
|
|
|
|
|
|
gtk_text_buffer_get_start_iter (buffer, &start);
|
|
|
|
gtk_text_buffer_get_end_iter (buffer, &end);
|
|
|
|
gtk_text_buffer_remove_all_tags (buffer, &start, &end);
|
|
|
|
|
|
|
|
return gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
save_to_file (GtkInspectorCssEditor *ce,
|
|
|
|
const gchar *filename)
|
|
|
|
{
|
|
|
|
gchar *text;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
text = get_current_text (ce->priv->text);
|
|
|
|
|
|
|
|
if (!g_file_set_contents (filename, text, -1, &error))
|
|
|
|
{
|
|
|
|
GtkWidget *dialog;
|
|
|
|
|
|
|
|
dialog = gtk_message_dialog_new (GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (ce))),
|
|
|
|
GTK_DIALOG_MODAL|GTK_DIALOG_DESTROY_WITH_PARENT,
|
|
|
|
GTK_MESSAGE_INFO,
|
|
|
|
GTK_BUTTONS_OK,
|
|
|
|
_("Saving CSS failed"));
|
|
|
|
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
|
|
|
|
"%s", error->message);
|
|
|
|
g_signal_connect (dialog, "response", G_CALLBACK (gtk_widget_destroy), NULL);
|
|
|
|
gtk_widget_show (dialog);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (text);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
save_response (GtkWidget *dialog,
|
|
|
|
gint response,
|
|
|
|
GtkInspectorCssEditor *ce)
|
|
|
|
{
|
|
|
|
gtk_widget_hide (dialog);
|
|
|
|
|
|
|
|
if (response == GTK_RESPONSE_ACCEPT)
|
|
|
|
{
|
|
|
|
gchar *filename;
|
|
|
|
|
|
|
|
filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
|
|
|
|
save_to_file (ce, filename);
|
|
|
|
g_free (filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_widget_destroy (dialog);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-11-22 18:26:53 +00:00
|
|
|
save_clicked (GtkButton *button,
|
2014-05-31 00:35:43 +00:00
|
|
|
GtkInspectorCssEditor *ce)
|
|
|
|
{
|
|
|
|
GtkWidget *dialog;
|
|
|
|
|
|
|
|
dialog = gtk_file_chooser_dialog_new ("",
|
|
|
|
GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (ce))),
|
|
|
|
GTK_FILE_CHOOSER_ACTION_SAVE,
|
|
|
|
_("_Cancel"), GTK_RESPONSE_CANCEL,
|
|
|
|
_("_Save"), GTK_RESPONSE_ACCEPT,
|
|
|
|
NULL);
|
2014-07-29 11:38:54 +00:00
|
|
|
gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (dialog), "custom.css");
|
2014-05-31 00:35:43 +00:00
|
|
|
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_ACCEPT);
|
|
|
|
gtk_window_set_modal (GTK_WINDOW (dialog), TRUE);
|
|
|
|
gtk_file_chooser_set_do_overwrite_confirmation (GTK_FILE_CHOOSER (dialog), TRUE);
|
|
|
|
g_signal_connect (dialog, "response", G_CALLBACK (save_response), ce);
|
|
|
|
gtk_widget_show (dialog);
|
|
|
|
}
|
|
|
|
|
2014-05-03 01:48:33 +00:00
|
|
|
static void
|
2014-06-03 13:44:28 +00:00
|
|
|
update_style (GtkInspectorCssEditor *ce)
|
2014-05-03 01:48:33 +00:00
|
|
|
{
|
|
|
|
GtkCssProvider *provider;
|
2014-05-04 18:53:17 +00:00
|
|
|
gchar *text;
|
2014-05-03 01:48:33 +00:00
|
|
|
|
2014-05-09 02:19:21 +00:00
|
|
|
if (ce->priv->global)
|
|
|
|
provider = ce->priv->provider;
|
|
|
|
else if (ce->priv->context)
|
|
|
|
provider = g_object_get_data (G_OBJECT (ce->priv->context), GTK_INSPECTOR_CSS_EDITOR_PROVIDER);
|
2014-05-03 01:48:33 +00:00
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
2014-06-03 13:44:28 +00:00
|
|
|
text = get_current_text (ce->priv->text);
|
2014-05-03 01:48:33 +00:00
|
|
|
gtk_css_provider_load_from_data (provider, text, -1, NULL);
|
|
|
|
g_free (text);
|
|
|
|
|
|
|
|
gtk_style_context_reset_widgets (gdk_screen_get_default ());
|
|
|
|
}
|
|
|
|
|
2014-06-03 13:44:28 +00:00
|
|
|
static gboolean
|
|
|
|
update_timeout (gpointer data)
|
|
|
|
{
|
|
|
|
GtkInspectorCssEditor *ce = data;
|
|
|
|
|
|
|
|
ce->priv->timeout = 0;
|
|
|
|
|
|
|
|
update_style (ce);
|
|
|
|
|
|
|
|
return G_SOURCE_REMOVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
text_changed (GtkTextBuffer *buffer,
|
|
|
|
GtkInspectorCssEditor *ce)
|
|
|
|
{
|
|
|
|
if (ce->priv->timeout != 0)
|
|
|
|
g_source_remove (ce->priv->timeout);
|
|
|
|
|
|
|
|
ce->priv->timeout = g_timeout_add (100, update_timeout, ce);
|
|
|
|
}
|
|
|
|
|
2014-05-03 01:48:33 +00:00
|
|
|
static void
|
2014-05-07 03:24:20 +00:00
|
|
|
show_parsing_error (GtkCssProvider *provider,
|
|
|
|
GtkCssSection *section,
|
|
|
|
const GError *error,
|
2014-05-09 02:19:21 +00:00
|
|
|
GtkInspectorCssEditor *ce)
|
2014-05-03 01:48:33 +00:00
|
|
|
{
|
|
|
|
GtkTextIter start, end;
|
|
|
|
const char *tag_name;
|
2014-05-09 02:19:21 +00:00
|
|
|
GtkTextBuffer *buffer = GTK_TEXT_BUFFER (ce->priv->text);
|
2014-05-03 01:48:33 +00:00
|
|
|
|
2015-10-15 12:10:00 +00:00
|
|
|
gtk_text_buffer_get_iter_at_line_index (buffer,
|
|
|
|
&start,
|
|
|
|
gtk_css_section_get_start_line (section),
|
|
|
|
gtk_css_section_get_start_position (section));
|
|
|
|
gtk_text_buffer_get_iter_at_line_index (buffer,
|
|
|
|
&end,
|
|
|
|
gtk_css_section_get_end_line (section),
|
|
|
|
gtk_css_section_get_end_position (section));
|
2014-05-03 01:48:33 +00:00
|
|
|
|
|
|
|
if (g_error_matches (error, GTK_CSS_PROVIDER_ERROR, GTK_CSS_PROVIDER_ERROR_DEPRECATED))
|
|
|
|
tag_name = "warning";
|
|
|
|
else
|
|
|
|
tag_name = "error";
|
|
|
|
|
|
|
|
gtk_text_buffer_apply_tag_by_name (buffer, tag_name, &start, &end);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-05-09 02:19:21 +00:00
|
|
|
create_provider (GtkInspectorCssEditor *ce)
|
2014-05-03 01:48:33 +00:00
|
|
|
{
|
|
|
|
GtkCssProvider *provider = gtk_css_provider_new ();
|
|
|
|
|
2014-05-09 02:19:21 +00:00
|
|
|
if (ce->priv->global)
|
2014-05-03 01:48:33 +00:00
|
|
|
{
|
2014-05-09 02:19:21 +00:00
|
|
|
ce->priv->provider = provider;
|
2014-05-03 01:48:33 +00:00
|
|
|
gtk_style_context_add_provider_for_screen (gdk_screen_get_default (),
|
2014-05-09 02:19:21 +00:00
|
|
|
GTK_STYLE_PROVIDER (ce->priv->provider),
|
2014-05-03 01:48:33 +00:00
|
|
|
GTK_STYLE_PROVIDER_PRIORITY_USER);
|
|
|
|
}
|
2014-05-09 02:19:21 +00:00
|
|
|
else if (ce->priv->context)
|
2014-05-03 01:48:33 +00:00
|
|
|
{
|
2014-05-09 02:19:21 +00:00
|
|
|
gtk_style_context_add_provider (ce->priv->context,
|
2014-05-03 01:48:33 +00:00
|
|
|
GTK_STYLE_PROVIDER (provider),
|
|
|
|
G_MAXUINT);
|
2014-05-09 02:58:43 +00:00
|
|
|
g_object_set_data_full (G_OBJECT (ce->priv->context),
|
|
|
|
GTK_INSPECTOR_CSS_EDITOR_PROVIDER, provider,
|
|
|
|
g_object_unref);
|
2014-05-03 01:48:33 +00:00
|
|
|
}
|
|
|
|
|
2014-05-04 18:53:17 +00:00
|
|
|
g_signal_connect (provider, "parsing-error",
|
2014-05-09 02:19:21 +00:00
|
|
|
G_CALLBACK (show_parsing_error), ce);
|
2014-05-03 01:48:33 +00:00
|
|
|
}
|
|
|
|
|
2014-09-26 03:05:15 +00:00
|
|
|
static void
|
|
|
|
destroy_provider (GtkInspectorCssEditor *ce)
|
|
|
|
{
|
|
|
|
if (ce->priv->global)
|
|
|
|
{
|
|
|
|
gtk_style_context_remove_provider_for_screen (gdk_screen_get_default (),
|
|
|
|
GTK_STYLE_PROVIDER (ce->priv->provider));
|
|
|
|
g_object_unref (ce->priv->provider);
|
|
|
|
ce->priv->provider = NULL;
|
|
|
|
}
|
|
|
|
else if (ce->priv->context)
|
|
|
|
{
|
|
|
|
GtkStyleProvider *provider;
|
|
|
|
|
|
|
|
provider = g_object_get_data (G_OBJECT (ce->priv->context),
|
|
|
|
GTK_INSPECTOR_CSS_EDITOR_PROVIDER);
|
|
|
|
gtk_style_context_remove_provider (ce->priv->context, provider);
|
|
|
|
g_object_set_data (G_OBJECT (ce->priv->context),
|
|
|
|
GTK_INSPECTOR_CSS_EDITOR_PROVIDER,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-03 01:48:33 +00:00
|
|
|
static void
|
2014-05-09 02:19:21 +00:00
|
|
|
gtk_inspector_css_editor_init (GtkInspectorCssEditor *ce)
|
2014-05-03 01:48:33 +00:00
|
|
|
{
|
2014-05-09 02:19:21 +00:00
|
|
|
ce->priv = gtk_inspector_css_editor_get_instance_private (ce);
|
|
|
|
gtk_widget_init_template (GTK_WIDGET (ce));
|
2014-05-03 01:48:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
constructed (GObject *object)
|
|
|
|
{
|
2014-05-09 02:19:21 +00:00
|
|
|
GtkInspectorCssEditor *ce = GTK_INSPECTOR_CSS_EDITOR (object);
|
2014-05-03 01:48:33 +00:00
|
|
|
|
2014-05-09 02:19:21 +00:00
|
|
|
create_provider (ce);
|
|
|
|
set_initial_text (ce);
|
2014-05-03 01:48:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
get_property (GObject *object,
|
2014-05-07 03:24:20 +00:00
|
|
|
guint param_id,
|
2014-05-03 01:48:33 +00:00
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
2014-05-09 02:19:21 +00:00
|
|
|
GtkInspectorCssEditor *ce = GTK_INSPECTOR_CSS_EDITOR (object);
|
2014-05-03 01:48:33 +00:00
|
|
|
|
|
|
|
switch (param_id)
|
|
|
|
{
|
|
|
|
case PROP_GLOBAL:
|
2014-05-09 02:19:21 +00:00
|
|
|
g_value_set_boolean (value, ce->priv->global);
|
2014-05-03 01:48:33 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, param_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_property (GObject *object,
|
2014-05-07 03:24:20 +00:00
|
|
|
guint param_id,
|
2014-05-03 01:48:33 +00:00
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
2014-05-09 02:19:21 +00:00
|
|
|
GtkInspectorCssEditor *ce = GTK_INSPECTOR_CSS_EDITOR (object);
|
2014-05-03 01:48:33 +00:00
|
|
|
|
|
|
|
switch (param_id)
|
|
|
|
{
|
|
|
|
case PROP_GLOBAL:
|
2014-05-09 02:19:21 +00:00
|
|
|
ce->priv->global = g_value_get_boolean (value);
|
2014-05-03 01:48:33 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, param_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-03 13:44:28 +00:00
|
|
|
static void
|
|
|
|
finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GtkInspectorCssEditor *ce = GTK_INSPECTOR_CSS_EDITOR (object);
|
|
|
|
|
|
|
|
if (ce->priv->timeout != 0)
|
|
|
|
g_source_remove (ce->priv->timeout);
|
|
|
|
|
2014-09-26 03:05:15 +00:00
|
|
|
destroy_provider (ce);
|
|
|
|
if (ce->priv->context)
|
|
|
|
{
|
|
|
|
g_object_weak_unref (G_OBJECT (ce->priv->context), gtk_inspector_css_editor_remove_dead_object, ce);
|
|
|
|
g_object_set_data (G_OBJECT (ce->priv->context),
|
|
|
|
GTK_INSPECTOR_CSS_EDITOR_TEXT,
|
|
|
|
NULL);
|
|
|
|
ce->priv->context = NULL;
|
|
|
|
}
|
|
|
|
|
2014-06-03 13:44:28 +00:00
|
|
|
G_OBJECT_CLASS (gtk_inspector_css_editor_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
2014-05-03 01:48:33 +00:00
|
|
|
static void
|
2014-05-07 03:24:20 +00:00
|
|
|
gtk_inspector_css_editor_class_init (GtkInspectorCssEditorClass *klass)
|
2014-05-03 01:48:33 +00:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2014-05-04 18:53:17 +00:00
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
2014-05-03 01:48:33 +00:00
|
|
|
|
|
|
|
object_class->get_property = get_property;
|
|
|
|
object_class->set_property = set_property;
|
2014-05-04 18:53:17 +00:00
|
|
|
object_class->constructed = constructed;
|
2014-06-03 13:44:28 +00:00
|
|
|
object_class->finalize = finalize;
|
2014-05-04 18:53:17 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_GLOBAL,
|
|
|
|
g_param_spec_boolean ("global", "Global", "Whether this editor changes the whole application or just the selected widget",
|
|
|
|
TRUE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
|
|
|
|
|
2014-11-30 20:59:53 +00:00
|
|
|
gtk_widget_class_set_template_from_resource (widget_class, "/org/gtk/libgtk/inspector/css-editor.ui");
|
2014-05-07 03:24:20 +00:00
|
|
|
gtk_widget_class_bind_template_child_private (widget_class, GtkInspectorCssEditor, text);
|
|
|
|
gtk_widget_class_bind_template_child_private (widget_class, GtkInspectorCssEditor, view);
|
|
|
|
gtk_widget_class_bind_template_child_private (widget_class, GtkInspectorCssEditor, disable_button);
|
2014-11-22 18:26:53 +00:00
|
|
|
gtk_widget_class_bind_template_child_private (widget_class, GtkInspectorCssEditor, object_title);
|
2014-05-04 18:53:17 +00:00
|
|
|
gtk_widget_class_bind_template_callback (widget_class, disable_toggled);
|
2014-05-31 00:35:43 +00:00
|
|
|
gtk_widget_class_bind_template_callback (widget_class, save_clicked);
|
2014-05-04 18:53:17 +00:00
|
|
|
gtk_widget_class_bind_template_callback (widget_class, text_changed);
|
2014-05-03 01:48:33 +00:00
|
|
|
}
|
|
|
|
|
2014-05-09 02:58:43 +00:00
|
|
|
static void
|
2014-09-26 03:05:15 +00:00
|
|
|
gtk_inspector_css_editor_remove_dead_object (gpointer data, GObject *dead_object)
|
2014-05-09 02:58:43 +00:00
|
|
|
{
|
|
|
|
GtkInspectorCssEditor *ce = data;
|
|
|
|
|
|
|
|
ce->priv->context = NULL;
|
2014-05-10 03:57:57 +00:00
|
|
|
gtk_widget_hide (GTK_WIDGET (ce));
|
2014-05-09 02:58:43 +00:00
|
|
|
}
|
|
|
|
|
2014-05-03 01:48:33 +00:00
|
|
|
void
|
2014-05-10 03:57:57 +00:00
|
|
|
gtk_inspector_css_editor_set_object (GtkInspectorCssEditor *ce,
|
|
|
|
GObject *object)
|
2014-05-03 01:48:33 +00:00
|
|
|
{
|
|
|
|
gchar *text;
|
|
|
|
GtkCssProvider *provider;
|
2014-11-22 18:26:53 +00:00
|
|
|
const gchar *title;
|
2014-05-03 01:48:33 +00:00
|
|
|
|
2014-05-09 02:19:21 +00:00
|
|
|
g_return_if_fail (GTK_INSPECTOR_IS_CSS_EDITOR (ce));
|
|
|
|
g_return_if_fail (!ce->priv->global);
|
2014-05-03 01:48:33 +00:00
|
|
|
|
2014-05-09 02:19:21 +00:00
|
|
|
if (ce->priv->context)
|
2014-05-03 01:48:33 +00:00
|
|
|
{
|
2014-09-26 03:05:15 +00:00
|
|
|
g_object_weak_unref (G_OBJECT (ce->priv->context), gtk_inspector_css_editor_remove_dead_object, ce);
|
2014-05-09 02:19:21 +00:00
|
|
|
text = get_current_text (GTK_TEXT_BUFFER (ce->priv->text));
|
|
|
|
g_object_set_data_full (G_OBJECT (ce->priv->context),
|
2014-05-07 03:24:20 +00:00
|
|
|
GTK_INSPECTOR_CSS_EDITOR_TEXT,
|
2014-05-10 03:57:57 +00:00
|
|
|
text, g_free);
|
|
|
|
ce->priv->context = NULL;
|
2014-05-03 01:48:33 +00:00
|
|
|
}
|
|
|
|
|
2014-05-10 03:57:57 +00:00
|
|
|
if (!GTK_IS_WIDGET (object))
|
|
|
|
{
|
|
|
|
gtk_widget_hide (GTK_WIDGET (ce));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_widget_show (GTK_WIDGET (ce));
|
|
|
|
|
2014-11-22 18:26:53 +00:00
|
|
|
title = (const gchar *)g_object_get_data (object, "gtk-inspector-object-title");
|
|
|
|
gtk_label_set_label (GTK_LABEL (ce->priv->object_title), title);
|
|
|
|
|
2014-05-10 03:57:57 +00:00
|
|
|
ce->priv->context = gtk_widget_get_style_context (GTK_WIDGET (object));
|
2014-05-03 01:48:33 +00:00
|
|
|
|
2014-05-09 02:19:21 +00:00
|
|
|
provider = g_object_get_data (G_OBJECT (ce->priv->context), GTK_INSPECTOR_CSS_EDITOR_PROVIDER);
|
2014-05-03 01:48:33 +00:00
|
|
|
if (!provider)
|
2014-05-09 02:19:21 +00:00
|
|
|
create_provider (ce);
|
2014-05-03 01:48:33 +00:00
|
|
|
|
2014-05-09 02:19:21 +00:00
|
|
|
set_initial_text (ce);
|
|
|
|
disable_toggled (ce->priv->disable_button, ce);
|
2014-05-09 02:58:43 +00:00
|
|
|
|
2014-09-26 03:05:15 +00:00
|
|
|
g_object_weak_ref (G_OBJECT (ce->priv->context), gtk_inspector_css_editor_remove_dead_object, ce);
|
2014-05-03 01:48:33 +00:00
|
|
|
}
|
|
|
|
|
2014-05-04 18:53:17 +00:00
|
|
|
// vim: set et sw=2 ts=2:
|