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

« back to all changes in this revision

Viewing changes to fpcsrc/packages/ptc/src/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
{
 
2
    Free Pascal port of the OpenPTC C++ library.
 
3
    Copyright (C) 2001-2006  Nikolay Nikolov (nickysn@users.sourceforge.net)
 
4
    Original C++ version by Glenn Fiedler (ptc@gaffer.org)
 
5
 
 
6
    This library is free software; you can redistribute it and/or
 
7
    modify it under the terms of the GNU Lesser General Public
 
8
    License as published by the Free Software Foundation; either
 
9
    version 2.1 of the License, or (at your option) any later version.
 
10
 
 
11
    This library is distributed in the hope that it will be useful,
 
12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
    Lesser General Public License for more details.
 
15
 
 
16
    You should have received a copy of the GNU Lesser General Public
 
17
    License along with this library; if not, write to the Free Software
 
18
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
}
 
20
 
 
21
Type
 
22
  TPTCColor=Class(TObject)
 
23
  Private
 
24
    FIndex : Integer;
 
25
    FRed, FGreen, FBlue, FAlpha : Single;
 
26
    FDirect : Boolean;
 
27
    FIndexed : Boolean;
 
28
  Public
 
29
    Constructor Create;
 
30
    Constructor Create(AIndex : Integer);
 
31
    Constructor Create(ARed, AGreen, ABlue : Single; AAlpha : Single = 1);
 
32
    Constructor Create(Const AColor : TPTCColor);
 
33
    Procedure Assign(Const AColor : TPTCColor);
 
34
    Function Equals(Const AColor : TPTCColor) : Boolean;
 
35
    Property Index : Integer Read FIndex;
 
36
    Property R : Single Read FRed;
 
37
    Property G : Single Read FGreen;
 
38
    Property B : Single Read FBlue;
 
39
    Property A : Single Read FAlpha;
 
40
    Property Direct : Boolean Read FDirect;
 
41
    Property Indexed : Boolean Read FIndexed;
 
42
  End;