~ubuntu-branches/debian/experimental/inkscape/experimental

« back to all changes in this revision

Viewing changes to src/color-profile-fns.h

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Viehmann
  • Date: 2008-09-09 23:29:02 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080909232902-c50iujhk1w79u8e7
Tags: 0.46-2.1
* Non-maintainer upload.
* Add upstream patch fixing a crash in the open dialog
  in the zh_CN.utf8 locale. Closes: #487623.
  Thanks to Luca Bruno for the patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
#include <glib-object.h>
9
9
#include <glib/gtypes.h>
10
10
#if ENABLE_LCMS
 
11
#include <vector>
 
12
#include <glibmm/ustring.h>
11
13
#include <lcms.h>
12
14
#endif // ENABLE_LCMS
13
15
 
25
27
 
26
28
#if ENABLE_LCMS
27
29
 
28
 
cmsHPROFILE colorprofile_get_handle( SPDocument* document, guint* intent, gchar* const name );
 
30
cmsHPROFILE colorprofile_get_handle( SPDocument* document, guint* intent, gchar const* name );
 
31
cmsHTRANSFORM colorprofile_get_display_transform();
 
32
 
 
33
Glib::ustring colorprofile_get_display_id( int screen, int monitor );
 
34
Glib::ustring colorprofile_set_display_per( gpointer buf, guint bufLen, int screen, int monitor );
 
35
cmsHTRANSFORM colorprofile_get_display_per( Glib::ustring const& id );
 
36
 
 
37
std::vector<Glib::ustring> colorprofile_get_display_names();
 
38
std::vector<Glib::ustring> colorprofile_get_softproof_names();
 
39
 
 
40
Glib::ustring get_path_for_profile(Glib::ustring const& name);
29
41
 
30
42
#endif
31
43