~darkxst/ubuntu/quantal/gnome-shell/lp1128804

« back to all changes in this revision

Viewing changes to src/st/st-shadow.h

  • Committer: Package Import Robot
  • Author(s): Tim Lunn
  • Date: 2012-10-09 20:42:33 UTC
  • mfrom: (57.1.7 quantal)
  • Revision ID: package-import@ubuntu.com-20121009204233-chcl8989muuzfpws
Tags: 3.6.0-0ubuntu3
* debian/patches/ubuntu-lightdm-user-switching.patch
  - Fix user switching when running lightdm.  LP: #1064269
 

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
G_BEGIN_DECLS
27
27
 
28
28
#define ST_TYPE_SHADOW              (st_shadow_get_type ())
 
29
#define ST_TYPE_SHADOW_HELPER       (st_shadow_get_type ())
29
30
 
30
31
typedef struct _StShadow StShadow;
 
32
typedef struct _StShadowHelper StShadowHelper;
31
33
 
32
34
/**
33
35
 * StShadow:
70
72
                              const ClutterActorBox *actor_box,
71
73
                              ClutterActorBox       *shadow_box);
72
74
 
 
75
 
 
76
GType     st_shadow_helper_get_type (void) G_GNUC_CONST;
 
77
 
 
78
StShadowHelper *st_shadow_helper_new  (StShadow       *shadow);
 
79
 
 
80
StShadowHelper *st_shadow_helper_copy (StShadowHelper *helper);
 
81
void            st_shadow_helper_free (StShadowHelper *helper);
 
82
 
 
83
void            st_shadow_helper_update (StShadowHelper *helper,
 
84
                                         ClutterActor   *source);
 
85
 
 
86
void            st_shadow_helper_paint (StShadowHelper  *helper,
 
87
                                        ClutterActorBox *actor_box,
 
88
                                        guint8           paint_opacity);
 
89
 
73
90
G_END_DECLS
74
91
 
75
92
#endif /* __ST_SHADOW__ */