~jgonzalezdr/cairo-dock-plug-ins/suspend-workaround-applet_3.3

« back to all changes in this revision

Viewing changes to show-mouse/src/applet-notifications.h

  • Committer: Fabrice Rey
  • Date: 2013-05-19 17:26:37 UTC
  • Revision ID: fabounet03@gmail.com-20130519172637-cc4oyb5q3z0jd139
Here is quite a huge commit; it's "just" to update to the new core API

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include "applet-struct.h"
27
27
 
28
28
 
29
 
gboolean cd_show_mouse_render (gpointer pUserData, CairoContainer *pContainer, cairo_t *pCairoContext);
30
 
 
31
 
 
32
 
gboolean cd_show_mouse_update_container (gpointer pUserData, CairoContainer *pContainer, gboolean *bContinueAnimation);
33
 
 
34
 
 
35
 
gboolean cd_show_mouse_enter_container (gpointer pUserData, CairoContainer *pContainer, gboolean *bStartAnimation);
 
29
gboolean cd_show_mouse_render (gpointer pUserData, GldiContainer *pContainer, cairo_t *pCairoContext);
 
30
 
 
31
 
 
32
gboolean cd_show_mouse_update_container (gpointer pUserData, GldiContainer *pContainer, gboolean *bContinueAnimation);
 
33
 
 
34
 
 
35
gboolean cd_show_mouse_enter_container (gpointer pUserData, GldiContainer *pContainer, gboolean *bStartAnimation);
36
36
 
37
37
 
38
38
gdouble *cd_show_mouse_init_sources (void);
39
 
CairoParticleSystem *cd_show_mouse_init_system (CairoContainer *pContainer, double dt, double *pSourceCoords);
 
39
CairoParticleSystem *cd_show_mouse_init_system (GldiContainer *pContainer, double dt, double *pSourceCoords);
40
40
 
41
41
void cd_show_mouse_update_sources (CDShowMouseData *pData);
42
42
void cd_show_mouse_update_particle_system (CairoParticleSystem *pParticleSystem, CDShowMouseData *pData);
43
43
 
44
44
 
45
 
gboolean cd_show_mouse_free_data (gpointer pUserData, CairoContainer *pContainer);
 
45
gboolean cd_show_mouse_free_data (gpointer pUserData, GldiContainer *pContainer);
46
46
 
47
47
 
48
48
#endif