Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Librem5
maynard
Commits
478def9f
Commit
478def9f
authored
Feb 11, 2014
by
Jonny Lamb
Browse files
css: add new style css file and put it into gresources
parent
c54ba7f7
Changes
5
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
478def9f
...
...
@@ -38,6 +38,8 @@ _gen
/weston-gtk-shell-*.tar.xz
shell/desktop-shell-client-protocol.h
shell/desktop-shell-protocol.c
shell/weston-gtk-shell-resources.c
shell/weston-gtk-shell-resources.h
shell/weston-gtk-shell
data/gschemas.compiled
data/org.raspberrypi.weston-gtk-shell.gschema.valid
...
...
shell/Makefile.am
View file @
478def9f
...
...
@@ -23,6 +23,8 @@ weston_gtk_shell_SOURCES = \
shell-app-system.h
\
sound-applet.c
\
sound-applet.h
\
weston-gtk-shell-resources.c
\
weston-gtk-shell-resources.h
\
desktop-shell-client-protocol.h
\
desktop-shell-protocol.c
\
$(external_sources)
...
...
@@ -30,7 +32,18 @@ weston_gtk_shell_LDADD = $(GTK_LIBS)
BUILT_SOURCES
=
\
desktop-shell-client-protocol.h
\
desktop-shell-protocol.c
desktop-shell-protocol.c
\
weston-gtk-shell-resources.c
\
weston-gtk-shell-resources.h
# gresource for css
resource_files
=
$(
shell
glib-compile-resources
--sourcedir
=
$(srcdir)
--generate-dependencies
$(srcdir)
/weston-gtk-shell.gresource.xml
)
weston-gtk-shell-resources.c
:
weston-gtk-shell.gresource.xml $(resource_files)
$(AM_V_GEN)
glib-compile-resources
--target
=
$@
--sourcedir
=
$(srcdir)
--generate-source
--c-name
weston_gtk_shell
$<
weston-gtk-shell-resources.h
:
weston-gtk-shell.gresource.xml $(resource_files)
$(AM_V_GEN)
glib-compile-resources
--target
=
$@
--sourcedir
=
$(srcdir)
--generate-header
--c-name
weston_gtk_shell
$<
EXTRA_DIST
=
style.css
CLEANFILES
=
$(BUILT_SOURCES)
...
...
shell/gtk-shell.c
View file @
478def9f
...
...
@@ -5,6 +5,9 @@
#include <gdk/gdkwayland.h>
#include "desktop-shell-client-protocol.h"
#include "weston-gtk-shell-resources.h"
#include "clock.h"
#include "favorites.h"
#include "launcher-grid.h"
...
...
@@ -225,6 +228,30 @@ background_create(struct desktop *desktop)
gtk_widget_show_all
(
background
->
window
);
}
static
void
css_setup
(
struct
desktop
*
desktop
)
{
GtkCssProvider
*
provider
;
GFile
*
file
;
GError
*
error
=
NULL
;
provider
=
gtk_css_provider_new
();
file
=
g_file_new_for_uri
(
"resource:///org/raspberry-pi/weston-gtk-shell/style.css"
);
if
(
!
gtk_css_provider_load_from_file
(
provider
,
file
,
&
error
))
{
g_warning
(
"Failed to load CSS file: %s"
,
error
->
message
);
g_clear_error
(
&
error
);
g_object_unref
(
file
);
return
;
}
gtk_style_context_add_provider_for_screen
(
gdk_screen_get_default
(),
GTK_STYLE_PROVIDER
(
provider
),
600
);
g_object_unref
(
file
);
}
static
void
registry_handle_global
(
void
*
data
,
struct
wl_registry
*
registry
,
uint32_t
name
,
const
char
*
interface
,
uint32_t
version
)
...
...
@@ -263,6 +290,8 @@ main(int argc, char *argv[])
gtk_init
(
&
argc
,
&
argv
);
g_resources_register
(
weston_gtk_shell_get_resource
());
desktop
=
malloc
(
sizeof
*
desktop
);
desktop
->
output
=
NULL
;
desktop
->
shell
=
NULL
;
...
...
@@ -284,6 +313,7 @@ main(int argc, char *argv[])
while
(
!
desktop
->
output
||
!
desktop
->
shell
)
wl_display_roundtrip
(
desktop
->
display
);
css_setup
(
desktop
);
panel_create
(
desktop
);
launcher_grid_create
(
desktop
);
background_create
(
desktop
);
...
...
shell/style.css
0 → 100644
View file @
478def9f
shell/weston-gtk-shell.gresource.xml
0 → 100644
View file @
478def9f
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource
prefix=
"/org/raspberry-pi/weston-gtk-shell"
>
<file
compressed=
"true"
>
style.css
</file>
</gresource>
</gresources>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment