~cairo-dock-team/ubuntu/precise/cairo-dock/988102

« back to all changes in this revision

Viewing changes to src/cairo-dock-default-view.h

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2008-09-14 16:26:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080914162612-t6aa8pr2o0qry48o
Tags: 1.6.2.3-0ubuntu1
* New upstream release.
* debian/control
 - Update to 3.8.0 (no change needed).
 - Add libxtst-dev as Build-Depends.
* debian/cairo-dock-data.install
 - Add usr/share/cairo-dock/emblems directory.
* debian/watch
 - Update location.
* debian/rules
 - Add a get-orig-source rule.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
#include <glib.h>
6
6
 
7
7
#include "cairo-dock-struct.h"
 
8
G_BEGIN_DECLS
8
9
 
9
10
 
10
11
void cairo_dock_set_subdock_position_linear (Icon *pPointedIcon, CairoDock *pParentDock);
15
16
 
16
17
void cairo_dock_calculate_construction_parameters_generic (Icon *icon, int iCurrentWidth, int iCurrentHeight, int iMaxDockWidth);
17
18
 
18
 
void cairo_dock_render_linear (CairoDock *pDock);
19
 
 
20
 
 
21
 
void cairo_dock_render_optimized_linear (CairoDock *pDock, GdkRectangle *pArea);
 
19
void cairo_dock_render_linear (cairo_t *pCairoContext, CairoDock *pDock);
 
20
 
 
21
 
 
22
void cairo_dock_render_optimized_linear (cairo_t *pCairoContext, CairoDock *pDock, GdkRectangle *pArea);
22
23
 
23
24
 
24
25
Icon *cairo_dock_calculate_icons_linear (CairoDock *pDock);
27
28
void cairo_dock_register_default_renderer (void);
28
29
 
29
30
 
 
31
G_END_DECLS
30
32
#endif