blob: 48aa83a8eac5160d36e9de4104f3ae0911c0743b [file] [log] [blame]
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package flashx.textLayout.ui.styles
{
import mx.skins.RectangularBorder;
import mx.utils.GraphicsUtil;
import flash.display.LineScaleMode;
import flash.display.CapsStyle;
public class ScrollbarThumbOverSkin extends RectangularBorder
{
public function ScrollbarThumbOverSkin()
{
super();
}
override public function get measuredWidth():Number
{
return 11;
}
override public function get measuredHeight():Number
{
return 10;
}
override protected function updateDisplayList(w:Number, h:Number):void
{
super.updateDisplayList(w, h);
var thumbFill:uint = 0x222222;
var thumbFillAlpha:Number = 1.0;
var thumbStroke:uint = 0x2A2A2A;
var thumbStrokeAlpha:Number = 1.0;
var trackStroke:uint = 0x2A2A2A;
var trackStrokeAlpha:Number = 1.0;
if (getStyle("thumbOverFill") != undefined)
thumbFill = getStyle("thumbOverFill");
if (getStyle("thumbOverFillAlpha") != undefined)
thumbFillAlpha = getStyle("thumbOverFillAlpha");
if (getStyle("thumbOverStroke") != undefined)
thumbStroke = getStyle("thumbOverStroke");
if (getStyle("thumbOverStrokeAlpha") != undefined)
thumbStrokeAlpha = getStyle("thumbOverStrokeAlpha");
if (getStyle("trackStroke") != undefined)
trackStroke = getStyle("trackStroke");
if (getStyle("trackStrokeAlpha") != undefined)
trackStrokeAlpha = getStyle("trackStrokeAlpha");
graphics.clear();
// draw the top line of the thumb to match the track
graphics.lineStyle(1, trackStroke, trackStrokeAlpha);
graphics.moveTo(0, 0);
graphics.lineTo(w-1, 0);
// fill in the thumb
graphics.beginFill(thumbFill, thumbFillAlpha);
graphics.drawRect(0, 0, w-1, h-2);
graphics.endFill();
// draw the border of the thumb
graphics.lineStyle(1, thumbStroke, thumbStrokeAlpha);
graphics.drawRect(0, 1, w-1, h-3);
// draw the bottom line of the thumb to match the track
graphics.lineStyle(1, trackStroke, trackStrokeAlpha);
graphics.moveTo(0, h-1);
graphics.lineTo(w, h-1);
}
}}