forked from TheUltDev/TibiaFlashClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_DataGridStyle.as
More file actions
48 lines (44 loc) · 1.75 KB
/
_DataGridStyle.as
File metadata and controls
48 lines (44 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package
{
import mx.core.*;
import mx.skins.halo.*;
import mx.styles.*;
public class _DataGridStyle extends Object
{
private static var _embed_css_Assets_swf_cursorStretch_2132883076:Class = _DataGridStyle__embed_css_Assets_swf_cursorStretch_2132883076;
public function _DataGridStyle()
{
return;
}// end function
public static function init(param1:IFlexModuleFactory) : void
{
var fbs:* = param1;
var style:* = StyleManager.getStyleDeclaration("DataGrid");
if (!style)
{
style = new CSSStyleDeclaration();
StyleManager.setStyleDeclaration("DataGrid", style, false);
}
if (style.defaultFactory == null)
{
style.defaultFactory = function () : void
{
this.headerDragProxyStyleName = "headerDragProxyStyle";
this.alternatingItemColors = [16250871, 16777215];
this.sortArrowSkin = DataGridSortArrow;
this.verticalGridLineColor = 13421772;
this.headerColors = [16777215, 15132390];
this.headerStyleName = "dataGridStyles";
this.columnDropIndicatorSkin = DataGridColumnDropIndicator;
this.headerSeparatorSkin = DataGridHeaderSeparator;
this.stretchCursor = _embed_css_Assets_swf_cursorStretch_2132883076;
this.columnResizeSkin = DataGridColumnResizeSkin;
this.headerBackgroundSkin = DataGridHeaderBackgroundSkin;
return;
}// end function
;
}
return;
}// end function
}
}