123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215 |
- /**
- * Copyright (c) 2006-2016, JGraph Ltd
- * Copyright (c) 2006-2016, Gaudenz Alder
- */
- /**
- * Constructs a new point for the optional x and y coordinates. If no
- * coordinates are given, then the default values for <x> and <y> are used.
- * @constructor
- * @class Implements a basic 2D point. Known subclassers = {@link mxRectangle}.
- * @param {number} x X-coordinate of the point.
- * @param {number} y Y-coordinate of the point.
- */
- /**
- * Global types
- */
- function DiagramPage(node)
- {
- this.node = node;
- }
- /**
- * Holds the diagram node for the page.
- */
- DiagramPage.prototype.node = null;
- /**
- * Holds the root cell for the page.
- */
- DiagramPage.prototype.root = null;
- /**
- * Holds the view state for the page.
- */
- DiagramPage.prototype.viewState = null;
- /**
- *
- */
- DiagramPage.prototype.getName = function()
- {
- return this.node.getAttribute('name');
- };
- /**
- *
- */
- DiagramPage.prototype.setName = function(value)
- {
- if (value == null)
- {
- this.node.removeAttribute('name');
- }
- else
- {
- this.node.setAttribute('name', value);
- }
- };
- /**
- * Change types
- */
- function RenamePage(ui, page, name)
- {
- this.ui = ui;
- this.page = page;
- this.previous = name;
- }
- /**
- * Implementation of the undoable page rename.
- */
- RenamePage.prototype.execute = function()
- {
- var tmp = this.page.getName();
- this.page.setName(this.previous);
- this.previous = tmp;
- // Required to update page name in placeholders
- this.ui.editor.graph.updatePlaceholders();
- this.ui.editor.fireEvent(new mxEventObject('pageRenamed'));
- };
- /**
- * Undoable change of page title.
- */
- function MovePage(ui, oldIndex, newIndex)
- {
- this.ui = ui;
- this.oldIndex = oldIndex;
- this.newIndex = newIndex;
- }
- /**
- * Implementation of the undoable page rename.
- */
- MovePage.prototype.execute = function()
- {
- this.ui.pages.splice(this.newIndex, 0, this.ui.pages.splice(this.oldIndex, 1)[0]);
- var tmp = this.oldIndex;
- this.oldIndex = this.newIndex;
- this.newIndex = tmp;
-
- // Required to update page numbers in placeholders
- this.ui.editor.graph.updatePlaceholders();
- this.ui.editor.fireEvent(new mxEventObject('pageMoved'));
- };
- /**
- * Class: mxCurrentRootChange
- *
- * Action to change the current root in a view.
- *
- * Constructor: mxCurrentRootChange
- *
- * Constructs a change of the current root in the given view.
- */
- function SelectPage(ui, page)
- {
- this.ui = ui;
- this.page = page;
- this.previousPage = page;
- this.neverShown = true;
-
- if (page != null)
- {
- this.neverShown = page.viewState == null;
- this.ui.updatePageRoot(page);
- }
- };
- /**
- * Executes selection of a new page.
- */
- SelectPage.prototype.execute = function()
- {
- var prevIndex = mxUtils.indexOf(this.ui.pages, this.previousPage);
-
- if (this.page != null && prevIndex >= 0)
- {
- var page = this.ui.currentPage;
- var editor = this.ui.editor;
- var graph = editor.graph;
-
- // Stores current diagram state in the page
- var data = editor.graph.compress(graph.zapGremlins(mxUtils.getXml(editor.getGraphXml(true))));
- mxUtils.setTextContent(page.node, data);
- page.viewState = graph.getViewState();
- page.root = graph.model.root;
-
- // Transitions for switching pages
- // var curIndex = mxUtils.indexOf(this.ui.pages, page);
- // mxUtils.setPrefixedStyle(graph.view.canvas.style, 'transition', null);
- // mxUtils.setPrefixedStyle(graph.view.canvas.style, 'transform',
- // (curIndex > prevIndex) ? 'translate(-50%,0)' : 'translate(50%,0)');
-
- // Removes the previous cells and clears selection
- graph.view.clear(page.root, true);
- graph.clearSelection();
-
- // Switches the current page
- this.ui.currentPage = this.previousPage;
- this.previousPage = page;
- page = this.ui.currentPage;
-
- // Switches the root cell and sets the view state
- graph.model.rootChanged(page.root);
- graph.setViewState(page.viewState);
-
- // Fires event to setting view state from realtime
- editor.fireEvent(new mxEventObject('setViewState', 'change', this));
-
- // Handles grid state in chromeless mode which is stored in Editor instance
- graph.gridEnabled = graph.gridEnabled && (!this.ui.editor.chromeless ||
- urlParams['grid'] == '1');
- // Updates the display
- editor.updateGraphComponents();
- graph.view.validate();
- graph.sizeDidChange();
-
- // mxUtils.setPrefixedStyle(graph.view.canvas.style, 'transition', 'transform 0.2s');
- // mxUtils.setPrefixedStyle(graph.view.canvas.style, 'transform', 'translate(0,0)');
-
- if (this.neverShown)
- {
- this.neverShown = false;
- graph.selectUnlockedLayer();
- }
-
- // Fires events
- editor.graph.fireEvent(new mxEventObject(mxEvent.ROOT));
- editor.fireEvent(new mxEventObject('pageSelected', 'change', this));
- }
- };
- /**
- *
- */
- function ChangePage(ui, page, select, index)
- {
- SelectPage.call(this, ui, select);
- this.relatedPage = page;
- this.index = index;
- this.previousIndex = null;
- };
- mxUtils.extend(ChangePage, SelectPage);
- /**
- * Function: execute
- *
- * Changes the current root of the view.
- */
- ChangePage.prototype.execute = function()
- {
- // Fires event to setting view state from realtime
- this.ui.editor.fireEvent(new mxEventObject('beforePageChange', 'change', this));
- this.previousIndex = this.index;
-
- if (this.index == null)
- {
- var tmp = mxUtils.indexOf(this.ui.pages, this.relatedPage);
- this.ui.pages.splice(tmp, 1);
- this.index = tmp;
- }
- else
- {
- this.ui.pages.splice(this.index, 0, this.relatedPage);
- this.index = null;
- }
- SelectPage.prototype.execute.apply(this, arguments);
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.initPages = function()
- {
- this.actions.addAction('previousPage', mxUtils.bind(this, function()
- {
- this.selectNextPage(false);
- }));
-
- this.actions.addAction('nextPage', mxUtils.bind(this, function()
- {
- this.selectNextPage(true);
- }));
-
- this.keyHandler.bindAction(33, true, 'previousPage', true); // Ctrl+Shift+PageUp
- this.keyHandler.bindAction(34, true, 'nextPage', true); // Ctrl+Shift+PageDown
-
- // Updates the tabs after loading the diagram
- var graph = this.editor.graph;
- var graphViewValidateBackground = graph.view.validateBackground;
-
- graph.view.validateBackground = mxUtils.bind(this, function()
- {
- if (this.tabContainer != null)
- {
- var prevHeight = this.tabContainer.style.height;
-
- if (this.fileNode == null || this.pages == null ||
- (this.pages.length == 1 && urlParams['pages'] == '0'))
- {
- this.tabContainer.style.height = '0px';
- }
- else
- {
- this.tabContainer.style.height = '30px';
- }
-
- if (prevHeight != this.tabContainer.style.height)
- {
- this.refresh(false);
- }
- }
-
- graphViewValidateBackground.apply(graph.view, arguments);
- });
- // Math workaround is only needed for initial rendering
- var ignorePendingMath = false;
- var lastPage = null;
-
- var updateTabs = mxUtils.bind(this, function()
- {
- this.updateTabContainer();
-
- // Updates scrollbar positions and backgrounds after validation
- var p = this.currentPage;
-
- if (p != null && p != lastPage)
- {
- if (p.viewState == null || p.viewState.scrollLeft == null)
- {
- this.resetScrollbars();
- if (graph.lightbox)
- {
- this.lightboxFit();
- }
-
- if (this.chromelessResize != null)
- {
- graph.container.scrollLeft = 0;
- graph.container.scrollTop = 0;
- this.chromelessResize();
- }
- }
- else
- {
- graph.container.scrollLeft = graph.view.translate.x * graph.view.scale + p.viewState.scrollLeft;
- graph.container.scrollTop = graph.view.translate.y * graph.view.scale + p.viewState.scrollTop;
- }
-
- lastPage = p;
- }
-
- // Updates layers window
- if (this.actions.layersWindow != null)
- {
- this.actions.layersWindow.refreshLayers();
- }
-
- // Workaround for math if tab is switched before typesetting has stopped
- if (typeof(MathJax) !== 'undefined' && typeof(MathJax.Hub) !== 'undefined')
- {
- // Pending math should not be rendered if the graph has no math enabled
- if (!ignorePendingMath)
- {
- if (MathJax.Hub.queue.pending == 1 && !this.editor.graph.mathEnabled)
- {
- // Since there is no way to stop/undo mathjax or
- // clear the queue, we do a refresh after typeset
- MathJax.Hub.Queue(mxUtils.bind(this, function()
- {
- this.editor.graph.refresh();
- }));
- }
-
- MathJax.Hub.Queue(mxUtils.bind(this, function()
- {
- ignorePendingMath = true;
- }));
- }
- }
- else if (typeof(Editor.MathJaxClear) !== 'undefined' && !this.editor.graph.mathEnabled)
- {
- // Clears our own queue for async loading
- ignorePendingMath = true;
- Editor.MathJaxClear();
- }
- });
-
- // Adds a graph model listener to update the view
- this.editor.graph.model.addListener(mxEvent.CHANGE, mxUtils.bind(this, function(sender, evt)
- {
- var edit = evt.getProperty('edit');
- var changes = edit.changes;
-
- for (var i = 0; i < changes.length; i++)
- {
- if (changes[i] instanceof SelectPage ||
- changes[i] instanceof RenamePage ||
- changes[i] instanceof MovePage ||
- changes[i] instanceof mxRootChange)
- {
- updateTabs();
- break;
- }
- }
- }));
-
- // Updates zoom in toolbar
- if (this.toolbar != null)
- {
- this.editor.addListener('pageSelected', this.toolbar.updateZoom);
- }
- };
- /**
- * Overrides setDefaultParent
- */
- Graph.prototype.createViewState = function(node)
- {
- var pv = node.getAttribute('page');
- var ps = node.getAttribute('pageScale');
- var pw = node.getAttribute('pageWidth');
- var ph = node.getAttribute('pageHeight');
- var bg = node.getAttribute('background');
- var temp = node.getAttribute('backgroundImage');
- var bgImg = (temp != null && temp.length > 0) ? JSON.parse(temp) : null;
-
- return {
- gridEnabled: node.getAttribute('grid') != '0',
- //gridColor: node.getAttribute('gridColor') || mxSettings.getGridColor(),
- gridSize: parseFloat(node.getAttribute('gridSize')) || mxGraph.prototype.gridSize,
- guidesEnabled: node.getAttribute('guides') != '0',
- foldingEnabled: node.getAttribute('fold') != '0',
- shadowVisible: node.getAttribute('shadow') == '1',
- pageVisible: (this.lightbox) ? false : ((pv != null) ? (pv != '0') : this.defaultPageVisible),
- background: (bg != null && bg.length > 0) ? bg : this.defaultGraphBackground,
- backgroundImage: (bgImg != null) ? new mxImage(bgImg.src, bgImg.width, bgImg.height) : null,
- pageScale: (ps != null) ? ps : mxGraph.prototype.pageScale,
- pageFormat: (pw != null && ph != null) ? new mxRectangle(0, 0,
- parseFloat(pw), parseFloat(ph)) : this.pageFormat,
- tooltips: node.getAttribute('tooltips') != '0',
- connect: node.getAttribute('connect') != '0',
- arrows: node.getAttribute('arrows') != '0',
- mathEnabled: node.getAttribute('math') != '0',
- selectionCells: null,
- defaultParent: null,
- scrollbars: this.defaultScrollbars,
- scale: 1
- };
- };
- /**
- * Overrides setDefaultParent
- */
- Graph.prototype.getViewState = function()
- {
- return {
- defaultParent: this.defaultParent,
- currentRoot: this.view.currentRoot,
- gridEnabled: this.gridEnabled,
- //gridColor: this.view.gridColor,
- gridSize: this.gridSize,
- guidesEnabled: this.graphHandler.guidesEnabled,
- foldingEnabled: this.foldingEnabled,
- shadowVisible: this.shadowVisible,
- scrollbars: this.scrollbars,
- pageVisible: this.pageVisible,
- background: this.background,
- backgroundImage: this.backgroundImage,
- pageScale: this.pageScale,
- pageFormat: this.pageFormat,
- tooltips: this.tooltipHandler.isEnabled(),
- connect: this.connectionHandler.isEnabled(),
- arrows: this.connectionArrowsEnabled,
- scale: this.view.scale,
- scrollLeft: this.container.scrollLeft - this.view.translate.x * this.view.scale,
- scrollTop: this.container.scrollTop - this.view.translate.y * this.view.scale,
- translate: this.view.translate.clone(),
- lastPasteXml: this.lastPasteXml,
- pasteCounter: this.pasteCounter,
- mathEnabled: this.mathEnabled
- };
- };
- /**
- * Overrides setDefaultParent
- */
- Graph.prototype.setViewState = function(state)
- {
- if (state != null)
- {
- this.lastPasteXml = state.lastPasteXml;
- this.pasteCounter = state.pasteCounter || 0;
- this.mathEnabled = state.mathEnabled;
- this.gridEnabled = state.gridEnabled;
- //this.view.gridColor = state.gridColor;
- this.gridSize = state.gridSize;
- this.graphHandler.guidesEnabled = state.guidesEnabled;
- this.foldingEnabled = state.foldingEnabled;
- this.setShadowVisible(state.shadowVisible, false);
- this.scrollbars = state.scrollbars;
- this.pageVisible = state.pageVisible;
- this.background = state.background;
- this.backgroundImage = state.backgroundImage;
- this.pageScale = state.pageScale;
- this.pageFormat = state.pageFormat;
- this.view.scale = state.scale;
- this.view.currentRoot = state.currentRoot;
- this.defaultParent = state.defaultParent;
- this.connectionArrowsEnabled = state.arrows;
- this.setTooltips(state.tooltips);
- this.setConnectable(state.connect);
-
- // Checks if current root or default parent have been removed
- if (!this.model.contains(this.view.currentRoot))
- {
- this.view.currentRoot = null;
- }
-
- if (!this.model.contains(this.defaultParent))
- {
- this.setDefaultParent(null);
- this.selectUnlockedLayer();
- }
-
- if (state.translate != null)
- {
- this.view.translate = state.translate;
- }
- }
- else
- {
- this.view.currentRoot = null;
- this.view.scale = 1;
- this.gridEnabled = true;
- this.gridSize = mxGraph.prototype.gridSize;
- this.pageScale = mxGraph.prototype.pageScale;
- this.pageFormat = mxSettings.getPageFormat();
- this.pageVisible = this.defaultPageVisible;
- this.background = this.defaultGraphBackground;
- this.backgroundImage = null;
- this.scrollbars = this.defaultScrollbars;
- this.graphHandler.guidesEnabled = true;
- this.foldingEnabled = true;
- this.defaultParent = null;
- this.setTooltips(true);
- this.setConnectable(true);
- this.lastPasteXml = null;
- this.pasteCounter = 0;
- this.mathEnabled = false;
- this.connectionArrowsEnabled = true;
- }
-
- // Implicit settings
- this.pageBreaksVisible = this.pageVisible;
- this.preferPageSize = this.pageVisible;
- };
- /**
- * Executes selection of a new page.
- */
- EditorUi.prototype.updatePageRoot = function(page)
- {
- if (page.root == null)
- {
- var node = this.editor.extractGraphModel(page.node);
-
- if (node != null)
- {
- page.graphModelNode = node;
-
- // Converts model XML into page object with root cell
- page.viewState = this.editor.graph.createViewState(node);
- var codec = new mxCodec(node.ownerDocument);
- page.root = codec.decode(node).root;
- }
- else
- {
- // Initializes page object with new empty root
- page.root = this.editor.graph.model.createRoot();
- }
- }
-
- return page;
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.selectPage = function(page)
- {
- this.editor.graph.stopEditing();
-
- var edit = this.editor.graph.model.createUndoableEdit();
-
- // Special flag to bypass autosave for this edit
- edit.ignoreEdit = true;
-
- var change = new SelectPage(this, page);
- change.execute();
- edit.add(change);
- edit.notify();
-
- this.editor.graph.model.fireEvent(new mxEventObject(mxEvent.UNDO, 'edit', edit));
- };
- /**
- *
- */
- EditorUi.prototype.selectNextPage = function(forward)
- {
- var next = this.currentPage;
-
- if (next != null && this.pages != null)
- {
- var tmp = mxUtils.indexOf(this.pages, next);
-
- if (forward)
- {
- this.selectPage(this.pages[mxUtils.mod(tmp + 1, this.pages.length)]);
- }
- else if (!forward)
- {
- this.selectPage(this.pages[mxUtils.mod(tmp - 1, this.pages.length)]);
- }
- }
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.insertPage = function(page, index)
- {
- if (this.editor.graph.isEnabled())
- {
- page = (page != null) ? page : this.createPage();
- index = (index != null) ? index : this.pages.length;
-
- // Uses model to fire event and trigger autosave
- var change = new ChangePage(this, page, page, index);
- this.editor.graph.model.execute(change);
- }
-
- return page;
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.createPage = function(name)
- {
- var page = new DiagramPage(this.fileNode.ownerDocument.createElement('diagram'));
- page.setName((name != null) ? name : this.createPageName());
-
- return page;
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.createPageName = function()
- {
- // Creates a lookup with names
- var existing = {};
-
- for (var i = 0; i < this.pages.length; i++)
- {
- var tmp = this.pages[i].getName();
-
- if (tmp != null && tmp.length > 0)
- {
- existing[tmp] = tmp;
- }
- }
- // Avoids existing names
- var nr = this.pages.length;
- var name = null;
-
- do
- {
- name = mxResources.get('pageWithNumber', [++nr]);
- }
- while (existing[name] != null);
-
- return name;
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.removePage = function(page)
- {
- var graph = this.editor.graph;
-
- if (graph.isEnabled())
- {
- graph.model.beginUpdate();
- try
- {
- var next = this.currentPage;
-
- if (next == page)
- {
- if (this.pages.length > 1)
- {
- var tmp = mxUtils.indexOf(this.pages, page);
-
- if (tmp == this.pages.length - 1)
- {
- tmp--;
- }
- else
- {
- tmp++;
- }
-
- next = this.pages[tmp];
- }
- else
- {
- // Removes label with incorrect page number to force
- // default page name which is OK for a single page
- next = this.insertPage();
- graph.model.execute(new RenamePage(this, next, mxResources.get('pageWithNumber', [1])));
- }
- }
-
- // Uses model to fire event to trigger autosave
- graph.model.execute(new ChangePage(this, page, next));
- }
- finally
- {
- graph.model.endUpdate();
- }
- }
-
- return page;
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.duplicatePage = function(page, name)
- {
- var graph = this.editor.graph;
- var newPage = null;
-
- if (graph.isEnabled())
- {
- if (graph.isEditing())
- {
- graph.stopEditing();
- }
-
- // Clones the current page and takes a snapshot of the graph model and view state
- var newPage = new DiagramPage(page.node.cloneNode(false));
- newPage.root = graph.cloneCells([graph.model.root])[0];
- newPage.viewState = graph.getViewState();
-
- // Resets zoom and scrollbar positions
- newPage.viewState.scale = 1;
- newPage.viewState.scrollLeft = null;
- newPage.viewState.scrollRight = null;
- newPage.setName(name);
-
- newPage = this.insertPage(newPage, mxUtils.indexOf(this.pages, page) + 1);
- }
-
- return newPage;
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.renamePage = function(page)
- {
- var graph = this.editor.graph;
- if (graph.isEnabled())
- {
- var dlg = new FilenameDialog(this, page.getName(), mxResources.get('rename'), mxUtils.bind(this, function(name)
- {
- if (name != null && name.length > 0)
- {
- this.editor.graph.model.execute(new RenamePage(this, page, name));
- }
- }), mxResources.get('rename'));
- this.showDialog(dlg.container, 300, 80, true, true);
- dlg.init();
- }
-
- return page;
- }
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.movePage = function(oldIndex, newIndex)
- {
- this.editor.graph.model.execute(new MovePage(this, oldIndex, newIndex));
- }
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.createTabContainer = function()
- {
- var div = document.createElement('div');
- div.style.backgroundColor = '#dcdcdc';
- div.style.position = 'absolute';
- div.style.whiteSpace = 'nowrap';
- div.style.overflow = 'hidden';
- div.style.height = '0px';
-
- return div;
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.updateTabContainer = function()
- {
- if (this.tabContainer != null && this.pages != null)
- {
- var graph = this.editor.graph;
- var wrapper = document.createElement('div');
- wrapper.style.position = 'relative';
- wrapper.style.display = (mxClient.IS_QUIRKS) ? 'inline' : 'inline-block';
- wrapper.style.verticalAlign = 'top';
- wrapper.style.height = this.tabContainer.style.height;
- wrapper.style.whiteSpace = 'nowrap';
- wrapper.style.overflow = 'hidden';
- wrapper.style.fontSize = '12px';
-
- // Allows for negative left margin of first tab
- wrapper.style.marginLeft = '30px';
-
- // Automatic tab width to match available width
- // TODO: Fix tabWidth in chromeless mode
- var btnWidth = (this.editor.chromeless) ? 29 : 59;
- var tabWidth = Math.min(140, Math.max(20, (this.tabContainer.clientWidth - btnWidth) / this.pages.length) + 1);
- var startIndex = null;
- for (var i = 0; i < this.pages.length; i++)
- {
- // Install drag and drop for page reorder
- (mxUtils.bind(this, function(index, tab)
- {
- if (this.pages[index] == this.currentPage)
- {
- tab.style.backgroundColor = '#eeeeee';
- tab.style.fontWeight = 'bold';
- tab.style.borderTopStyle = 'none';
- }
-
- tab.setAttribute('draggable', 'true');
-
- mxEvent.addListener(tab, 'dragstart', mxUtils.bind(this, function(evt)
- {
- if (graph.isEnabled())
- {
- // Workaround for no DnD on DIV in FF
- if (mxClient.IS_FF)
- {
- // LATER: Check what triggers a parse as XML on this in FF after drop
- evt.dataTransfer.setData('Text', '<diagram/>');
- }
-
- startIndex = index;
- }
- else
- {
- // Blocks event
- mxEvent.consume(evt);
- }
- }));
-
- mxEvent.addListener(tab, 'dragend', mxUtils.bind(this, function(evt)
- {
- startIndex = null;
- evt.stopPropagation();
- evt.preventDefault();
- }));
-
- mxEvent.addListener(tab, 'dragover', mxUtils.bind(this, function(evt)
- {
- if (startIndex != null)
- {
- evt.dataTransfer.dropEffect = 'move';
- }
-
- evt.stopPropagation();
- evt.preventDefault();
- }));
-
- mxEvent.addListener(tab, 'drop', mxUtils.bind(this, function(evt)
- {
- if (startIndex != null && index != startIndex)
- {
- // TODO: Shift drag for insert/merge?
- this.movePage(startIndex, index);
- }
- evt.stopPropagation();
- evt.preventDefault();
- }));
-
- wrapper.appendChild(tab);
- }))(i, this.createTabForPage(this.pages[i], tabWidth, this.pages[i] != this.currentPage));
- }
-
- this.tabContainer.innerHTML = '';
- this.tabContainer.appendChild(wrapper);
-
- // Adds floating menu with all pages and insert option
- var menutab = this.createPageMenuTab();
- this.tabContainer.appendChild(menutab);
- var insertTab = null;
-
- // Not chromeless and not read-only file
- if (graph.isEnabled())
- {
- insertTab = this.createPageInsertTab();
- this.tabContainer.appendChild(insertTab);
- }
-
- if (wrapper.clientWidth > this.tabContainer.clientWidth - btnWidth)
- {
- if (insertTab != null)
- {
- insertTab.style.position = 'absolute';
- insertTab.style.right = '0px';
- wrapper.style.marginRight = '30px';
- }
-
- var temp = this.createControlTab(4, ' ❮ ');
- temp.style.position = 'absolute';
- temp.style.right = (this.editor.chromeless) ? '29px' : '55px';
- temp.style.fontSize = '13pt';
-
- this.tabContainer.appendChild(temp);
-
- var temp2 = this.createControlTab(4, ' ❯');
- temp2.style.position = 'absolute';
- temp2.style.right = (this.editor.chromeless) ? '0px' : '29px';
- temp2.style.fontSize = '13pt';
-
- this.tabContainer.appendChild(temp2);
-
- // TODO: Scroll to current page
- var dx = Math.max(0, this.tabContainer.clientWidth - ((this.editor.chromeless) ? 86 : 116));
- wrapper.style.width = dx + 'px';
-
- var fade = 50;
-
- mxEvent.addListener(temp, 'click', mxUtils.bind(this, function(evt)
- {
- wrapper.scrollLeft -= Math.max(20, dx - 20);
- mxUtils.setOpacity(temp, (wrapper.scrollLeft > 0) ? 100 : fade);
- mxUtils.setOpacity(temp2, (wrapper.scrollLeft < wrapper.scrollWidth - wrapper.clientWidth) ? 100 : fade);
- mxEvent.consume(evt);
- }));
-
- mxUtils.setOpacity(temp, (wrapper.scrollLeft > 0) ? 100 : fade);
- mxUtils.setOpacity(temp2, (wrapper.scrollLeft < wrapper.scrollWidth - wrapper.clientWidth) ? 100 : fade);
- mxEvent.addListener(temp2, 'click', mxUtils.bind(this, function(evt)
- {
- wrapper.scrollLeft += Math.max(20, dx - 20);
- mxUtils.setOpacity(temp, (wrapper.scrollLeft > 0) ? 100 : fade);
- mxUtils.setOpacity(temp2, (wrapper.scrollLeft < wrapper.scrollWidth - wrapper.clientWidth) ? 100 : fade);
- mxEvent.consume(evt);
- }));
- }
- }
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.createTab = function(hoverEnabled)
- {
- var tab = document.createElement('div');
- tab.style.display = (mxClient.IS_QUIRKS) ? 'inline' : 'inline-block';
- tab.style.whiteSpace = 'nowrap';
- tab.style.boxSizing = 'border-box';
- tab.style.position = 'relative';
- tab.style.overflow = 'hidden';
- tab.style.marginLeft = '-1px';
- tab.style.height = this.tabContainer.clientHeight + 'px';
- tab.style.padding = '8px 4px 8px 4px';
- tab.style.border = '1px solid #c0c0c0';
- tab.style.borderBottomStyle = 'solid';
- tab.style.backgroundColor = this.tabContainer.style.backgroundColor;
- tab.style.cursor = 'default';
- tab.style.color = 'gray';
- if (hoverEnabled)
- {
- mxEvent.addListener(tab, 'mouseenter', mxUtils.bind(this, function(evt)
- {
- if (!this.editor.graph.isMouseDown)
- {
- tab.style.backgroundColor = '#d3d3d3';
- mxEvent.consume(evt);
- }
- }));
-
- mxEvent.addListener(tab, 'mouseleave', mxUtils.bind(this, function(evt)
- {
- tab.style.backgroundColor = this.tabContainer.style.backgroundColor;
- mxEvent.consume(evt);
- }));
- }
-
- return tab;
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.createControlTab = function(paddingTop, html)
- {
- var tab = this.createTab(true);
- tab.style.paddingTop = paddingTop + 'px';
- tab.style.cursor = 'pointer';
- tab.style.width = '30px';
- tab.style.lineHeight = '30px';
- tab.innerHTML = html;
- if (tab.firstChild != null && tab.firstChild.style != null)
- {
- mxUtils.setOpacity(tab.firstChild, 40);
- }
-
- return tab;
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.createPageMenuTab = function()
- {
- var tab = this.createControlTab(3, '<div class="geSprite geSprite-dots" style="display:inline-block;width:21px;height:21px;"></div>');
- tab.setAttribute('title', mxResources.get('pages'));
- tab.style.position = 'absolute';
- tab.style.left = '1px';
-
- mxEvent.addListener(tab, 'click', mxUtils.bind(this, function(evt)
- {
- this.editor.graph.popupMenuHandler.hideMenu();
- var menu = new mxPopupMenu(mxUtils.bind(this, function(menu, parent)
- {
- for (var i = 0; i < this.pages.length; i++)
- {
- (mxUtils.bind(this, function(index)
- {
- var item = menu.addItem(this.pages[index].getName(), null, mxUtils.bind(this, function()
- {
- this.selectPage(this.pages[index]);
- }), parent);
-
- // Adds checkmark to current page
- if (this.pages[index] == this.currentPage)
- {
- menu.addCheckmark(item, Editor.checkmarkImage);
- }
- }))(i);
- }
-
- if (this.editor.graph.isEnabled())
- {
- menu.addSeparator(parent);
-
- var item = menu.addItem(mxResources.get('insertPage'), null, mxUtils.bind(this, function()
- {
- this.insertPage();
- }), parent);
- }
- }));
-
- menu.div.className += ' geMenubarMenu';
- menu.smartSeparators = true;
- menu.showDisabled = true;
- menu.autoExpand = true;
-
- // Disables autoexpand and destroys menu when hidden
- menu.hideMenu = mxUtils.bind(this, function()
- {
- mxPopupMenu.prototype.hideMenu.apply(menu, arguments);
- menu.destroy();
- });
-
- var x = mxEvent.getClientX(evt);
- var y = mxEvent.getClientY(evt);
- menu.popup(x, y, null, evt);
-
- // Allows hiding by clicking on document
- this.setCurrentMenu(menu);
- mxEvent.consume(evt);
- }));
-
- return tab;
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.createPageInsertTab = function()
- {
- var tab = this.createControlTab(4, '<div class="geSprite geSprite-plus" style="display:inline-block;width:21px;height:21px;"></div>');
- tab.setAttribute('title', mxResources.get('insertPage'));
- var graph = this.editor.graph;
-
- mxEvent.addListener(tab, 'click', mxUtils.bind(this, function(evt)
- {
- this.insertPage();
- mxEvent.consume(evt);
- }));
-
- return tab;
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.createTabForPage = function(page, tabWidth, hoverEnabled)
- {
- var tab = this.createTab(hoverEnabled);
- var name = page.getName();
- tab.setAttribute('title', name);
- mxUtils.write(tab, name);
- tab.style.maxWidth = tabWidth + 'px';
- tab.style.width = tabWidth + 'px';
- this.addTabListeners(page, tab);
-
- if (tabWidth > 42)
- {
- tab.style.textOverflow = 'ellipsis';
- }
-
- return tab;
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- EditorUi.prototype.addTabListeners = function(page, tab)
- {
- mxEvent.disableContextMenu(tab);
- var graph = this.editor.graph;
- var model = graph.model;
- mxEvent.addListener(tab, 'dblclick', mxUtils.bind(this, function(evt)
- {
- this.renamePage(page)
- mxEvent.consume(evt);
- }));
-
- var menuWasVisible = false;
- var pageWasActive = false;
-
- mxEvent.addGestureListeners(tab, mxUtils.bind(this, function(evt)
- {
- // Do not consume event here to allow for drag and drop of tabs
- menuWasVisible = this.currentMenu != null;
- pageWasActive = page == this.currentPage;
-
- if (!graph.isMouseDown && !pageWasActive)
- {
- this.selectPage(page);
- }
- }), null, mxUtils.bind(this, function(evt)
- {
- if (graph.isEnabled() && !graph.isMouseDown &&
- ((mxEvent.isTouchEvent(evt) && pageWasActive) ||
- mxEvent.isPopupTrigger(evt)))
- {
- graph.popupMenuHandler.hideMenu();
- this.hideCurrentMenu();
- if (!mxEvent.isTouchEvent(evt) || !menuWasVisible)
- {
- var menu = new mxPopupMenu(this.createPageMenu(page));
-
- menu.div.className += ' geMenubarMenu';
- menu.smartSeparators = true;
- menu.showDisabled = true;
- menu.autoExpand = true;
-
- // Disables autoexpand and destroys menu when hidden
- menu.hideMenu = mxUtils.bind(this, function()
- {
- mxPopupMenu.prototype.hideMenu.apply(menu, arguments);
- this.resetCurrentMenu();
- menu.destroy();
- });
-
- var x = mxEvent.getClientX(evt);
- var y = mxEvent.getClientY(evt);
- menu.popup(x, y, null, evt);
- this.setCurrentMenu(menu, tab);
- }
-
- mxEvent.consume(evt);
- }
- }));
- };
- /**
- * Returns true if the given string contains an mxfile.
- */
- EditorUi.prototype.createPageMenu = function(page, label)
- {
- return mxUtils.bind(this, function(menu, parent)
- {
- var graph = this.editor.graph;
- var model = graph.model;
- menu.addItem(mxResources.get('insert'), null, mxUtils.bind(this, function()
- {
- this.insertPage(null, mxUtils.indexOf(this.pages, page) + 1);
- }), parent);
-
- menu.addItem(mxResources.get('delete'), null, mxUtils.bind(this, function()
- {
- this.removePage(page);
- }), parent);
-
- menu.addItem(mxResources.get('rename'), null, mxUtils.bind(this, function()
- {
- this.renamePage(page, label);
- }), parent);
-
- menu.addSeparator(parent);
-
- menu.addItem(mxResources.get('duplicate'), null, mxUtils.bind(this, function()
- {
- this.duplicatePage(page, mxResources.get('copyOf', [page.getName()]));
- }), parent);
- });
- };
|