2023-06-02 17:01:16 +00:00
|
|
|
/*
|
|
|
|
* mks-css.c
|
2023-02-14 19:18:48 +00:00
|
|
|
*
|
|
|
|
* Copyright 2023 Christian Hergert <chergert@redhat.com>
|
|
|
|
*
|
2023-06-02 17:01:16 +00:00
|
|
|
* This library is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
* License, or (at your option) any later version.
|
2023-02-14 19:18:48 +00:00
|
|
|
*
|
2023-06-02 17:01:16 +00:00
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
2023-02-14 19:18:48 +00:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2023-06-01 11:04:35 +00:00
|
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
2023-02-14 19:18:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "mks-css-private.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
_mks_css_init (void)
|
|
|
|
{
|
|
|
|
static GtkCssProvider *provider;
|
|
|
|
|
|
|
|
if G_UNLIKELY (provider == NULL)
|
|
|
|
{
|
2023-02-18 00:40:53 +00:00
|
|
|
GdkDisplay *display = gdk_display_get_default ();
|
|
|
|
|
|
|
|
if (display == NULL)
|
|
|
|
return;
|
|
|
|
|
2023-02-14 19:18:48 +00:00
|
|
|
provider = gtk_css_provider_new ();
|
|
|
|
gtk_css_provider_load_from_resource (provider, "/org/gnome/libmks/style.css");
|
2023-02-18 00:40:53 +00:00
|
|
|
gtk_style_context_add_provider_for_display (display,
|
2023-02-14 19:18:48 +00:00
|
|
|
GTK_STYLE_PROVIDER (provider),
|
|
|
|
GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
|
|
|
|
}
|
|
|
|
}
|