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

« back to all changes in this revision

Viewing changes to Indicator-applet3/indicator-applet3-utils.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:
30
30
 */
31
31
gboolean cd_indicator3_update_image (GtkImage *pImage,
32
32
        gchar **cName,
33
 
        CairoDockModuleInstance *myApplet,
 
33
        GldiModuleInstance *myApplet,
34
34
        const gchar *cDefaultFile);
35
35
 
36
36
/**
52
52
/**
53
53
 * Disconnect to the show/hide signal and hide the icon if it's needed
54
54
 */
55
 
void cd_indicator3_disconnect_visibility (GtkImage *pImage, CairoDockModuleInstance *myApplet, gboolean bHide);
 
55
void cd_indicator3_disconnect_visibility (GtkImage *pImage, GldiModuleInstance *myApplet, gboolean bHide);
56
56
 
57
57
/**
58
58
 * Check if the widget (pImage) exists and if it's visible.
59
59
 * If no, hide the icon and return TRUE
60
60
 */
61
 
gboolean cd_indicator3_hide_if_not_visible (GtkImage *pImage, CairoDockModuleInstance *myApplet);
 
61
gboolean cd_indicator3_hide_if_not_visible (GtkImage *pImage, GldiModuleInstance *myApplet);
62
62
 
63
63
/**
64
64
 * Check the visibility of a widget and then show/hide the icon
65
65
 */
66
 
void cd_indicator3_check_visibility (GtkImage *pImage, CairoDockModuleInstance *myApplet);
 
66
void cd_indicator3_check_visibility (GtkImage *pImage, GldiModuleInstance *myApplet);
67
67
 
68
68
#endif /* __CD_INDICATOR_APPLET3_UTILS__ */