0024171: Eliminate CLang compiler warning -Wreorder
[occt.git] / src / Aspect / Aspect_Window.cxx
1 // Created by: NW,JPB,CAL,GG
2 // Copyright (c) 1991-1999 Matra Datavision
3 // Copyright (c) 1999-2012 OPEN CASCADE SAS
4 //
5 // The content of this file is subject to the Open CASCADE Technology Public
6 // License Version 6.5 (the "License"). You may not use the content of this file
7 // except in compliance with the License. Please obtain a copy of the License
8 // at http://www.opencascade.org and read it completely before using this file.
9 //
10 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
11 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
12 //
13 // The Original Code and all software distributed under the License is
14 // distributed on an "AS IS" basis, without warranty of any kind, and the
15 // Initial Developer hereby disclaims all such warranties, including without
16 // limitation, any warranties of merchantability, fitness for a particular
17 // purpose or non-infringement. Please see the License for the specific terms
18 // and conditions governing the rights and limitations under the License.
19
20
21 // Modified:    GG 28/11/00 G002
22 //              Add BackgroundImage() and BackgroundFillMethod() methods
23
24
25 //-Version
26
27 //-Design       Creation d'une fenetre
28
29 //-Warning
30
31 //-References
32
33 //-Language     C++ 2.0
34
35 //-Declarations
36
37 // for the class
38 #include <Aspect_Window.ixx>
39
40 //-Aliases
41
42 //-Global data definitions
43
44 //-Destructors
45
46 //-Constructors
47
48 Aspect_Window::Aspect_Window()
49 : MyBackground(),
50   MyGradientBackground(),
51   MyBackgroundFillMethod(Aspect_FM_NONE)
52 {
53 }
54
55 Aspect_Background Aspect_Window::Background() const
56 {
57   return MyBackground;
58 }
59
60 Aspect_FillMethod Aspect_Window::BackgroundFillMethod() const
61 {
62   return MyBackgroundFillMethod;
63 }
64
65 Aspect_GradientBackground Aspect_Window::GradientBackground() const
66 {
67   return MyGradientBackground;
68 }
69
70 Standard_Boolean Aspect_Window::IsVirtual() const
71 {
72   return MyIsVirtual;
73 }
74
75 void Aspect_Window::SetVirtual (const Standard_Boolean theVirtual)
76 {
77   MyIsVirtual = theVirtual;
78 }
79
80 void Aspect_Window::SetBackground (const Aspect_Background& theBackground)
81 {
82   SetBackground (theBackground.Color());
83 }
84
85 void Aspect_Window::SetBackground (const Quantity_NameOfColor theNameOfColor)
86 {
87   MyBackground.SetColor (theNameOfColor);
88 }
89
90 void Aspect_Window::SetBackground (const Quantity_Color& theColor)
91 {
92   MyBackground.SetColor (theColor);
93 }
94
95 void Aspect_Window::SetBackground (const Aspect_GradientBackground& theBackground)
96 {
97   Quantity_Color aFirstColor, aSecondColor;
98   theBackground.Colors (aFirstColor, aSecondColor);
99   SetBackground (aFirstColor, aSecondColor, theBackground.BgGradientFillMethod());
100 }
101
102 void Aspect_Window::SetBackground (const Quantity_Color& theFirstColor,
103                                    const Quantity_Color& theSecondColor,
104                                    const Aspect_GradientFillMethod theFillMethod)
105 {
106   MyGradientBackground.SetColors (theFirstColor, theSecondColor, theFillMethod);
107 }