~ubuntu-branches/ubuntu/lucid/fpc/lucid-proposed

« back to all changes in this revision

Viewing changes to fpcsrc/packages/extra/ptc/c_api/colord.inc

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-10-09 23:29:00 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20081009232900-553f61m37jkp6upv
Tags: 2.2.2-4
[ Torsten Werner ]
* Update ABI version in fpc-depends automatically.
* Remove empty directories from binary package fpc-source.

[ Mazen Neifer ]
* Removed leading path when calling update-alternatives to remove a Linitian
  error.
* Fixed clean target.
* Improved description of packages. (Closes: #498882)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{ setup }
2
 
Function ptc_color_create : TPTC_COLOR;
3
 
Function ptc_color_create_indexed(index : Integer) : TPTC_COLOR;
4
 
Function ptc_color_create_direct(r, g, b, a : Single) : TPTC_COLOR;
5
 
Procedure ptc_color_destroy(obj : TPTC_COLOR);
6
 
 
7
 
{ data access }
8
 
Function ptc_color_index(obj : TPTC_COLOR) : Integer;
9
 
Function ptc_color_r(obj : TPTC_COLOR) : Single;
10
 
Function ptc_color_g(obj : TPTC_COLOR) : Single;
11
 
Function ptc_color_b(obj : TPTC_COLOR) : Single;
12
 
Function ptc_color_a(obj : TPTC_COLOR) : Single;
13
 
Function ptc_color_direct(obj : TPTC_COLOR) : Boolean;
14
 
Function ptc_color_indexed(obj : TPTC_COLOR) : Boolean;
15
 
 
16
 
{ operators }
17
 
Procedure ptc_color_assign(obj, color : TPTC_COLOR);
18
 
Function ptc_color_equals(obj, color : TPTC_COLOR) : Boolean;