2002-01-05 23:51:53 -05:00
|
|
|
/* Metacity Theme Rendering */
|
2001-05-31 12:18:40 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_THEME_H
|
|
|
|
#define META_THEME_H
|
|
|
|
|
2002-01-06 12:52:21 -05:00
|
|
|
#include "gradient.h"
|
2002-01-18 22:50:03 -05:00
|
|
|
#include "common.h"
|
2002-01-08 02:23:35 -05:00
|
|
|
#include <gtk/gtkrc.h>
|
2001-05-31 12:18:40 -04:00
|
|
|
|
2002-01-06 22:26:09 -05:00
|
|
|
typedef struct _MetaFrameStyle MetaFrameStyle;
|
2002-01-08 02:23:35 -05:00
|
|
|
typedef struct _MetaFrameStyleSet MetaFrameStyleSet;
|
|
|
|
typedef struct _MetaTextureSpec MetaTextureSpec;
|
|
|
|
typedef struct _MetaGradientSpec MetaGradientSpec;
|
|
|
|
typedef struct _MetaColorSpec MetaColorSpec;
|
2002-01-27 21:09:12 -05:00
|
|
|
typedef struct _MetaShapeSpec MetaShapeSpec;
|
2002-01-18 22:50:03 -05:00
|
|
|
typedef struct _MetaFrameLayout MetaFrameLayout;
|
|
|
|
typedef struct _MetaFrameGeometry MetaFrameGeometry;
|
2002-01-27 03:21:53 -05:00
|
|
|
typedef struct _MetaTheme MetaTheme;
|
2002-01-18 22:50:03 -05:00
|
|
|
|
2002-01-27 21:09:12 -05:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_TEXTURE_DRAW_UNSCALED,
|
|
|
|
META_TEXTURE_DRAW_SCALED_VERTICALLY,
|
|
|
|
META_TEXTURE_DRAW_SCALED_HORIZONTALLY,
|
|
|
|
META_TEXTURE_DRAW_SCALED_BOTH
|
|
|
|
} MetaTextureDrawMode;
|
|
|
|
|
2002-01-18 22:50:03 -05:00
|
|
|
/* Parameters used to calculate the geometry of the frame */
|
|
|
|
struct _MetaFrameLayout
|
|
|
|
{
|
|
|
|
/* Size of left/right/bottom sides */
|
|
|
|
int left_width;
|
|
|
|
int right_width;
|
|
|
|
int bottom_height;
|
|
|
|
|
|
|
|
/* Border of blue title region */
|
|
|
|
GtkBorder title_border;
|
|
|
|
|
|
|
|
/* Border inside title region, around title */
|
|
|
|
GtkBorder text_border;
|
|
|
|
|
|
|
|
/* padding on either side of spacer */
|
|
|
|
int spacer_padding;
|
|
|
|
|
|
|
|
/* Size of spacer */
|
|
|
|
int spacer_width;
|
|
|
|
int spacer_height;
|
|
|
|
|
|
|
|
/* indent of buttons from edges of frame */
|
|
|
|
int right_inset;
|
|
|
|
int left_inset;
|
|
|
|
|
|
|
|
/* Size of buttons */
|
|
|
|
int button_width;
|
|
|
|
int button_height;
|
|
|
|
|
|
|
|
/* Space around buttons */
|
|
|
|
GtkBorder button_border;
|
|
|
|
|
|
|
|
/* Space inside button which is clickable but doesn't draw the
|
|
|
|
* button icon
|
|
|
|
*/
|
|
|
|
GtkBorder inner_button_border;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Calculated actual geometry of the frame */
|
|
|
|
struct _MetaFrameGeometry
|
|
|
|
{
|
|
|
|
int left_width;
|
|
|
|
int right_width;
|
|
|
|
int top_height;
|
|
|
|
int bottom_height;
|
|
|
|
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
|
|
|
|
GdkRectangle close_rect;
|
|
|
|
GdkRectangle max_rect;
|
|
|
|
GdkRectangle min_rect;
|
|
|
|
GdkRectangle spacer_rect;
|
|
|
|
GdkRectangle menu_rect;
|
|
|
|
GdkRectangle title_rect;
|
2002-01-28 00:16:04 -05:00
|
|
|
|
|
|
|
int left_titlebar_edge;
|
|
|
|
int right_titlebar_edge;
|
|
|
|
int top_titlebar_edge;
|
|
|
|
int bottom_titlebar_edge;
|
2002-01-18 22:50:03 -05:00
|
|
|
};
|
|
|
|
|
2001-05-31 12:18:40 -04:00
|
|
|
|
2002-01-08 02:23:35 -05:00
|
|
|
typedef enum
|
2002-01-06 22:26:09 -05:00
|
|
|
{
|
2002-01-08 02:23:35 -05:00
|
|
|
META_COLOR_SPEC_BASIC,
|
|
|
|
META_COLOR_SPEC_GTK,
|
|
|
|
META_COLOR_SPEC_BLEND
|
|
|
|
} MetaColorSpecType;
|
|
|
|
|
|
|
|
struct _MetaColorSpec
|
|
|
|
{
|
|
|
|
MetaColorSpecType type;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct {
|
|
|
|
GdkColor color;
|
|
|
|
} basic;
|
|
|
|
struct {
|
|
|
|
GtkRcFlags component;
|
|
|
|
GtkStateType state;
|
|
|
|
} gtk;
|
|
|
|
struct {
|
|
|
|
MetaColorSpec *foreground;
|
|
|
|
MetaColorSpec *background;
|
|
|
|
double alpha;
|
|
|
|
} blend;
|
|
|
|
} data;
|
|
|
|
};
|
|
|
|
|
2002-01-27 21:09:12 -05:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
/* Basic drawing */
|
|
|
|
META_SHAPE_LINE,
|
|
|
|
META_SHAPE_RECTANGLE,
|
|
|
|
META_SHAPE_ARC,
|
|
|
|
|
|
|
|
/* Texture in a specific rectangle */
|
|
|
|
META_SHAPE_TEXTURE,
|
|
|
|
|
|
|
|
/* GTK theme engine stuff */
|
|
|
|
META_SHAPE_GTK_ARROW,
|
|
|
|
META_SHAPE_GTK_BOX,
|
|
|
|
META_SHAPE_GTK_VLINE
|
|
|
|
} MetaShapeType;
|
|
|
|
|
|
|
|
struct _MetaShapeSpec
|
|
|
|
{
|
|
|
|
MetaShapeType type;
|
|
|
|
|
|
|
|
/* Positions are strings because they can be expressions */
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct {
|
|
|
|
MetaColorSpec *color_spec;
|
|
|
|
int dash_on_length;
|
|
|
|
int dash_off_length;
|
|
|
|
int width;
|
|
|
|
char *x1;
|
|
|
|
char *y1;
|
|
|
|
char *x2;
|
|
|
|
char *y2;
|
|
|
|
} line;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
MetaColorSpec *color_spec;
|
|
|
|
gboolean filled;
|
|
|
|
char *x;
|
|
|
|
char *y;
|
|
|
|
char *width;
|
|
|
|
char *height;
|
|
|
|
} rectangle;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
MetaColorSpec *color_spec;
|
|
|
|
gboolean filled;
|
|
|
|
char *x;
|
|
|
|
char *y;
|
|
|
|
char *width;
|
|
|
|
char *height;
|
|
|
|
double start_angle;
|
|
|
|
double extent_angle;
|
|
|
|
} arc;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
MetaTextureSpec *texture_spec;
|
|
|
|
MetaTextureDrawMode mode;
|
|
|
|
double xalign;
|
|
|
|
double yalign;
|
|
|
|
char *x;
|
|
|
|
char *y;
|
|
|
|
char *width;
|
|
|
|
char *height;
|
|
|
|
} texture;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
GtkStateType state;
|
|
|
|
GtkShadowType shadow;
|
|
|
|
GtkArrowType arrow;
|
2002-01-28 00:16:04 -05:00
|
|
|
gboolean filled;
|
2002-01-27 21:09:12 -05:00
|
|
|
char *x;
|
|
|
|
char *y;
|
|
|
|
char *width;
|
|
|
|
char *height;
|
|
|
|
} gtk_arrow;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
GtkStateType state;
|
|
|
|
GtkShadowType shadow;
|
|
|
|
char *x;
|
|
|
|
char *y;
|
|
|
|
char *width;
|
|
|
|
char *height;
|
|
|
|
} gtk_box;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
GtkStateType state;
|
|
|
|
char *x;
|
|
|
|
char *y1;
|
|
|
|
char *y2;
|
|
|
|
} gtk_vline;
|
|
|
|
|
|
|
|
} data;
|
|
|
|
};
|
|
|
|
|
2002-01-08 02:23:35 -05:00
|
|
|
struct _MetaGradientSpec
|
|
|
|
{
|
|
|
|
MetaGradientType type;
|
|
|
|
GSList *color_specs;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_TEXTURE_SOLID,
|
|
|
|
META_TEXTURE_GRADIENT,
|
2002-01-27 02:32:46 -05:00
|
|
|
META_TEXTURE_IMAGE,
|
2002-01-28 00:16:04 -05:00
|
|
|
META_TEXTURE_COMPOSITE,
|
|
|
|
META_TEXTURE_BLANK,
|
|
|
|
META_TEXTURE_SHAPE_LIST
|
2002-01-08 02:23:35 -05:00
|
|
|
} MetaTextureType;
|
|
|
|
|
|
|
|
struct _MetaTextureSpec
|
|
|
|
{
|
|
|
|
MetaTextureType type;
|
|
|
|
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct {
|
|
|
|
MetaColorSpec *color_spec;
|
|
|
|
} solid;
|
|
|
|
struct {
|
|
|
|
MetaGradientSpec *gradient_spec;
|
|
|
|
} gradient;
|
|
|
|
struct {
|
|
|
|
GdkPixbuf *pixbuf;
|
|
|
|
} image;
|
2002-01-27 02:32:46 -05:00
|
|
|
struct {
|
|
|
|
MetaTextureSpec *background;
|
|
|
|
MetaTextureSpec *foreground;
|
|
|
|
double alpha;
|
|
|
|
} composite;
|
2002-01-28 00:16:04 -05:00
|
|
|
struct {
|
|
|
|
int dummy;
|
|
|
|
} blank;
|
|
|
|
struct {
|
|
|
|
MetaShapeSpec **shape_specs;
|
|
|
|
int n_specs;
|
|
|
|
} shape_list;
|
2002-01-08 02:23:35 -05:00
|
|
|
} data;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2002-01-28 00:16:04 -05:00
|
|
|
META_BUTTON_STATE_NORMAL,
|
2002-01-08 02:23:35 -05:00
|
|
|
META_BUTTON_STATE_PRESSED,
|
|
|
|
META_BUTTON_STATE_PRELIGHT,
|
|
|
|
META_BUTTON_STATE_LAST
|
|
|
|
} MetaButtonState;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_BUTTON_TYPE_CLOSE,
|
|
|
|
META_BUTTON_TYPE_MAXIMIZE,
|
|
|
|
META_BUTTON_TYPE_MINIMIZE,
|
|
|
|
META_BUTTON_TYPE_MENU,
|
|
|
|
META_BUTTON_TYPE_LAST
|
|
|
|
} MetaButtonType;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
/* Listed in the order in which the textures are drawn.
|
|
|
|
* (though this only matters for overlaps of course.)
|
|
|
|
* Buttons are drawn after the frame textures.
|
|
|
|
*
|
|
|
|
* On the corners, horizontal pieces are arbitrarily given the
|
|
|
|
* corner area:
|
|
|
|
*
|
|
|
|
* ===== |====
|
|
|
|
* | |
|
|
|
|
* | rather than |
|
|
|
|
*
|
|
|
|
*/
|
2002-01-06 22:26:09 -05:00
|
|
|
|
2002-01-08 02:23:35 -05:00
|
|
|
/* place over entire frame, scaled both */
|
|
|
|
META_FRAME_PIECE_ENTIRE_BACKGROUND,
|
|
|
|
/* place over entire titlebar background, scaled both */
|
|
|
|
META_FRAME_PIECE_TITLEBAR_BACKGROUND,
|
|
|
|
/* place on left end of titlebar, scaled vert */
|
|
|
|
META_FRAME_PIECE_LEFT_TITLEBAR_EDGE,
|
|
|
|
/* place on right end of titlebar, scaled vert */
|
|
|
|
META_FRAME_PIECE_RIGHT_TITLEBAR_EDGE,
|
|
|
|
/* place on top edge of titlebar, scaled horiz */
|
|
|
|
META_FRAME_PIECE_TOP_TITLEBAR_EDGE,
|
|
|
|
/* place on bottom edge of titlebar, scaled horiz */
|
|
|
|
META_FRAME_PIECE_BOTTOM_TITLEBAR_EDGE,
|
|
|
|
/* place on left end of top edge of titlebar, unscaled */
|
|
|
|
META_FRAME_PIECE_LEFT_END_OF_TOP_TITLEBAR_EDGE,
|
|
|
|
/* place on right end of top edge of titlebar, unscaled */
|
|
|
|
META_FRAME_PIECE_RIGHT_END_OF_TOP_TITLEBAR_EDGE,
|
|
|
|
/* place on left end of bottom edge of titlebar, unscaled */
|
|
|
|
META_FRAME_PIECE_LEFT_END_OF_BOTTOM_TITLEBAR_EDGE,
|
|
|
|
/* place on right end of bottom edge of titlebar, unscaled */
|
|
|
|
META_FRAME_PIECE_RIGHT_END_OF_BOTTOM_TITLEBAR_EDGE,
|
|
|
|
/* place on top end of left titlebar edge, unscaled */
|
|
|
|
META_FRAME_PIECE_TOP_END_OF_LEFT_TITLEBAR_EDGE,
|
|
|
|
/* place on bottom end of left titlebar edge, unscaled */
|
|
|
|
META_FRAME_PIECE_BOTTOM_END_OF_LEFT_TITLEBAR_EDGE,
|
|
|
|
/* place on top end of right titlebar edge, unscaled */
|
|
|
|
META_FRAME_PIECE_TOP_END_OF_RIGHT_TITLEBAR_EDGE,
|
|
|
|
/* place on bottom end of right titlebar edge, unscaled */
|
|
|
|
META_FRAME_PIECE_BOTTOM_END_OF_RIGHT_TITLEBAR_EDGE,
|
|
|
|
/* render over title background (text area), scaled both */
|
|
|
|
META_FRAME_PIECE_TITLE_BACKGROUND,
|
|
|
|
/* render over left side of TITLE_BACKGROUND, scaled vert */
|
|
|
|
META_FRAME_PIECE_LEFT_TITLE_BACKGROUND,
|
|
|
|
/* render over right side of TITLE_BACKGROUND, scaled vert */
|
|
|
|
META_FRAME_PIECE_RIGHT_TITLE_BACKGROUND,
|
|
|
|
/* place on left edge of the frame, scaled vert */
|
|
|
|
META_FRAME_PIECE_LEFT_EDGE,
|
|
|
|
/* place on right edge of the frame, scaled vert */
|
|
|
|
META_FRAME_PIECE_RIGHT_EDGE,
|
|
|
|
/* place on bottom edge of the frame, scaled horiz */
|
|
|
|
META_FRAME_PIECE_BOTTOM_EDGE,
|
|
|
|
/* place on top end of left edge of the frame, unscaled */
|
|
|
|
META_FRAME_PIECE_TOP_END_OF_LEFT_EDGE,
|
|
|
|
/* place on bottom end of left edge of the frame, unscaled */
|
|
|
|
META_FRAME_PIECE_BOTTOM_END_OF_LEFT_EDGE,
|
|
|
|
/* place on top end of right edge of the frame, unscaled */
|
|
|
|
META_FRAME_PIECE_TOP_END_OF_RIGHT_EDGE,
|
|
|
|
/* place on bottom end of right edge of the frame, unscaled */
|
|
|
|
META_FRAME_PIECE_BOTTOM_END_OF_RIGHT_EDGE,
|
|
|
|
/* place on left end of bottom edge of the frame, unscaled */
|
|
|
|
META_FRAME_PIECE_LEFT_END_OF_BOTTOM_EDGE,
|
|
|
|
/* place on right end of bottom edge of the frame, unscaled */
|
|
|
|
META_FRAME_PIECE_RIGHT_END_OF_BOTTOM_EDGE,
|
2002-01-27 21:09:12 -05:00
|
|
|
/* place over entire frame, after drawing everything else */
|
|
|
|
META_FRAME_PIECE_OVERLAY,
|
2002-01-08 02:23:35 -05:00
|
|
|
/* Used to get size of the enum */
|
|
|
|
META_FRAME_PIECE_LAST
|
|
|
|
} MetaFramePiece;
|
|
|
|
|
|
|
|
struct _MetaFrameStyle
|
|
|
|
{
|
2002-01-19 18:59:11 -05:00
|
|
|
int refcount;
|
2002-01-27 21:09:12 -05:00
|
|
|
MetaFrameStyle *parent;
|
2002-01-08 02:23:35 -05:00
|
|
|
MetaTextureSpec *button_icons[META_BUTTON_TYPE_LAST][META_BUTTON_STATE_LAST];
|
|
|
|
MetaTextureSpec *button_backgrounds[META_BUTTON_TYPE_LAST][META_BUTTON_STATE_LAST];
|
2002-01-18 22:50:03 -05:00
|
|
|
MetaTextureSpec *pieces[META_FRAME_PIECE_LAST];
|
|
|
|
MetaFrameLayout *layout;
|
2002-01-06 22:26:09 -05:00
|
|
|
};
|
2002-01-05 23:51:53 -05:00
|
|
|
|
2002-01-27 21:09:12 -05:00
|
|
|
/* Kinds of frame...
|
|
|
|
*
|
2002-01-27 03:21:53 -05:00
|
|
|
* normal -> noresize / vert only / horz only / both
|
|
|
|
* focused / unfocused
|
|
|
|
* max -> focused / unfocused
|
|
|
|
* shaded -> focused / unfocused
|
|
|
|
* max/shaded -> focused / unfocused
|
|
|
|
*
|
|
|
|
* so 4 states with 8 sub-states in one, 2 sub-states in the other 3,
|
|
|
|
* meaning 14 total
|
|
|
|
*
|
|
|
|
* 14 window states times 7 or 8 window types. Except some
|
|
|
|
* window types never get a frame so that narrows it down a bit.
|
|
|
|
*
|
|
|
|
*/
|
2002-01-08 02:23:35 -05:00
|
|
|
typedef enum
|
|
|
|
{
|
2002-01-27 21:09:12 -05:00
|
|
|
META_FRAME_STATE_NORMAL,
|
|
|
|
META_FRAME_STATE_MAXIMIZED,
|
|
|
|
META_FRAME_STATE_SHADED,
|
|
|
|
META_FRAME_STATE_MAXIMIZED_AND_SHADED,
|
|
|
|
META_FRAME_STATE_LAST
|
|
|
|
} MetaFrameState;
|
2002-01-19 18:59:11 -05:00
|
|
|
|
2002-01-27 03:21:53 -05:00
|
|
|
typedef enum
|
|
|
|
{
|
2002-01-27 21:09:12 -05:00
|
|
|
META_FRAME_RESIZE_NONE,
|
|
|
|
META_FRAME_RESIZE_VERTICAL,
|
|
|
|
META_FRAME_RESIZE_HORIZONTAL,
|
|
|
|
META_FRAME_RESIZE_BOTH,
|
|
|
|
META_FRAME_RESIZE_LAST
|
|
|
|
} MetaFrameResize;
|
2002-01-27 03:21:53 -05:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2002-01-27 21:09:12 -05:00
|
|
|
META_FRAME_FOCUS_NO,
|
|
|
|
META_FRAME_FOCUS_YES,
|
|
|
|
META_FRAME_FOCUS_LAST
|
|
|
|
} MetaFrameFocus;
|
2002-01-27 03:21:53 -05:00
|
|
|
|
|
|
|
/* One StyleSet per window type (for window types that get a frame) */
|
2002-01-19 18:59:11 -05:00
|
|
|
struct _MetaFrameStyleSet
|
|
|
|
{
|
2002-01-27 21:09:12 -05:00
|
|
|
int refcount;
|
|
|
|
MetaFrameStyleSet *parent;
|
|
|
|
MetaFrameStyle *normal_styles[META_FRAME_RESIZE_LAST][META_FRAME_FOCUS_LAST];
|
|
|
|
MetaFrameStyle *maximized_styles[META_FRAME_FOCUS_LAST];
|
|
|
|
MetaFrameStyle *shaded_styles[META_FRAME_FOCUS_LAST];
|
|
|
|
MetaFrameStyle *maximized_and_shaded_styles[META_FRAME_FOCUS_LAST];
|
2002-01-27 03:21:53 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _MetaTheme
|
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
char *filename;
|
2002-01-27 21:09:12 -05:00
|
|
|
|
|
|
|
GHashTable *styles_by_name;
|
|
|
|
GHashTable *style_sets_by_name;
|
|
|
|
MetaFrameStyleSet *style_sets_by_type[META_FRAME_TYPE_LAST];
|
2002-01-19 18:59:11 -05:00
|
|
|
};
|
2002-01-08 02:23:35 -05:00
|
|
|
|
2002-01-18 22:50:03 -05:00
|
|
|
MetaFrameLayout* meta_frame_layout_new (void);
|
|
|
|
void meta_frame_layout_free (MetaFrameLayout *layout);
|
2002-01-19 18:59:11 -05:00
|
|
|
void meta_frame_layout_get_borders (const MetaFrameLayout *layout,
|
|
|
|
GtkWidget *widget,
|
|
|
|
int text_height,
|
|
|
|
MetaFrameFlags flags,
|
|
|
|
int *top_height,
|
|
|
|
int *bottom_height,
|
|
|
|
int *left_width,
|
|
|
|
int *right_width);
|
2002-01-18 22:50:03 -05:00
|
|
|
void meta_frame_layout_calc_geometry (const MetaFrameLayout *layout,
|
|
|
|
GtkWidget *widget,
|
|
|
|
int text_height,
|
|
|
|
MetaFrameFlags flags,
|
|
|
|
int client_width,
|
|
|
|
int client_height,
|
|
|
|
MetaFrameGeometry *fgeom);
|
|
|
|
|
2002-01-27 21:09:12 -05:00
|
|
|
#define META_POSITION_EXPR_ERROR (g_quark_from_static_string ("meta-position-expr-error"))
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_POSITION_EXPR_ERROR_BAD_CHARACTER,
|
|
|
|
META_POSITION_EXPR_ERROR_BAD_PARENS,
|
|
|
|
META_POSITION_EXPR_ERROR_UNKNOWN_VARIABLE,
|
|
|
|
META_POSITION_EXPR_ERROR_DIVIDE_BY_ZERO,
|
|
|
|
META_POSITION_EXPR_ERROR_MOD_ON_FLOAT,
|
|
|
|
META_POSITION_EXPR_ERROR_FAILED
|
|
|
|
} MetaPositionExprError;
|
|
|
|
|
2002-01-28 00:16:04 -05:00
|
|
|
gboolean meta_parse_position_expression (const char *expr,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
int *x_return,
|
|
|
|
int *y_return,
|
|
|
|
GError **err);
|
|
|
|
gboolean meta_parse_size_expression (const char *expr,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
int *val_return,
|
|
|
|
GError **err);
|
|
|
|
|
2002-01-19 18:59:11 -05:00
|
|
|
|
2002-01-08 02:23:35 -05:00
|
|
|
MetaColorSpec* meta_color_spec_new (MetaColorSpecType type);
|
|
|
|
void meta_color_spec_free (MetaColorSpec *spec);
|
|
|
|
void meta_color_spec_render (MetaColorSpec *spec,
|
|
|
|
GtkWidget *widget,
|
|
|
|
GdkColor *color);
|
|
|
|
|
2002-01-27 21:09:12 -05:00
|
|
|
MetaShapeSpec* meta_shape_spec_new (MetaShapeType type);
|
|
|
|
void meta_shape_spec_free (MetaShapeSpec *spec);
|
|
|
|
void meta_shape_spec_draw (const MetaShapeSpec *spec,
|
|
|
|
GtkWidget *widget,
|
|
|
|
GdkDrawable *drawable,
|
|
|
|
const GdkRectangle *clip,
|
|
|
|
/* logical region being drawn,
|
|
|
|
* shape coords are offset by
|
|
|
|
* x,y and w/h variables are
|
|
|
|
* available in shape coord
|
|
|
|
* expressions.
|
|
|
|
*/
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height);
|
|
|
|
|
2002-01-08 02:23:35 -05:00
|
|
|
MetaGradientSpec* meta_gradient_spec_new (MetaGradientType type);
|
|
|
|
void meta_gradient_spec_free (MetaGradientSpec *desc);
|
|
|
|
GdkPixbuf* meta_gradient_spec_render (const MetaGradientSpec *desc,
|
|
|
|
GtkWidget *widget,
|
|
|
|
int width,
|
|
|
|
int height);
|
|
|
|
|
|
|
|
MetaTextureSpec* meta_texture_spec_new (MetaTextureType type);
|
|
|
|
void meta_texture_spec_free (MetaTextureSpec *desc);
|
|
|
|
void meta_texture_spec_draw (const MetaTextureSpec *desc,
|
|
|
|
GtkWidget *widget,
|
|
|
|
GdkDrawable *drawable,
|
|
|
|
const GdkRectangle *clip,
|
|
|
|
MetaTextureDrawMode mode,
|
2002-01-27 02:32:46 -05:00
|
|
|
/* How to align a texture
|
|
|
|
* smaller than the given area
|
|
|
|
*/
|
|
|
|
double xalign,
|
|
|
|
double yalign,
|
2002-01-08 02:23:35 -05:00
|
|
|
/* logical region being drawn,
|
|
|
|
* scale to this area if in SCALED
|
|
|
|
* mode
|
|
|
|
*/
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height);
|
2001-05-31 12:18:40 -04:00
|
|
|
|
2002-01-27 21:09:12 -05:00
|
|
|
MetaFrameStyle* meta_frame_style_new (MetaFrameStyle *parent);
|
2002-01-19 18:59:11 -05:00
|
|
|
void meta_frame_style_ref (MetaFrameStyle *style);
|
|
|
|
void meta_frame_style_unref (MetaFrameStyle *style);
|
|
|
|
|
2002-01-28 00:16:04 -05:00
|
|
|
void meta_frame_style_draw (MetaFrameStyle *style,
|
|
|
|
GtkWidget *widget,
|
|
|
|
GdkDrawable *drawable,
|
|
|
|
const GdkRectangle *clip,
|
|
|
|
MetaFrameFlags flags,
|
|
|
|
int client_width,
|
|
|
|
int client_height,
|
|
|
|
PangoLayout *title_layout,
|
|
|
|
int text_height,
|
|
|
|
MetaButtonState button_states[META_BUTTON_TYPE_LAST]);
|
|
|
|
|
2002-01-27 21:09:12 -05:00
|
|
|
MetaFrameStyleSet* meta_frame_style_set_new (MetaFrameStyleSet *parent);
|
|
|
|
void meta_frame_style_set_ref (MetaFrameStyleSet *style_set);
|
|
|
|
void meta_frame_style_set_unref (MetaFrameStyleSet *style_set);
|
|
|
|
|
|
|
|
MetaTheme* meta_theme_new (void);
|
|
|
|
void meta_theme_free (MetaTheme *theme);
|
2002-01-19 18:59:11 -05:00
|
|
|
|
2001-05-31 12:18:40 -04:00
|
|
|
#endif
|