Quantum Fog  0.9.3
C_COLOR_SWATCH.h
1 #pragma once
2 
3 //******************************************
4 class C_COLOR_SWATCH : public LPane
5 {
6 
7 protected:
8  RGBColor its_cur_color;
9 
10 public:
11  C_COLOR_SWATCH(LStream * inStream);
12 
13  const RGBColor & get_cur_color();
14  VOID set_cur_color(const RGBColor & color);
15 
16  VOID DrawSelf();
17  VOID ClickSelf(const SMouseDownEvent & /* inMouseDown */ );
18 };
19 #pragma mark -
20 
21 
22 //******************************************
23 inline
24 const RGBColor & C_COLOR_SWATCH::get_cur_color()
25 {
26  return its_cur_color;
27 }
28 
Definition: C_COLOR_SWATCH.h:4