~ubuntu-branches/ubuntu/oneiric/cairo-dock/oneiric-201106091216

« back to all changes in this revision

Viewing changes to src/cairo-dock-global-variables.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthieu Baerts (matttbe), Matthieu Baerts (matttbe), Didier Roche
  • Date: 2010-03-01 21:24:00 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20100301212400-3a3csog6eonse3in
Tags: 2.1.3-6-0ubuntu1
[ Matthieu Baerts (matttbe) ]
* New Upstream Version. (LP: #521534)
* Updated debian/watch and debian/copyright with LP account.
* Removed debian/patches/02-merge-changelog.patch'
 - data/ChangeLog.txt has to respect a syntax and is used by CD.
* debian/cairo-dock.1:
 - Updated with the latest release.
 - The domain name 'cairo-dock.org' has changed to 'glx-dock.org'
* debian/control:
 - Changed the homepage and other links (glx-dock.org)
 - Updated cairo-dock-dev architecture to 'all' (it no longer contains compiled files)
* debian/cairo-dock-dev.install
 - libcairo-dock.a and libcairo-dock.so no longer exist
* debian/rules
 - removed uneeded changelog file
* Updated debian/patches/01-desktop-file-category.patch

[ Didier Roche ]
* Fix debian/watch
* Fix some issue in versionning
* debian/control: clean the packaging and add right -plugins depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
 
1
/*
2
2
* This file is a part of the Cairo-Dock project
3
3
*
4
4
* Copyright : (C) see the 'copyright' file.
44
44
/// Nombre de "faces" du cube en largeur et en hauteur.
45
45
extern int g_iNbViewportX, g_iNbViewportY ;
46
46
 
47
 
/// Largeur de la zone de rappel.
48
 
extern int g_iVisibleZoneWidth;
49
 
/// hauteur de la zone de rappel.
50
 
extern int g_iVisibleZoneHeight;
51
 
/// Surface de la zone de rappel.
52
 
extern cairo_surface_t *g_pVisibleZoneSurface;
53
 
extern double g_fVisibleZoneImageWidth, g_fVisibleZoneImageHeight;
 
47
/// zone de rappel.
 
48
extern CairoDockImageBuffer g_pVisibleZoneBuffer;
 
49
/// background
 
50
extern CairoDockImageBuffer g_pDockBackgroundBuffer;
 
51
/// indicateur de tache
 
52
extern CairoDockImageBuffer g_pIndicatorBuffer;
 
53
/// boite
 
54
extern CairoDockImageBuffer g_pBoxAboveBuffer;
 
55
extern CairoDockImageBuffer g_pBoxBelowBuffer;
 
56
/// icon bg
 
57
extern CairoDockImageBuffer g_pIconBackgroundBuffer;
 
58
 
54
59
 
55
60
/// Environnement de bureau detecte.
56
61
extern CairoDockDesktopEnv g_iDesktopEnv;
57
62
 
58
 
extern cairo_surface_t *g_pBackgroundSurfaceFull;
59
 
extern cairo_surface_t *g_pBackgroundSurface;
60
 
 
61
63
extern gboolean g_bEasterEggs;
62
64
 
63
 
extern GLuint g_iBackgroundTexture;
64
65
extern gboolean g_bUseOpenGL;
65
66
 
66
67
extern GLuint g_pGradationTexture[2];
67
68
extern GLuint g_iIndicatorTexture;
68
69
extern double g_fIndicatorWidth, g_fIndicatorHeight;
69
70
 
 
71
extern CairoDockModuleInstance *g_pCurrentModule;
 
72
 
70
73
G_END_DECLS
71
74
#endif