Add Luminati font

This commit is contained in:
Paulo Gustavo Veiga 2022-01-03 13:41:12 -08:00
parent 96b6d16247
commit d14c63c0e6
9 changed files with 44 additions and 11 deletions

View File

@ -26,6 +26,7 @@ class FontFamilyPanel extends ListToolbarPanel {
'<div id="times" model="Times" class="toolbarPanelLink" style="font-family:times;">Times</div>' '<div id="times" model="Times" class="toolbarPanelLink" style="font-family:times;">Times</div>'
+ '<div id="arial" model="Arial" style="font-family:arial;">Arial</div>' + '<div id="arial" model="Arial" style="font-family:arial;">Arial</div>'
+ '<div id="tahoma" model="Tahoma" style="font-family:tahoma;">Tahoma</div>' + '<div id="tahoma" model="Tahoma" style="font-family:tahoma;">Tahoma</div>'
+ '<div id="tahoma" model="Luminari" style="font-family:Luminari">Luminari</div>'
+ '<div id="tahoma" model="Brush Script MT" style="font-family:\'Brush Script MT\';">Brush Script</div>' + '<div id="tahoma" model="Brush Script MT" style="font-family:\'Brush Script MT\';">Brush Script</div>'
+ '<div id="verdana" model="Verdana" style="font-family:verdana;">Verdana</div>', + '<div id="verdana" model="Verdana" style="font-family:verdana;">Verdana</div>',
); );

View File

@ -22,14 +22,16 @@ import LinePeer from './peer/svg/LinePeer';
import PolyLinePeer from './peer/svg/PolyLinePeer'; import PolyLinePeer from './peer/svg/PolyLinePeer';
import CurvedLinePeer from './peer/svg/CurvedLinePeer'; import CurvedLinePeer from './peer/svg/CurvedLinePeer';
import ArrowPeer from './peer/svg/ArrowPeer'; import ArrowPeer from './peer/svg/ArrowPeer';
// eslint-disable-next-line import/no-cycle
import TextPeer from './peer/svg/TextPeer'; import TextPeer from './peer/svg/TextPeer';
import ImagePeer from './peer/svg/ImagePeer'; import ImagePeer from './peer/svg/ImagePeer';
import RectPeer from './peer/svg/RectPeer'; import RectPeer from './peer/svg/RectPeer';
import ArialFont from './peer/svg/ArialFont'; import ArialFont from './peer/svg/font/ArialFont';
import TimesFont from './peer/svg/TimesFont'; import TimesFont from './peer/svg/font/TimesFont';
import VerdanaFont from './peer/svg/VerdanaFont'; import VerdanaFont from './peer/svg/font/VerdanaFont';
import TahomaFont from './peer/svg/TahomaFont'; import TahomaFont from './peer/svg/font/TahomaFont';
import BrushScriptMTFont from './peer/svg/BrushScriptFont'; import LuminariFont from './peer/svg/font/LuminariFont';
import BrushScriptMTFont from './peer/svg/font/BrushScriptFont';
class Toolkit { class Toolkit {
static createFontByName(fontName) { static createFontByName(fontName) {
@ -86,6 +88,10 @@ class Toolkit {
return new TimesFont(); return new TimesFont();
} }
static createLuminariFont() {
return new LuminariFont();
}
static createVerdanaFont() { static createVerdanaFont() {
return new VerdanaFont(); return new VerdanaFont();
} }

View File

@ -120,7 +120,7 @@ class Workspace extends ElementClass {
* they are simple numbers, not CSS length quantities. * they are simple numbers, not CSS length quantities.
*/ */
setCoordSize(width, height) { setCoordSize(width, height) {
this.peer.setCoordSize(width, height); this.peer.setCoordSize(parseInt(width, 10), parseInt(height, 10));
} }
/** /**

View File

@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import FontPeer from './FontPeer'; import FontPeer from '../FontPeer';
class ArialFont extends FontPeer { class ArialFont extends FontPeer {
constructor() { constructor() {

View File

@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import FontPeer from './FontPeer'; import FontPeer from '../FontPeer';
class BrushScriptMTFont extends FontPeer { class BrushScriptMTFont extends FontPeer {
// eslint-disable-next-line class-methods-use-this // eslint-disable-next-line class-methods-use-this

View File

@ -0,0 +1,26 @@
/*
* Copyright [2021] [wisemapping]
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import FontPeer from '../FontPeer';
class LuminariFont extends FontPeer {
constructor() {
super('Luminari');
}
}
export default LuminariFont;

View File

@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import FontPeer from './FontPeer'; import FontPeer from '../FontPeer';
class TahomaFont extends FontPeer { class TahomaFont extends FontPeer {
constructor() { constructor() {

View File

@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import FontPeer from './FontPeer'; import FontPeer from '../FontPeer';
class TimesFont extends FontPeer { class TimesFont extends FontPeer {
constructor() { constructor() {

View File

@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
import FontPeer from './FontPeer'; import FontPeer from '../FontPeer';
class VerdanaFont extends FontPeer { class VerdanaFont extends FontPeer {
constructor() { constructor() {