123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import * as React from "react";
- import { Observable } from "babylonjs/Misc/observable";
- import { PropertyChangedEvent } from "../../../../propertyChangedEvent";
- import { CommonControlPropertyGridComponent } from "./commonControlPropertyGridComponent";
- import { TextBlock, TextWrapping } from "babylonjs-gui/2D/controls/textBlock";
- import { Control } from "babylonjs-gui/2D/controls/control";
- import { LineContainerComponent } from "../../../../../sharedUiComponents/lines/lineContainerComponent";
- import { TextInputLineComponent } from "../../../../../sharedUiComponents/lines/textInputLineComponent";
- import { LockObject } from "../../../../../sharedUiComponents/tabs/propertyGrids/lockObject";
- import { OptionsLineComponent } from "../../../../../sharedUiComponents/lines/optionsLineComponent";
- import { CheckBoxLineComponent } from "../../../../../sharedUiComponents/lines/checkBoxLineComponent";
- import { FloatLineComponent } from "../../../../../sharedUiComponents/lines/floatLineComponent";
- import { GlobalState } from '../../../../globalState';
- interface ITextBlockPropertyGridComponentProps {
- globalState: GlobalState;
- textBlock: TextBlock;
- lockObject: LockObject;
- onPropertyChangedObservable?: Observable<PropertyChangedEvent>;
- }
- export class TextBlockPropertyGridComponent extends React.Component<ITextBlockPropertyGridComponentProps> {
- constructor(props: ITextBlockPropertyGridComponentProps) {
- super(props);
- }
- render() {
- const textBlock = this.props.textBlock;
- var horizontalOptions = [
- { label: "Left", value: Control.HORIZONTAL_ALIGNMENT_LEFT },
- { label: "Right", value: Control.HORIZONTAL_ALIGNMENT_RIGHT },
- { label: "Center", value: Control.HORIZONTAL_ALIGNMENT_CENTER },
- ];
- var verticalOptions = [
- { label: "Top", value: Control.VERTICAL_ALIGNMENT_TOP },
- { label: "Bottom", value: Control.VERTICAL_ALIGNMENT_BOTTOM },
- { label: "Center", value: Control.VERTICAL_ALIGNMENT_CENTER },
- ];
- var wrappingOptions = [
- { label: "Clip", value: TextWrapping.Clip },
- { label: "Ellipsis", value: TextWrapping.Ellipsis },
- { label: "Word wrap", value: TextWrapping.WordWrap },
- ];
- return (
- <div className="pane">
- <CommonControlPropertyGridComponent globalState={this.props.globalState} lockObject={this.props.lockObject} control={textBlock} onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <LineContainerComponent title="TEXTBLOCK">
- <TextInputLineComponent lockObject={this.props.lockObject} label="Text" target={textBlock} propertyName="text" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <OptionsLineComponent label="Horizontal text alignment" options={horizontalOptions} target={textBlock} propertyName="textHorizontalAlignment" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <OptionsLineComponent label="Vertical text alignment" options={verticalOptions} target={textBlock} propertyName="textVerticalAlignment" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <CheckBoxLineComponent label="Resize to fit" target={textBlock} propertyName="resizeToFit" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <OptionsLineComponent label="Wrapping" options={wrappingOptions} target={textBlock} propertyName="textWrapping" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <TextInputLineComponent lockObject={this.props.lockObject} label="Line spacing" target={textBlock} propertyName="lineSpacing" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- </LineContainerComponent>
- <LineContainerComponent title="OUTLINE">
- <FloatLineComponent lockObject={this.props.lockObject} label="Outline width" target={textBlock} propertyName="outlineWidth" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- <TextInputLineComponent lockObject={this.props.lockObject} label="Outline color" target={textBlock} propertyName="outlineColor" onPropertyChangedObservable={this.props.onPropertyChangedObservable} />
- </LineContainerComponent>
- </div>
- );
- }
- }
|