/usr/include/cairo-dock/gldit/cairo-dock-overlay.h is in libgldi-dev 3.3.99.beta1.2.really.3.3.2-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | /*
* This file is a part of the Cairo-Dock project
*
* Copyright : (C) see the 'copyright' file.
* E-mail : see the 'copyright' file.
*
* 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 3
* 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef __CAIRO_DOCK_OVERLAY__
#define __CAIRO_DOCK_OVERLAY__
#include "cairo-dock-struct.h"
#include "cairo-dock-object.h"
#include "cairo-dock-image-buffer.h"
G_BEGIN_DECLS
/**
*@file cairo-dock-overlay.h This class defines Overlays, that are small images superimposed on the icon at a given position.
*
* To add an overlay to an icon, use \ref cairo_dock_add_overlay_from_image or \ref cairo_dock_add_overlay_from_surface.
* The overlay can then be removed from the icon by simply destroying it with \ref gldi_object_unref
*
* A common feature is to have only 1 overlay at a given position. This can be achieved by passing a non-NULL data to the creation functions. This data will identify all of your overlays.
* You can then remove an overlay simply from its position with \ref cairo_dock_remove_overlay_at_position, and adding an overlay at a position will automatically remove any previous overlay at this position with the same data.
*
* If you're never going to update nor remove an overlay, you can choose to print it directly onto the icon with \ref cairo_dock_print_overlay_on_icon_from_image or \ref cairo_dock_print_overlay_on_icon_from_surface, which is slightly faster.
*
* Overlays are drawn at 1/2 of the icon size by default, but this can be set up with \ref cairo_dock_set_overlay_scale.
* If you need to modify an overlay directly, you can get its image buffer with \ref cairo_dock_get_overlay_image_buffer.
*/
// manager
typedef struct _CairoOverlayAttr CairoOverlayAttr;
#ifndef _MANAGER_DEF_
extern GldiObjectManager myOverlayObjectMgr;
#endif
/// Available position of an overlay on an icon.
typedef enum {
CAIRO_OVERLAY_UPPER_LEFT,
CAIRO_OVERLAY_LOWER_RIGHT,
CAIRO_OVERLAY_LOWER_LEFT,
CAIRO_OVERLAY_UPPER_RIGHT,
CAIRO_OVERLAY_MIDDLE,
CAIRO_OVERLAY_BOTTOM,
CAIRO_OVERLAY_TOP,
CAIRO_OVERLAY_RIGHT,
CAIRO_OVERLAY_LEFT,
CAIRO_OVERLAY_NB_POSITIONS,
} CairoOverlayPosition;
struct _CairoOverlayAttr {
CairoOverlayPosition iPosition;
Icon *pIcon;
gpointer data;
const gchar *cImageFile;
cairo_surface_t *pSurface;
int iWidth, iHeight;
GLuint iTexture;
};
// signals
typedef enum {
NB_NOTIFICATIONS_OVERLAYS = NB_NOTIFICATIONS_OBJECT
} CairoOverlayNotifications;
/// Definition of an Icon Overlay.
struct _CairoOverlay {
/// object
GldiObject object;
/// image buffer
CairoDockImageBuffer image;
/// position on the icon
CairoOverlayPosition iPosition;
/// scale at which to draw the overlay, relatively to the icon (0.5 by default, 1 will cover the whole icon, 0 means to draw at the actual buffer size).
gdouble fScale;
/// icon it belongs to.
Icon *pIcon;
/// data used to identify an overlay
gpointer data;
} ;
///////////////////
// OVERLAY CLASS //
///////////////////
/** Add an overlay on an icon from an image.
*@param pIcon the icon
*@param cImageFile an image (if it's not a path, it is searched amongst the current theme's images)
*@param iPosition position where to display the overlay
*@return the overlay, or NULL if the image couldn't be loaded.
*@param data data that will be used to look for the overlay in \ref cairo_dock_remove_overlay_at_position; if NULL, then this function can't be used
*/
CairoOverlay *cairo_dock_add_overlay_from_image (Icon *pIcon, const gchar *cImageFile, CairoOverlayPosition iPosition, gpointer data);
/** Add an overlay on an icon from a surface.
*@param pIcon the icon
*@param pSurface a cairo surface
*@param iWidth width of the surface
*@param iHeight height of the surface
*@param iPosition position where to display the overlay
*@param data data that will be used to look for the overlay in \ref cairo_dock_remove_overlay_at_position; if NULL, then this function can't be used
*@return the overlay.
*/
CairoOverlay *cairo_dock_add_overlay_from_surface (Icon *pIcon, cairo_surface_t *pSurface, int iWidth, int iHeight, CairoOverlayPosition iPosition, gpointer data);
/** Add an overlay on an icon from a texture.
*@param pIcon the icon
*@param iTexture a texture
*@param iPosition position where to display the overlay
*@param data data that will be used to look for the overlay in \ref cairo_dock_remove_overlay_at_position; if NULL, then this function can't be used
*@return the overlay.
*/
CairoOverlay *cairo_dock_add_overlay_from_texture (Icon *pIcon, GLuint iTexture, CairoOverlayPosition iPosition, gpointer data);
/** Set the scale of an overlay; by default it's 0.5
*@param pOverlay the overlay
*@param _fScale the scale
*/
#define cairo_dock_set_overlay_scale(pOverlay, _fScale) (pOverlay)->fScale = _fScale
/** Get the image buffer of an overlay (only useful if you need to redraw the overlay).
*@param pOverlay the overlay
*/
#define cairo_dock_get_overlay_image_buffer(pOverlay) (&(pOverlay)->image)
/** Remove an overlay from an icon, given its position and data.
*@param pIcon the icon
*@param iPosition the position of the overlay
*@param data data that was set on the overlay when created; a NULL pointer is not valid.
*/
void cairo_dock_remove_overlay_at_position (Icon *pIcon, CairoOverlayPosition iPosition, gpointer data);
///////////////////
// ICON OVERLAYS //
///////////////////
void cairo_dock_destroy_icon_overlays (Icon *pIcon);
void cairo_dock_draw_icon_overlays_cairo (Icon *pIcon, double fRatio, cairo_t *pCairoContext);
void cairo_dock_draw_icon_overlays_opengl (Icon *pIcon, double fRatio);
///////////
// PRINT //
///////////
/** Print an overlay onto an icon from an image at a given position. You can't remove/modify the overlay then. The overlay will be displayed until you modify the icon directly (for instance by setting a new image).
*@param pIcon the icon
*@param cImageFile an image (if it's not a path, it is searched amongst the current theme's images)
*@param iPosition position where to display the overlay
*@return TRUE if the overlay has been successfuly printed.
*/
gboolean cairo_dock_print_overlay_on_icon_from_image (Icon *pIcon, const gchar *cImageFile, CairoOverlayPosition iPosition);
/** Print an overlay onto an icon from a surface at a given position. You can't remove/modify the overlay then. The overlay will be displayed until you modify the icon directly (for instance by setting a new image).
*@param pIcon the icon
*@param pSurface a cairo surface
*@param iWidth width of the surface
*@param iHeight height of the surface
*@param iPosition position where to display the overlay
*@return TRUE if the overlay has been successfuly printed.
*/
void cairo_dock_print_overlay_on_icon_from_surface (Icon *pIcon, cairo_surface_t *pSurface, int iWidth, int iHeight, CairoOverlayPosition iPosition);
void cairo_dock_print_overlay_on_icon_from_texture (Icon *pIcon, GLuint iTexture, CairoOverlayPosition iPosition);
void gldi_register_overlays_manager (void);
G_END_DECLS
#endif
|