2009-07-31 16:32:24 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
#ifndef __SHELL_DRAWING_H__
|
|
|
|
#define __SHELL_DRAWING_H__
|
|
|
|
|
|
|
|
#include <clutter/clutter.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
ClutterCairoTexture *shell_create_vertical_gradient (ClutterColor *top,
|
|
|
|
ClutterColor *bottom);
|
|
|
|
|
|
|
|
ClutterCairoTexture *shell_create_horizontal_gradient (ClutterColor *left,
|
|
|
|
ClutterColor *right);
|
|
|
|
|
2009-09-01 14:15:29 -04:00
|
|
|
void shell_draw_box_pointer (ClutterCairoTexture *texture,
|
2009-09-18 09:12:25 -04:00
|
|
|
ClutterGravity pointing_towards,
|
2009-09-01 14:15:29 -04:00
|
|
|
ClutterColor *border_color,
|
|
|
|
ClutterColor *background_color);
|
|
|
|
|
2009-07-31 16:32:24 -04:00
|
|
|
void shell_draw_clock (ClutterCairoTexture *texture,
|
|
|
|
int hour,
|
|
|
|
int minute);
|
|
|
|
|
2009-08-04 09:48:15 -04:00
|
|
|
guint shell_add_hook_paint_red_border (ClutterActor *actor);
|
|
|
|
|
2009-07-31 16:32:24 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __SHELL_GLOBAL_H__ */
|