This class defines the Alhambra 8 color map and allows the user to
customize any of the ranges as desired.
class KCC_Alhambra8Map( KCC_ColorMapBase ) {
; Class for defining the preset Alhambra 8 color map.
; <p>
; This class defines the Alhambra 8 color map and allows the user to
; customize any of the ranges as desired.
; <p>
; For an example of what this map looks like,
; <a href="../additional/kcc5/images/Alhambra 8 Map.jpg">click here</a>.
;
public:
import "common.ulb"
; Constructor
func KCC_Alhambra8Map( Generic pparent )
KCC_ColorMapBase( pparent )
; Created by Toby Marshall.
colorMap[0,0] = @alhambra8Max1, colorMap[0,1] = @alhambra8Min1
colorMap[1,0] = @alhambra8Max2, colorMap[1,1] = @alhambra8Min2
colorMap[2,0] = @alhambra8Max3, colorMap[2,1] = @alhambra8Min3
colorMap[3,0] = @alhambra8Max4, colorMap[3,1] = @alhambra8Min4
colorMap[4,0] = @alhambra8Max5, colorMap[4,1] = @alhambra8Min5
colorMap[5,0] = @alhambra8Max6, colorMap[5,1] = @alhambra8Min6
colorMap[6,0] = @alhambra8Max7, colorMap[6,1] = @alhambra8Min7
colorMap[7,0] = @alhambra8Max8, colorMap[7,1] = @alhambra8Min8
colorRanges = @colorRanges
endfunc
private:
default:
title = "Alhambra 8 Map"
int param v_KCC_Alhambra8Map
caption = "Version (KCC_Alhambra8Map)"
default = 100
hint = "This version parameter is used to detect when a change has been \
made to the formula that is incompatible with the previous version. \
When that happens, this field will reflect the old version number to \
alert you to the fact that an alternate rendering is being used."
visible = @v_KCC_Alhambra8Map < 100
endparam
;--------------------------------------------------------------------
; Color Defaults for Alhambra 8
;--------------------------------------------------------------------
heading
caption = " Alhambra 8 Map Settings"
visible = (@customize)
endheading
color param alhambra8Max1
caption = "Start color 1"
default = rgb(15/255,222/255,255/255)
hint = "Specifies the color at the high end of Range #1."
visible = (@customize)
endparam
color param alhambra8Min1
caption = " End color 1"
default = rgb(0/255,43/255,52/255)
hint = "Specifies the color at the low end of Range #1."
visible = (@customize)
endparam
color param alhambra8Max2
caption = "Color Range 2 High"
default = rgb(255/255,204/255,75/255)
hint = "Specifies the color at the high end of Range #2."
visible = (@customize)
endparam
color param alhambra8Min2
caption = "Color Range 2 Low"
default = rgb(92/255,58/255,0/255)
hint = "Specifies the color at the low end of Range #2."
visible = (@customize)
endparam
color param alhambra8Max3
caption = "Color Range 3 High"
default = rgb(188/255,152/255,255/255)
hint = "Specifies the color at the high end of Range #3."
visible = (@customize)
endparam
color param alhambra8Min3
caption = "Color Range 3 Low"
default = rgb(41/255,0/255,70/255)
hint = "Specifies the color at the low end of Range #3."
visible = (@customize)
endparam
color param alhambra8Max4
caption = "Color Range 4 High"
default = rgb(255/255,155/255,109/255)
hint = "Specifies the color at the high end of Range #4."
visible = (@customize)
endparam
color param alhambra8Min4
caption = "Color Range 4 Low"
default = rgb(95/255,36/255,14/255)
hint = "Specifies the color at the low end of Range #4."
visible = (@customize)
endparam
color param alhambra8Max5
caption = "Color Range 5 High"
default = rgb(121/255,180/255,255/255)
hint = "Specifies the color at the high end of Range #5."
visible = (@customize)
endparam
color param alhambra8Min5
caption = "Color Range 5 Low"
default = rgb(0/255,47/255,91/255)
hint = "Specifies the color at the low end of Range #5."
visible = (@customize)
endparam
color param alhambra8Max6
caption = "Color Range 6 High"
default = rgb(255/255,131/255,126/255)
hint = "Specifies the color at the high end of Range #6."
visible = (@customize)
endparam
color param alhambra8Min6
caption = "Color Range 6 Low"
default = rgb(104/255,20/255,0/255)
hint = "Specifies the color at the low end of Range #6."
visible = (@customize)
endparam
color param alhambra8Max7
caption = "Color Range 7 High"
default = rgb(33/255,255/255,220/255)
hint = "Specifies the color at the high end of Range #7."
visible = (@customize)
endparam
color param alhambra8Min7
caption = "Color Range 7 Low"
default = rgb(0/255,67/255,49/255)
hint = "Specifies the color at the low end of Range #7."
visible = (@customize)
endparam
color param alhambra8Max8
caption = "Color Range 8 High"
default = rgb(255/255,177/255,93/255)
hint = "Specifies the color at the high end of Range #8."
visible = (@customize)
endparam
color param alhambra8Min8
caption = "Color Range 8 Low"
default = rgb(100/255,44/255,0/255)
hint = "Specifies the color at the low end of Range #8."
visible = (@customize)
endparam
}