~cairo-dock-team/ubuntu/oneiric/cairo-dock/2.4.0-0beta2

« back to all changes in this revision

Viewing changes to src/gldit/cairo-dock-data-renderer.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthieu Baerts (matttbe)
  • Date: 2011-03-17 14:08:48 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20110317140848-b8efysl4ynhjm87k
Tags: 2.3.0~1-0ubuntu1
* New Upstream Version (LP: #723994)
* Upstream short ChangeLog:
 - Updated translations
 - Updated the integration of the new versions of kwin and compiz
 - Updated default theme
 - Fixed a few bugs
 - Updated the man
* debian/control:
 - Added suggests apps for cairo-dock-core (needed by the default theme)
 - Updated the description (from launchpad.net/cairo-dock)
 - Added cairo-dock-plug-ins as a new suggestion for cairo-dock-core
* debian/patches:
 - Updated the default theme to use default apps of Ubuntu Natty 
* Switch to dpkg-source 3.0 (quilt) format
* Removed the desktop-file-category patch (sync with debian packages)
* debian/rules:
 - Added a CMake flag to disable the gtk grip
 - No longer used simple-patchsys
* Updated the debian/watch

Show diffs side-by-side

added added

removed removed

Lines of Context:
310
310
///
311
311
/**Write a value in a readable text format.
312
312
*@param pRenderer a data renderer
313
 
*@param fValue the normalized value
314
313
*@param i the number of the value
315
314
*@param cBuffer a buffer where to write*/
316
315
#define cairo_data_renderer_format_value_full(pRenderer, i, cBuffer) do {\
322
321
        } while (0)
323
322
/**Write a value in a readable text format in the renderer text buffer.
324
323
*@param pRenderer a data renderer
325
 
*@param fValue the normalized value
326
324
*@param i the number of the value*/
327
325
#define cairo_data_renderer_format_value(pRenderer, i) cairo_data_renderer_format_value_full (pRenderer, i, (pRenderer)->cFormatBuffer)
328
326
 
337
335
gchar *cairo_dock_get_package_path_for_data_renderer (const gchar *cRendererName, const gchar *cAppletConfFilePath, GKeyFile *pKeyFile, const gchar *cGroupName, const gchar *cKeyName, gboolean *bFlushConfFileNeeded, const gchar *cDefaultThemeName);
338
336
 
339
337
 
340
 
void cairo_dock_register_built_in_data_renderers (void);
 
338
void cairo_dock_register_built_in_data_renderers (void);  // merge with init.
341
339
 
342
340
 
343
341
G_END_DECLS