UNPKG

@wcardinal/wcardinal-geditor

Version:

WebGL-based graphic editor, tester and viewer for supervisory systems

36 lines 1.36 kB
import { __extends } from "tslib"; import { DThemes } from "@wcardinal/wcardinal-ui"; import { EEDITOR_BUTTON_COUNT } from "../../../editor/e-editors"; var EThemeDefaultEditorPane = /** @class */ (function (_super) { __extends(EThemeDefaultEditorPane, _super); function EThemeDefaultEditorPane() { return _super !== null && _super.apply(this, arguments) || this; } EThemeDefaultEditorPane.prototype.getWidth = function () { return 30 * EEDITOR_BUTTON_COUNT + 5 * (EEDITOR_BUTTON_COUNT - 1) + 16; }; EThemeDefaultEditorPane.prototype.getHeight = function () { return "100%"; }; EThemeDefaultEditorPane.prototype.getPaddingTop = function () { return 0; }; EThemeDefaultEditorPane.prototype.getPaddingRight = function () { return 0; }; EThemeDefaultEditorPane.prototype.getPaddingBottom = function () { return 0; }; EThemeDefaultEditorPane.prototype.getPaddingLeft = function () { return 0; }; EThemeDefaultEditorPane.prototype.getBackgroundColor = function () { return null; }; EThemeDefaultEditorPane.prototype.getBorderColor = function () { return null; }; return EThemeDefaultEditorPane; }(DThemes.getClass("DPane"))); export { EThemeDefaultEditorPane }; //# sourceMappingURL=e-theme-default-editor-pane.js.map