01: /*
02: * Copyright (c) 2005-2008 Substance Kirill Grouchnikov. All Rights Reserved.
03: *
04: * Redistribution and use in source and binary forms, with or without
05: * modification, are permitted provided that the following conditions are met:
06: *
07: * o Redistributions of source code must retain the above copyright notice,
08: * this list of conditions and the following disclaimer.
09: *
10: * o Redistributions in binary form must reproduce the above copyright notice,
11: * this list of conditions and the following disclaimer in the documentation
12: * and/or other materials provided with the distribution.
13: *
14: * o Neither the name of Substance Kirill Grouchnikov nor the names of
15: * its contributors may be used to endorse or promote products derived
16: * from this software without specific prior written permission.
17: *
18: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19: * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20: * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21: * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
22: * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24: * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25: * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26: * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
27: * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
28: * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29: */
30: package org.jvnet.substance.theme;
31:
32: import org.jvnet.substance.color.ShadeColorScheme;
33: import org.jvnet.substance.color.ShiftColorScheme;
34:
35: /**
36: * Shaded theme. A shaded theme is based on some original theme that is shifted
37: * towards <b>black</b> color. This class is part of officially supported API.
38: *
39: * @author Kirill Grouchnikov
40: * @see ShiftColorScheme
41: */
42: public class SubstanceShadeTheme extends SubstanceWrapperTheme {
43: /**
44: * The shade factor for <code>this</code> theme.
45: */
46: private double shadeFactor;
47:
48: /**
49: * Creates a new shaded theme. <b>Do not</b> use this constructor directly,
50: * use {@link SubstanceTheme#shade(double)} instead.
51: *
52: * @param substanceTheme
53: * The original theme.
54: * @param shadeFactor
55: * Shade factor.
56: */
57: SubstanceShadeTheme(SubstanceTheme substanceTheme,
58: double shadeFactor) {
59: super (substanceTheme, new ShadeColorScheme(substanceTheme
60: .getColorScheme(), shadeFactor), "Shade "
61: + substanceTheme.getDisplayName() + " "
62: + (int) (100 * shadeFactor) + "%", substanceTheme
63: .getKind());
64: this .shadeFactor = shadeFactor;
65: }
66:
67: /*
68: * (non-Javadoc)
69: *
70: * @see org.jvnet.substance.theme.SubstanceTheme#getDefaultTheme()
71: */
72: @Override
73: public SubstanceTheme getDefaultTheme() {
74: if (this .defaultTheme == null)
75: this .defaultTheme = this .originalTheme.getDefaultTheme()
76: .shade(this .shadeFactor);
77: return this .defaultTheme;
78: }
79:
80: /*
81: * (non-Javadoc)
82: *
83: * @see org.jvnet.substance.theme.SubstanceTheme#getDisabledTheme()
84: */
85: @Override
86: public SubstanceTheme getDisabledTheme() {
87: if (this.disabledTheme == null)
88: this.disabledTheme = this.originalTheme.getDisabledTheme()
89: .shade(this.shadeFactor);
90: return this.disabledTheme;
91: }
92: }
|