/** * LogarithmPlotter - 2D plotter software to make BODE plots, sequences and distribution functions. * Copyright (C) 2021-2024 Ad5001 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ .pragma library .import "../math/latex.js" as Latex var themeTextColor; var imageDepth = 2; var fontSize = 14; class Action { /** * Type of the action. * * @returns {string} */ type(){return 'Unknown'} /** * Icon associated with the action. * * @returns {string} */ icon(){return 'position'} // TargetName is the name of the object that's targeted by the event. constructor(targetName = "", targetType = "Point") { this.targetName = targetName this.targetType = targetType } /** * Undoes the action. * * @returns {string} */ undo() {} /** * Redoes the action. * * @returns {string} */ redo() {} /** * Export the action to a serializable format. * NOTE: These arguments will be reinputed in the constructor in this order. * * @returns {string} */ export() { return [this.targetName, this.targetType] } /** * Returns a string with the human readable description of the action. * * @returns {string} */ getReadableString() { return 'Unknown action' } /** * Returns a string containing an HTML tag describing the icon of a type * * @param {string} type - Name of the icon to put in rich text. * @returns {string} */ getIconRichText(type) { return `` } /** * Renders a LaTeX-formatted string to an image and wraps it in an HTML tag in a string. * * @param {string} latexString - Source string of the latex. * @returns {string} */ renderLatexAsHtml(latexString) { if(!Latex.enabled) throw new Error("Cannot render an item as LaTeX when LaTeX is disabled.") let latexInfo = Latex.Renderer.render(latexString, imageDepth*(fontSize+2), themeTextColor).split(",") return `` } /** * Returns a string with the HTML-formated description of the action. * * @returns {string} */ getHTMLString() { return this.getReadableString() } }