1
0
Fork 0
mutter-performance-source/src/theme.c

682 lines
20 KiB
C
Raw Normal View History

2001-05-31 16:18:40 +00:00
/* Metacity Default Theme Engine */
/*
* Copyright (C) 2001 Havoc Pennington
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#include "theme.h"
2001-06-01 03:00:01 +00:00
#include "api.h"
2001-06-03 21:39:57 +00:00
#include "util.h"
2001-05-31 16:18:40 +00:00
2001-06-03 21:39:57 +00:00
typedef struct _DefaultFrameData DefaultFrameData;
typedef struct _DefaultScreenData DefaultScreenData;
typedef struct _DefaultFrameGeometry DefaultFrameGeometry;
struct _DefaultFrameGeometry
{
/* We recalculate this every time, to save RAM */
int left_width;
int right_width;
int top_height;
int bottom_height;
MetaRectangle close_rect;
MetaRectangle max_rect;
MetaRectangle min_rect;
MetaRectangle spacer_rect;
MetaRectangle menu_rect;
MetaRectangle title_rect;
};
2001-05-31 16:18:40 +00:00
struct _DefaultFrameData
{
PangoLayout *layout;
2001-06-03 21:39:57 +00:00
int layout_height;
2001-06-03 18:33:59 +00:00
};
struct _DefaultScreenData
{
2001-06-01 03:00:01 +00:00
GC text_gc;
2001-06-02 04:14:18 +00:00
GC fg_gc;
2001-06-03 18:33:59 +00:00
GC light_gc;
GC dark_gc;
2001-06-04 04:58:22 +00:00
GC black_gc;
GC selected_gc;
GC selected_text_gc;
2001-05-31 16:18:40 +00:00
};
2001-06-03 18:33:59 +00:00
/* FIXME store this on the screen */
static DefaultScreenData *screen_data = NULL;
2001-05-31 16:18:40 +00:00
static gpointer
default_acquire_frame (MetaFrameInfo *info)
{
DefaultFrameData *d;
2001-06-01 03:00:01 +00:00
PangoFontDescription *desc;
XGCValues vals;
2001-06-03 18:33:59 +00:00
if (screen_data == NULL)
{
2001-06-04 04:58:22 +00:00
PangoColor color;
2001-06-03 18:33:59 +00:00
screen_data = g_new (DefaultScreenData, 1);
vals.foreground = meta_get_x_pixel (info->screen,
&info->colors->fg[META_STATE_NORMAL]);
2001-06-04 04:58:22 +00:00
2001-06-03 18:33:59 +00:00
screen_data->text_gc = XCreateGC (info->display,
RootWindowOfScreen (info->screen),
GCForeground,
&vals);
screen_data->fg_gc = XCreateGC (info->display,
RootWindowOfScreen (info->screen),
GCForeground,
&vals);
vals.foreground = meta_get_x_pixel (info->screen,
&info->colors->light[META_STATE_NORMAL]);
screen_data->light_gc = XCreateGC (info->display,
RootWindowOfScreen (info->screen),
GCForeground,
&vals);
vals.foreground = meta_get_x_pixel (info->screen,
&info->colors->dark[META_STATE_NORMAL]);
screen_data->dark_gc = XCreateGC (info->display,
RootWindowOfScreen (info->screen),
GCForeground,
&vals);
2001-06-04 04:58:22 +00:00
vals.foreground = meta_get_x_pixel (info->screen,
&info->colors->bg[META_STATE_SELECTED]);
screen_data->selected_gc = XCreateGC (info->display,
RootWindowOfScreen (info->screen),
GCForeground,
&vals);
vals.foreground = meta_get_x_pixel (info->screen,
&info->colors->fg[META_STATE_SELECTED]);
screen_data->selected_text_gc = XCreateGC (info->display,
RootWindowOfScreen (info->screen),
GCForeground,
&vals);
color.red = color.green = color.blue = 0;
vals.foreground = meta_get_x_pixel (info->screen,
&color);
screen_data->black_gc = XCreateGC (info->display,
RootWindowOfScreen (info->screen),
GCForeground,
&vals);
2001-06-03 18:33:59 +00:00
}
2001-06-01 03:00:01 +00:00
2001-05-31 16:18:40 +00:00
d = g_new (DefaultFrameData, 1);
2001-06-03 21:39:57 +00:00
desc = pango_font_description_from_string ("Sans 12");
2001-06-01 03:00:01 +00:00
d->layout = pango_layout_new (meta_get_pango_context (info->screen,
2001-06-03 21:39:57 +00:00
desc));
2001-06-03 18:33:59 +00:00
pango_font_description_free (desc);
2001-06-02 04:14:18 +00:00
2001-06-03 21:39:57 +00:00
d->layout_height = 0;
2001-05-31 16:18:40 +00:00
return d;
}
2001-06-03 18:33:59 +00:00
static void
2001-05-31 16:18:40 +00:00
default_release_frame (MetaFrameInfo *info,
gpointer frame_data)
{
DefaultFrameData *d;
d = frame_data;
if (d->layout)
g_object_unref (G_OBJECT (d->layout));
2001-06-01 03:00:01 +00:00
2001-05-31 16:18:40 +00:00
g_free (d);
}
2001-06-04 04:58:22 +00:00
#define ABOVE_TITLE_PAD 4
#define BELOW_TITLE_PAD 3
#define RIGHT_TITLE_PAD 4
#define LEFT_TITLE_PAD 3
2001-06-03 21:39:57 +00:00
#define VERTICAL_TEXT_PAD 2
#define HORIZONTAL_TEXT_PAD 2
2001-06-04 04:58:22 +00:00
#define LEFT_WIDTH 6
#define RIGHT_WIDTH 6
#define BOTTOM_HEIGHT 7
2001-06-03 18:33:59 +00:00
#define SPACER_SPACING 3
2001-06-03 21:39:57 +00:00
#define SPACER_WIDTH 2
#define SPACER_HEIGHT 10
#define BUTTON_WIDTH 12
#define BUTTON_HEIGHT 12
#define BUTTON_PAD 2
#define INNER_BUTTON_PAD 1
static void
calc_geometry (MetaFrameInfo *info,
DefaultFrameData *d,
DefaultFrameGeometry *fgeom)
{
int x;
int button_y;
int title_right_edge;
2001-06-04 04:58:22 +00:00
fgeom->top_height = MAX (d->layout_height + VERTICAL_TEXT_PAD * 2 + ABOVE_TITLE_PAD + BELOW_TITLE_PAD,
2001-06-03 21:39:57 +00:00
BUTTON_HEIGHT + BUTTON_PAD * 2);
fgeom->left_width = LEFT_WIDTH;
fgeom->right_width = RIGHT_WIDTH;
fgeom->bottom_height = BOTTOM_HEIGHT;
x = info->width - fgeom->right_width;
button_y = (fgeom->top_height - BUTTON_HEIGHT) / 2;
if (info->flags & META_FRAME_ALLOWS_DELETE)
{
fgeom->close_rect.x = x - BUTTON_PAD - BUTTON_WIDTH;
fgeom->close_rect.y = button_y;
fgeom->close_rect.width = BUTTON_WIDTH;
fgeom->close_rect.height = BUTTON_HEIGHT;
x = fgeom->close_rect.x;
}
else
{
fgeom->close_rect.x = 0;
fgeom->close_rect.y = 0;
fgeom->close_rect.width = 0;
fgeom->close_rect.height = 0;
}
if (info->flags & META_FRAME_ALLOWS_MAXIMIZE)
{
fgeom->max_rect.x = x - BUTTON_PAD - BUTTON_WIDTH;
fgeom->max_rect.y = button_y;
fgeom->max_rect.width = BUTTON_WIDTH;
fgeom->max_rect.height = BUTTON_HEIGHT;
x = fgeom->max_rect.x;
}
else
{
fgeom->max_rect.x = 0;
fgeom->max_rect.y = 0;
fgeom->max_rect.width = 0;
fgeom->max_rect.height = 0;
}
if (info->flags & META_FRAME_ALLOWS_ICONIFY)
{
fgeom->min_rect.x = x - BUTTON_PAD - BUTTON_WIDTH;
fgeom->min_rect.y = button_y;
fgeom->min_rect.width = BUTTON_WIDTH;
fgeom->min_rect.height = BUTTON_HEIGHT;
x = fgeom->min_rect.x;
}
else
{
fgeom->min_rect.x = 0;
fgeom->min_rect.y = 0;
fgeom->min_rect.width = 0;
fgeom->min_rect.height = 0;
}
if (fgeom->close_rect.width > 0 ||
fgeom->max_rect.width > 0 ||
fgeom->min_rect.width > 0)
{
fgeom->spacer_rect.x = x - SPACER_SPACING - SPACER_WIDTH;
fgeom->spacer_rect.y = (fgeom->top_height - SPACER_HEIGHT) / 2;
fgeom->spacer_rect.width = SPACER_WIDTH;
fgeom->spacer_rect.height = SPACER_HEIGHT;
x = fgeom->spacer_rect.x;
}
else
{
fgeom->spacer_rect.x = 0;
fgeom->spacer_rect.y = 0;
fgeom->spacer_rect.width = 0;
fgeom->spacer_rect.height = 0;
}
2001-06-04 04:58:22 +00:00
title_right_edge = x - RIGHT_TITLE_PAD;
2001-06-03 21:39:57 +00:00
/* Now x changes to be position from the left */
x = fgeom->left_width;
if (info->flags & META_FRAME_ALLOWS_MENU)
{
fgeom->menu_rect.x = x + BUTTON_PAD;
fgeom->menu_rect.y = button_y;
fgeom->menu_rect.width = BUTTON_WIDTH;
fgeom->menu_rect.height = BUTTON_HEIGHT;
x = fgeom->menu_rect.x + fgeom->menu_rect.width;
}
else
{
fgeom->menu_rect.x = 0;
fgeom->menu_rect.y = 0;
fgeom->menu_rect.width = 0;
fgeom->menu_rect.height = 0;
}
2001-06-04 04:58:22 +00:00
fgeom->title_rect.x = x + LEFT_TITLE_PAD;
fgeom->title_rect.y = ABOVE_TITLE_PAD;
2001-06-03 21:39:57 +00:00
fgeom->title_rect.width = title_right_edge - fgeom->title_rect.x;
2001-06-04 04:58:22 +00:00
fgeom->title_rect.height = fgeom->top_height - ABOVE_TITLE_PAD - BELOW_TITLE_PAD;
2001-06-03 21:39:57 +00:00
if (fgeom->title_rect.width < 0)
fgeom->title_rect.width = 0;
}
2001-06-03 18:33:59 +00:00
static void
2001-05-31 16:18:40 +00:00
default_fill_frame_geometry (MetaFrameInfo *info,
2001-06-01 03:00:01 +00:00
MetaFrameGeometry *geom,
2001-05-31 16:18:40 +00:00
gpointer frame_data)
{
2001-06-01 03:00:01 +00:00
DefaultFrameData *d;
PangoRectangle rect;
2001-06-03 21:39:57 +00:00
DefaultFrameGeometry fgeom;
2001-06-01 03:00:01 +00:00
d = frame_data;
if (info->title)
pango_layout_set_text (d->layout, info->title, -1);
else
pango_layout_set_text (d->layout, " ", -1);
2001-06-03 01:33:27 +00:00
2001-06-01 03:00:01 +00:00
pango_layout_get_pixel_extents (d->layout, NULL, &rect);
2001-05-31 16:18:40 +00:00
2001-06-03 21:39:57 +00:00
d->layout_height = rect.height;
calc_geometry (info, d, &fgeom);
geom->top_height = fgeom.top_height;
geom->left_width = fgeom.left_width;
geom->right_width = fgeom.right_width;
geom->bottom_height = fgeom.bottom_height;
2001-06-03 18:33:59 +00:00
geom->background_pixel = meta_get_x_pixel (info->screen,
&info->colors->bg[META_STATE_NORMAL]);
}
static void
draw_vline (MetaFrameInfo *info,
Drawable drawable,
GC light_gc,
GC dark_gc,
int y1,
int y2,
int x)
{
int thickness_light;
int thickness_dark;
int i;
2001-06-04 04:58:22 +00:00
/* From GTK+ */
2001-06-03 18:33:59 +00:00
thickness_light = 1;
thickness_dark = 1;
2001-05-31 16:18:40 +00:00
2001-06-03 18:33:59 +00:00
for (i = 0; i < thickness_dark; i++)
{
XDrawLine (info->display, drawable, light_gc,
x + i, y2 - i - 1, x + i, y2);
XDrawLine (info->display, drawable, dark_gc,
x + i, y1, x + i, y2 - i - 1);
}
2001-06-01 03:00:01 +00:00
2001-06-03 18:33:59 +00:00
x += thickness_dark;
for (i = 0; i < thickness_light; i++)
{
XDrawLine (info->display, drawable, dark_gc,
x + i, y1, x + i, y1 + thickness_light - i);
XDrawLine (info->display, drawable, light_gc,
x + i, y1 + thickness_light - i, x + i, y2);
}
2001-05-31 16:18:40 +00:00
}
2001-06-03 21:39:57 +00:00
static void
draw_varrow (MetaFrameInfo *info,
Drawable drawable,
GC gc,
gboolean down,
gint x,
gint y,
gint width,
gint height)
{
gint steps, extra;
gint y_start, y_increment;
gint i;
/* From GTK+ */
width = width + width % 2 - 1; /* Force odd */
steps = 1 + width / 2;
extra = height - steps;
if (down)
{
y_start = y;
y_increment = 1;
}
else
{
y_start = y + height - 1;
y_increment = -1;
}
for (i = 0; i < extra; i++)
{
XDrawLine (info->display, drawable,
gc,
x, y_start + i * y_increment,
x + width - 1, y_start + i * y_increment);
}
for (; i < height; i++)
{
XDrawLine (info->display, drawable,
gc,
x + (i - extra), y_start + i * y_increment,
x + width - (i - extra) - 1, y_start + i * y_increment);
}
}
static void
set_clip (Display *display, GC gc, MetaRectangle *rect)
{
if (rect)
{
XRectangle xrect;
xrect.x = rect->x;
xrect.y = rect->y;
xrect.width = rect->width;
xrect.height = rect->height;
XSetClipRectangles (display, gc, 0, 0,
&xrect, 1, YXBanded);
}
else
{
XSetClipMask (display, gc, None);
}
}
2001-06-03 18:33:59 +00:00
static void
2001-05-31 16:18:40 +00:00
default_expose_frame (MetaFrameInfo *info,
int x, int y,
int width, int height,
gpointer frame_data)
{
2001-06-01 03:00:01 +00:00
DefaultFrameData *d;
2001-06-03 18:33:59 +00:00
XGCValues vals;
2001-06-03 21:39:57 +00:00
int xoff, yoff;
DefaultFrameGeometry fgeom;
2001-06-01 03:00:01 +00:00
d = frame_data;
2001-06-03 21:39:57 +00:00
calc_geometry (info, d, &fgeom);
2001-06-01 03:00:01 +00:00
2001-06-03 21:39:57 +00:00
xoff = info->xoffset;
yoff = info->yoffset;
2001-06-04 04:58:22 +00:00
/* Black line around outside to give definition */
XDrawRectangle (info->display,
info->drawable,
screen_data->black_gc,
xoff, yoff,
info->width - 1,
info->height - 1);
/* Light GC on top/left edges */
XDrawLine (info->display,
info->drawable,
screen_data->light_gc,
xoff + 1, yoff + 1,
xoff + 1, yoff + info->height - 2);
XDrawLine (info->display,
info->drawable,
screen_data->light_gc,
xoff + 1, yoff + 1,
xoff + info->width - 2, yoff + 1);
/* Dark GC on bottom/right edges */
XDrawLine (info->display,
info->drawable,
screen_data->dark_gc,
xoff + info->width - 2, yoff + 1,
xoff + info->width - 2, yoff + info->height - 2);
XDrawLine (info->display,
info->drawable,
screen_data->dark_gc,
xoff + 1, yoff + info->height - 2,
xoff + info->width - 2, yoff + info->height - 2);
if (info->flags & META_FRAME_HAS_FOCUS)
{
/* Black line around inside while we have focus */
XDrawRectangle (info->display,
info->drawable,
screen_data->black_gc,
xoff + fgeom.left_width - 1,
yoff + fgeom.top_height - 1,
info->width - fgeom.right_width - fgeom.left_width + 1,
info->height - fgeom.bottom_height - fgeom.top_height + 1);
}
2001-06-03 21:39:57 +00:00
if (fgeom.title_rect.width > 0 && fgeom.title_rect.height > 0)
{
int layout_y;
MetaRectangle clip;
2001-06-04 04:58:22 +00:00
GC layout_gc;
2001-06-03 21:39:57 +00:00
/* center vertically */
layout_y = fgeom.title_rect.y +
(fgeom.title_rect.height - d->layout_height) / 2;
clip = fgeom.title_rect;
clip.x += xoff;
clip.y += yoff;
clip.width -= HORIZONTAL_TEXT_PAD;
2001-06-04 04:58:22 +00:00
layout_gc = screen_data->text_gc;
2001-06-03 21:39:57 +00:00
if (info->flags & META_FRAME_HAS_FOCUS)
{
2001-06-04 04:58:22 +00:00
layout_gc = screen_data->selected_text_gc;
/* Draw blue background */
XFillRectangle (info->display,
info->drawable,
screen_data->selected_gc,
xoff + fgeom.title_rect.x,
yoff + fgeom.title_rect.y,
fgeom.title_rect.width,
fgeom.title_rect.height);
2001-06-03 21:39:57 +00:00
}
2001-06-04 04:58:22 +00:00
set_clip (info->display, layout_gc, &clip);
2001-06-03 21:39:57 +00:00
pango_x_render_layout (info->display,
info->drawable,
2001-06-04 04:58:22 +00:00
layout_gc,
2001-06-03 21:39:57 +00:00
d->layout,
xoff + fgeom.title_rect.x + HORIZONTAL_TEXT_PAD,
yoff + layout_y);
set_clip (info->display, screen_data->text_gc, NULL);
}
if (fgeom.close_rect.width > 0 && fgeom.close_rect.height > 0)
{
XDrawLine (info->display,
info->drawable,
screen_data->fg_gc,
xoff + fgeom.close_rect.x + INNER_BUTTON_PAD,
yoff + fgeom.close_rect.y + INNER_BUTTON_PAD,
xoff + fgeom.close_rect.x + fgeom.close_rect.width - INNER_BUTTON_PAD,
yoff + fgeom.close_rect.y + fgeom.close_rect.height - INNER_BUTTON_PAD);
XDrawLine (info->display,
info->drawable,
screen_data->fg_gc,
xoff + fgeom.close_rect.x + INNER_BUTTON_PAD,
yoff + fgeom.close_rect.y + fgeom.close_rect.height - INNER_BUTTON_PAD,
xoff + fgeom.close_rect.x + fgeom.close_rect.width - INNER_BUTTON_PAD,
yoff + fgeom.close_rect.y + INNER_BUTTON_PAD);
}
if (fgeom.max_rect.width > 0 && fgeom.max_rect.height > 0)
{
XDrawRectangle (info->display,
info->drawable,
screen_data->fg_gc,
xoff + fgeom.max_rect.x + INNER_BUTTON_PAD,
yoff + fgeom.max_rect.y + INNER_BUTTON_PAD,
fgeom.max_rect.width - INNER_BUTTON_PAD * 2,
fgeom.max_rect.height - INNER_BUTTON_PAD * 2);
vals.line_width = 3;
XChangeGC (info->display,
screen_data->fg_gc,
GCLineWidth,
&vals);
XDrawLine (info->display,
info->drawable,
screen_data->fg_gc,
xoff + fgeom.max_rect.x + INNER_BUTTON_PAD,
yoff + fgeom.max_rect.y + INNER_BUTTON_PAD + vals.line_width / 2,
xoff + fgeom.max_rect.x + fgeom.max_rect.width - INNER_BUTTON_PAD,
yoff + fgeom.max_rect.y + INNER_BUTTON_PAD + vals.line_width / 2);
vals.line_width = 0;
XChangeGC (info->display,
screen_data->fg_gc,
GCLineWidth,
&vals);
}
if (fgeom.min_rect.width > 0 && fgeom.min_rect.height > 0)
{
vals.line_width = 3;
XChangeGC (info->display,
screen_data->fg_gc,
GCLineWidth,
&vals);
XDrawLine (info->display,
info->drawable,
screen_data->fg_gc,
xoff + fgeom.min_rect.x + INNER_BUTTON_PAD,
yoff + fgeom.min_rect.y + fgeom.min_rect.height - INNER_BUTTON_PAD - vals.line_width / 2,
xoff + fgeom.min_rect.x + fgeom.min_rect.width - INNER_BUTTON_PAD,
yoff + fgeom.min_rect.y + fgeom.min_rect.height - INNER_BUTTON_PAD - vals.line_width / 2);
vals.line_width = 0;
XChangeGC (info->display,
screen_data->fg_gc,
GCLineWidth,
&vals);
}
2001-06-03 18:33:59 +00:00
2001-06-03 21:39:57 +00:00
if (fgeom.spacer_rect.width > 0 && fgeom.spacer_rect.height > 0)
{
draw_vline (info, info->drawable,
screen_data->light_gc,
screen_data->dark_gc,
yoff + fgeom.spacer_rect.y,
yoff + fgeom.spacer_rect.y + fgeom.spacer_rect.height,
xoff + fgeom.spacer_rect.x);
}
if (fgeom.menu_rect.width > 0 && fgeom.menu_rect.height > 0)
{
int x, y;
x = fgeom.menu_rect.x;
y = fgeom.menu_rect.y;
x += (fgeom.menu_rect.width - 7) / 2;
y += (fgeom.menu_rect.height - 5) / 2;
draw_varrow (info, info->drawable, screen_data->fg_gc, TRUE,
xoff + x, yoff + y, 7, 5);
}
2001-05-31 16:18:40 +00:00
}
2001-06-03 21:39:57 +00:00
#define POINT_IN_RECT(xcoord, ycoord, rect) \
((xcoord) >= (rect).x && \
(xcoord) < ((rect).x + (rect).width) && \
(ycoord) >= (rect).y && \
(ycoord) < ((rect).y + (rect).height))
2001-06-02 04:14:18 +00:00
#define RESIZE_EXTENDS 10
2001-06-03 18:33:59 +00:00
static MetaFrameControl
2001-05-31 16:18:40 +00:00
default_get_control (MetaFrameInfo *info,
int x, int y,
gpointer frame_data)
{
2001-06-02 04:14:18 +00:00
DefaultFrameData *d;
2001-06-03 21:39:57 +00:00
DefaultFrameGeometry fgeom;
2001-06-02 04:14:18 +00:00
d = frame_data;
2001-05-31 16:18:40 +00:00
2001-06-03 21:39:57 +00:00
calc_geometry (info, d, &fgeom);
if (POINT_IN_RECT (x, y, fgeom.close_rect))
2001-06-02 04:14:18 +00:00
return META_FRAME_CONTROL_DELETE;
2001-06-03 21:39:57 +00:00
if (POINT_IN_RECT (x, y, fgeom.title_rect))
2001-06-02 04:14:18 +00:00
return META_FRAME_CONTROL_TITLE;
2001-06-03 21:39:57 +00:00
if (y > (info->height - fgeom.bottom_height - RESIZE_EXTENDS) &&
x > (info->width - fgeom.right_width - RESIZE_EXTENDS))
2001-06-02 04:14:18 +00:00
return META_FRAME_CONTROL_RESIZE_SE;
2001-06-01 03:00:01 +00:00
return META_FRAME_CONTROL_NONE;
2001-05-31 16:18:40 +00:00
}
2001-06-03 18:33:59 +00:00
/* FIXME add this to engine vtable */
static void
default_release_screen (Screen *screen)
{
if (screen_data)
{
XFreeGC (DisplayOfScreen (screen), screen_data->text_gc);
XFreeGC (DisplayOfScreen (screen), screen_data->fg_gc);
2001-06-04 04:58:22 +00:00
XFreeGC (DisplayOfScreen (screen), screen_data->selected_gc);
XFreeGC (DisplayOfScreen (screen), screen_data->selected_text_gc);
XFreeGC (DisplayOfScreen (screen), screen_data->black_gc);
XFreeGC (DisplayOfScreen (screen), screen_data->light_gc);
XFreeGC (DisplayOfScreen (screen), screen_data->dark_gc);
2001-06-03 18:33:59 +00:00
}
}
2001-05-31 16:18:40 +00:00
MetaThemeEngine meta_default_engine = {
NULL,
default_acquire_frame,
default_release_frame,
default_fill_frame_geometry,
default_expose_frame,
default_get_control
};