color_hsv.h
1 /*
2 ** UICore
3 ** Copyright (c) 1997-2015 The UICore Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries UICore may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Mark Page
27 */
28 
29 #pragma once
30 
31 namespace uicore
32 {
33  class Color;
34  class Colorf;
35 
39  template<typename Type, typename ColorType>
40  class ColorHSVx
41  {
42  public:
45  ColorHSVx() : h((Type)0), s((Type)0), v((Type)0), a((Type)0) {}
46  ColorHSVx(Type h, Type s, Type v, Type a) : h(h), s(s), v(v), a(a) {}
47  ColorHSVx(const ColorHSVx<Type, ColorType> &copy) { h = copy.h; s = copy.s; v = copy.v; a = copy.a; }
48  ColorHSVx(const Color &color);
49  ColorHSVx(const Colorf &color);
50 
51  Type h, s, v, a;
52 
53  operator ColorType();
54 
56  ColorHSVx<Type, ColorType> &operator = (const ColorHSVx<Type, ColorType>& copy) { h = copy.h; s = copy.s; v = copy.v; a = copy.a; return *this; }
57 
59  bool operator == (const ColorHSVx<Type, ColorType>& color) const { return ((h == color.h) && (s == color.s) && (v == color.v) && (a == color.a)); }
60 
62  bool operator != (const ColorHSVx<Type, ColorType>& color) const { return ((h != color.h) || (s != color.s) || (v != color.v) || (a != color.a)); }
63  };
64 
68 }
Type a
Definition: color_hsv.h:51
ColorHSVx< double, Colorf > ColorHSVd
Definition: color_hsv.h:67
Type s
Definition: color_hsv.h:51
Floating point color description class (for float).
Definition: color.h:630
ColorHSVx(Type h, Type s, Type v, Type a)
Definition: color_hsv.h:46
Color description class.
Definition: color.h:42
bool operator!=(const ColorHSVx< Type, ColorType > &color) const
!= operator.
Definition: color_hsv.h:62
Type h
Definition: color_hsv.h:51
ColorHSVx< Type, ColorType > & operator=(const ColorHSVx< Type, ColorType > &copy)
= operator.
Definition: color_hsv.h:56
Type v
Definition: color_hsv.h:51
bool operator==(const ColorHSVx< Type, ColorType > &color) const
== operator.
Definition: color_hsv.h:59
ColorHSVx(const ColorHSVx< Type, ColorType > &copy)
Definition: color_hsv.h:47
Color HSV description class.
Definition: color_hsv.h:40
ColorHSVx< float, Colorf > ColorHSVf
Definition: color_hsv.h:66
ColorHSVx< int, Color > ColorHSVi
Definition: color_hsv.h:65
ColorHSVx()
Constructs a color.
Definition: color_hsv.h:45
Definition: Application/application.h:35