add support for a default icon, but no icon has been made yet.

This commit is contained in:
Dana Jansens 2003-09-12 01:11:33 +00:00
parent 71059fdbbb
commit 49a73ce15c
4 changed files with 48 additions and 2 deletions

View file

@ -54,6 +54,7 @@ render_libobrender_la_SOURCES = \
render/geom.h \
render/gradient.h \
render/gradient.c \
render/icon.h \
render/image.h \
render/image.c \
render/instance.h \

View file

@ -1546,6 +1546,16 @@ void client_update_icons(ObClient *self)
}
}
if (!self->nicons) {
self->nicons++;
self->icons = g_new(ObClientIcon, self->nicons);
self->icons[self->nicons-1].width = 48;
self->icons[self->nicons-1].height = 48;
self->icons[self->nicons-1].data = g_memdup(ob_rr_theme->def_win_icon,
sizeof(RrPixel32)
* 48 * 48);
}
if (self->frame)
frame_adjust_icon(self->frame);
}
@ -2603,8 +2613,6 @@ ObClientIcon *client_icon(ObClient *self, int w, int h)
/* li is the largest image < req */
unsigned long size, smallest = 0xffffffff, largest = 0, si = 0, li = 0;
if (!self->nicons) return NULL;
for (i = 0; i < self->nicons; ++i) {
size = self->icons[i].width * self->icons[i].height;
if (size < smallest && size >= (unsigned)(w * h)) {

View file

@ -3,6 +3,7 @@
#include "font.h"
#include "mask.h"
#include "theme.h"
#include "icon.h"
#include <X11/Xlib.h>
#include <X11/Xresource.h>
@ -21,6 +22,7 @@ static gboolean read_mask(const RrInstance *inst,
static gboolean read_appearance(XrmDatabase db, const RrInstance *inst,
gchar *rname, RrAppearance *value,
gboolean allow_trans);
static RrPixel32* read_c_image(gint width, gint height, const guint8 *data);
static void set_default_appearance(RrAppearance *a);
RrTheme* RrThemeNew(const RrInstance *inst, gchar *name)
@ -323,6 +325,10 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name)
theme->iconify_hover_mask = RrPixmapMaskCopy(theme->iconify_mask);
}
theme->def_win_icon = read_c_image(OB_DEFAULT_ICON_WIDTH,
OB_DEFAULT_ICON_HEIGHT,
OB_DEFAULT_ICON_pixel_data);
if (read_mask(inst, "desk.xbm", theme, &theme->desk_mask)) {
if (!read_mask(inst, "desk_pressed.xbm", theme,
&theme->desk_pressed_mask)) {
@ -915,6 +921,8 @@ void RrThemeFree(RrTheme *theme)
RrColorFree(theme->menu_disabled_color);
RrColorFree(theme->menu_selected_color);
g_free(theme->def_win_icon);
RrPixmapMaskFree(theme->max_mask);
RrPixmapMaskFree(theme->max_toggled_mask);
RrPixmapMaskFree(theme->max_disabled_mask);
@ -1248,3 +1256,29 @@ static void set_default_appearance(RrAppearance *a)
a->surface.primary = RrColorNew(a->inst, 0, 0, 0);
a->surface.secondary = RrColorNew(a->inst, 0, 0, 0);
}
/* Reads the output from gimp's C-Source file format into valid RGBA data for
an RrTextureRGBA. */
static RrPixel32* read_c_image(gint width, gint height, const guint8 *data)
{
RrPixel32 *im, *p;
gint i;
p = im = g_memdup(OB_DEFAULT_ICON_pixel_data,
OB_DEFAULT_ICON_WIDTH * OB_DEFAULT_ICON_HEIGHT *
sizeof(RrPixel32));
for (i = 0; i < OB_DEFAULT_ICON_WIDTH*OB_DEFAULT_ICON_HEIGHT; ++i) {
guchar a = ((*p >> 24) & 0xff);
guchar b = ((*p >> 16) & 0xff);
guchar g = ((*p >> 8) & 0xff);
guchar r = ((*p >> 0) & 0xff);
*p++ = ((r << RrDefaultRedOffset) +
(g << RrDefaultGreenOffset) +
(b << RrDefaultBlueOffset) +
(a << RrDefaultAlphaOffset));
}
return im;
}

View file

@ -55,6 +55,9 @@ struct _RrTheme {
gint mfont_height;
RrFont *mfont;
/* style settings - pics */
RrPixel32 *def_win_icon; /* 48x48 RGBA */
/* style settings - masks */
RrPixmapMask *max_mask;
RrPixmapMask *max_toggled_mask;