Skip to content

Commit

Permalink
use the inline image data for default icon
Browse files Browse the repository at this point in the history
2001-09-17  Havoc Pennington  <hp@pobox.com>

	* src/ui.c: use the inline image data for default icon

	* src/common.h (META_MINI_ICON_HEIGHT): move icon size defines
	here

	* src/Makefile.am: Create an inlinepixbufs.h header with inline
	images
  • Loading branch information
havocp authored and Havoc Pennington committed Sep 17, 2001
1 parent ecf7591 commit 4c104e1
Show file tree
Hide file tree
Showing 7 changed files with 78 additions and 18 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
@@ -1,3 +1,13 @@
2001-09-17 Havoc Pennington <hp@pobox.com>

* src/ui.c: use the inline image data for default icon

* src/common.h (META_MINI_ICON_HEIGHT): move icon size defines
here

* src/Makefile.am: Create an inlinepixbufs.h header with inline
images

2001-09-16 Havoc Pennington <hp@pobox.com>

* src/session.c (process_ice_messages): disconnect this callback
Expand Down
8 changes: 8 additions & 0 deletions configure.in
Expand Up @@ -67,6 +67,14 @@ AM_CONDITIONAL(HAVE_SM, test "$found_sm" = "true")
HOST_ALIAS=$host_alias
AC_SUBST(HOST_ALIAS)

AC_PATH_PROG(GDK_PIXBUF_CSOURCE, gdk-pixbuf-csource, no)

if test x"$GDK_PIXBUF_CSOURCE" = xno; then
AC_MSG_ERROR([gdk-pixbuf-csource executable not found in your path - should be installed with GTK])
fi

AC_SUBST(GDK_PIXBUF_CSOURCE)

AC_OUTPUT([
Makefile
src/Makefile
Expand Down
10 changes: 9 additions & 1 deletion src/Makefile.am
Expand Up @@ -53,5 +53,13 @@ metacity_LDADD= @METACITY_LIBS@
desktopfilesdir=$(datadir)/gnome/wm-properties
desktopfiles_DATA=metacity.desktop

EXTRA_DIST=$(desktopfiles_DATA)
IMAGES=default_icon.png
VARIABLES=default_icon_data default_icon.png

noinst_DATA = inlinepixbufs.h
CLEANFILES += $(noinst_DATA)

inlinepixbufs.h: $(IMAGES)
$(GDK_PIXBUF_CSOURCE) --raw --build-list $(VARIABLES) >$(srcdir)/inlinepixbufs.h

EXTRA_DIST=$(desktopfiles_DATA) $(IMAGES)
7 changes: 7 additions & 0 deletions src/common.h
Expand Up @@ -122,6 +122,13 @@ typedef enum

} MetaCursor;


/* should investigate changing these to whatever most apps use */
#define META_ICON_WIDTH 32
#define META_ICON_HEIGHT 32
#define META_MINI_ICON_WIDTH 16
#define META_MINI_ICON_HEIGHT 16

#endif


Expand Down
Binary file added src/default_icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 0 additions & 7 deletions src/screen.h
Expand Up @@ -26,13 +26,6 @@
#include <X11/Xutil.h>
#include "ui.h"


/* should investigate changing these to whatever most apps use */
#define META_ICON_WIDTH 32
#define META_ICON_HEIGHT 32
#define META_MINI_ICON_WIDTH 16
#define META_MINI_ICON_HEIGHT 16

typedef void (* MetaScreenWindowFunc) (MetaScreen *screen, MetaWindow *window,
gpointer user_data);

Expand Down
54 changes: 44 additions & 10 deletions src/ui.c
Expand Up @@ -25,6 +25,8 @@
#include "menu.h"
#include "core.h"

#include "inlinepixbufs.h"

struct _MetaUI
{
Display *xdisplay;
Expand Down Expand Up @@ -422,21 +424,53 @@ meta_ui_pop_delay_exposes (MetaUI *ui)
GdkPixbuf*
meta_ui_get_default_window_icon (MetaUI *ui)
{
/* FIXME */
return gtk_widget_render_icon (GTK_WIDGET (ui->frames),
GTK_STOCK_NEW,
GTK_ICON_SIZE_LARGE_TOOLBAR,
NULL);
static GdkPixbuf *default_icon = NULL;

if (default_icon == NULL)
{
GdkPixbuf *base;

base = gdk_pixbuf_new_from_stream (-1, default_icon_data,
FALSE,
NULL);

g_assert (base);

default_icon = gdk_pixbuf_scale_simple (base,
META_ICON_WIDTH,
META_ICON_HEIGHT,
GDK_INTERP_BILINEAR);

g_object_unref (G_OBJECT (base));
}

return default_icon;
}

GdkPixbuf*
meta_ui_get_default_mini_icon (MetaUI *ui)
{
/* FIXME */
return gtk_widget_render_icon (GTK_WIDGET (ui->frames),
GTK_STOCK_NEW,
GTK_ICON_SIZE_MENU,
NULL);
static GdkPixbuf *default_icon = NULL;

if (default_icon == NULL)
{
GdkPixbuf *base;

base = gdk_pixbuf_new_from_stream (-1, default_icon_data,
FALSE,
NULL);

g_assert (base);

default_icon = gdk_pixbuf_scale_simple (base,
META_MINI_ICON_WIDTH,
META_MINI_ICON_HEIGHT,
GDK_INTERP_BILINEAR);

g_object_unref (G_OBJECT (base));
}

return default_icon;
}

gboolean
Expand Down

0 comments on commit 4c104e1

Please sign in to comment.