C# Class ARCed.Database.Actors.ChartSettingsForm

Show file Open project: borisblizzard/arcreator

Public Methods

Method Description
ChartSettingsForm ( ) : System

Default constuctor

ClearCharts ( ) : void

Clears the charts

GetChartLighting ( int index ) : LightStyle

Gets the user-defined LightStyle setting for the given index.

GetUserColor ( int index ) : Color

Gets the user-defined Color used for the chart with the given index.

SetChartLighting ( LightStyle style, Chart &charts ) : void

Sets the user-defined LightStyle setting for the given index.

SetChartType ( SeriesChartType type, Chart &charts ) : void

Sets the SeriesChartType type for the charts.

SetCharts ( Chart &charts ) : void

Sets the forms chart controls

SetUserColor ( int index, Color color ) : void

Gets the user-defined Color used for the chart with the given index.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Clean up any resources being used.

Private Methods

Method Description
AddDataBinding ( ) : void
ButtonAddClick ( object sender, EventArgs e ) : void
ButtonDefaultColorsClick ( object sender, EventArgs e ) : void
ButtonDownClick ( object sender, EventArgs e ) : void
ButtonRemoveClick ( object sender, EventArgs e ) : void
ButtonUpClick ( object sender, EventArgs e ) : void
CheckBox3DCheckedChanged ( object sender, EventArgs e ) : void
CheckBoxMarkerLinesCheckedChanged ( object sender, EventArgs e ) : void
ComboBoxLightingSelectedIndexChanged ( object sender, EventArgs e ) : void
ComboBoxTypeSelectedIndexChanged ( object sender, EventArgs e ) : void
InitializeComponent ( ) : void

Required method for Designer support - do not modify the contents of this method with the code editor.

ListBoxColorsDoubleClick ( object sender, EventArgs e ) : void
ListBoxColorsSelectedIndexChanged ( object sender, EventArgs e ) : void
NumericDepthValueChanged ( object sender, EventArgs e ) : void
NumericInclinationValueChanged ( object sender, EventArgs e ) : void
NumericPerspectiveValueChanged ( object sender, EventArgs e ) : void
NumericRotationValueChanged ( object sender, EventArgs e ) : void
NumericTensionValueChanged ( object sender, EventArgs e ) : void
RefreshColors ( ) : void

Method Details

ChartSettingsForm() public method

Default constuctor
public ChartSettingsForm ( ) : System
return System

ClearCharts() public method

Clears the charts
public ClearCharts ( ) : void
return void

Dispose() protected method

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
return void

GetChartLighting() public static method

Gets the user-defined LightStyle setting for the given index.
public static GetChartLighting ( int index ) : LightStyle
index int Index to retrieve the style for.
return LightStyle

GetUserColor() public static method

Gets the user-defined Color used for the chart with the given index.
public static GetUserColor ( int index ) : Color
index int Index of the color to retrieve.
return Color

SetChartLighting() public static method

Sets the user-defined LightStyle setting for the given index.
public static SetChartLighting ( LightStyle style, Chart &charts ) : void
style LightStyle Style to set
charts Chart Reference to an array of object.
return void

SetChartType() public static method

Sets the SeriesChartType type for the charts.
public static SetChartType ( SeriesChartType type, Chart &charts ) : void
type SeriesChartType Chart type to set
charts Chart Reference to an array of object.
return void

SetCharts() public method

Sets the forms chart controls
public SetCharts ( Chart &charts ) : void
charts Chart Reference to an array of object.
return void

SetUserColor() public static method

Gets the user-defined Color used for the chart with the given index.
public static SetUserColor ( int index, Color color ) : void
index int Index of the color to retrieve.
color Color User-defined color
return void