EditorUi.js 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951
  1. /**
  2. * Copyright (c) 2006-2012, JGraph Ltd
  3. */
  4. /**
  5. * Constructs a new graph editor
  6. */
  7. EditorUi = function(editor, container, lightbox)
  8. {
  9. mxEventSource.call(this);
  10. this.destroyFunctions = [];
  11. this.editor = editor || new Editor();
  12. this.container = container || document.body;
  13. var graph = this.editor.graph;
  14. graph.lightbox = lightbox;
  15. // Pre-fetches submenu image or replaces with embedded image if supported
  16. if (mxClient.IS_SVG)
  17. {
  18. mxPopupMenu.prototype.submenuImage = 'data:image/gif;base64,R0lGODlhCQAJAIAAAP///zMzMyH5BAEAAAAALAAAAAAJAAkAAAIPhI8WebHsHopSOVgb26AAADs=';
  19. }
  20. else
  21. {
  22. new Image().src = mxPopupMenu.prototype.submenuImage;
  23. }
  24. // Pre-fetches connect image
  25. if (!mxClient.IS_SVG && mxConnectionHandler.prototype.connectImage != null)
  26. {
  27. new Image().src = mxConnectionHandler.prototype.connectImage.src;
  28. }
  29. // Disables graph and forced panning in chromeless mode
  30. if (this.editor.chromeless)
  31. {
  32. this.footerHeight = 0;
  33. graph.isEnabled = function() { return false; };
  34. graph.panningHandler.isForcePanningEvent = function(me)
  35. {
  36. return !mxEvent.isPopupTrigger(me.getEvent());
  37. };
  38. }
  39. // Creates the user interface
  40. this.actions = new Actions(this);
  41. this.menus = this.createMenus();
  42. this.createDivs();
  43. this.createUi();
  44. this.refresh();
  45. // Disables HTML and text selection
  46. var textEditing = mxUtils.bind(this, function(evt)
  47. {
  48. if (evt == null)
  49. {
  50. evt = window.event;
  51. }
  52. return this.isSelectionAllowed(evt) || graph.isEditing();
  53. });
  54. // Disables text selection while not editing and no dialog visible
  55. if (this.container == document.body)
  56. {
  57. this.menubarContainer.onselectstart = textEditing;
  58. this.menubarContainer.onmousedown = textEditing;
  59. this.toolbarContainer.onselectstart = textEditing;
  60. this.toolbarContainer.onmousedown = textEditing;
  61. this.diagramContainer.onselectstart = textEditing;
  62. this.diagramContainer.onmousedown = textEditing;
  63. this.sidebarContainer.onselectstart = textEditing;
  64. this.sidebarContainer.onmousedown = textEditing;
  65. this.formatContainer.onselectstart = textEditing;
  66. this.formatContainer.onmousedown = textEditing;
  67. this.footerContainer.onselectstart = textEditing;
  68. this.footerContainer.onmousedown = textEditing;
  69. if (this.tabContainer != null)
  70. {
  71. // Mouse down is needed for drag and drop
  72. this.tabContainer.onselectstart = textEditing;
  73. }
  74. }
  75. // And uses built-in context menu while editing
  76. if (!this.editor.chromeless)
  77. {
  78. if (mxClient.IS_IE && (typeof(document.documentMode) === 'undefined' || document.documentMode < 9))
  79. {
  80. mxEvent.addListener(this.diagramContainer, 'contextmenu', textEditing);
  81. }
  82. else
  83. {
  84. // Allows browser context menu outside of diagram and sidebar
  85. this.diagramContainer.oncontextmenu = textEditing;
  86. }
  87. }
  88. else
  89. {
  90. graph.panningHandler.usePopupTrigger = false;
  91. }
  92. // Contains the main graph instance inside the given panel
  93. graph.init(this.diagramContainer);
  94. // Creates hover icons
  95. this.hoverIcons = this.createHoverIcons();
  96. // Adds tooltip when mouse is over scrollbars to show space-drag panning option
  97. mxEvent.addListener(this.diagramContainer, 'mousemove', mxUtils.bind(this, function(evt)
  98. {
  99. var off = mxUtils.getOffset(this.diagramContainer);
  100. if (mxEvent.getClientX(evt) - off.x - this.diagramContainer.clientWidth > 0 ||
  101. mxEvent.getClientY(evt) - off.y - this.diagramContainer.clientHeight > 0)
  102. {
  103. this.diagramContainer.setAttribute('title', mxResources.get('panTooltip'));
  104. }
  105. else
  106. {
  107. this.diagramContainer.removeAttribute('title');
  108. }
  109. }));
  110. // Escape key hides dialogs, adds space+drag panning
  111. var spaceKeyPressed = false;
  112. // Overrides hovericons to disable while space key is pressed
  113. var hoverIconsIsResetEvent = this.hoverIcons.isResetEvent;
  114. this.hoverIcons.isResetEvent = function(evt, allowShift)
  115. {
  116. return spaceKeyPressed || hoverIconsIsResetEvent.apply(this, arguments);
  117. };
  118. this.keydownHandler = mxUtils.bind(this, function(evt)
  119. {
  120. if (evt.which == 32 /* Space */)
  121. {
  122. spaceKeyPressed = true;
  123. this.hoverIcons.reset();
  124. graph.container.style.cursor = 'move';
  125. // Disables scroll after space keystroke with scrollbars
  126. if (!graph.isEditing() && mxEvent.getSource(evt) == graph.container)
  127. {
  128. mxEvent.consume(evt);
  129. }
  130. }
  131. else if (!mxEvent.isConsumed(evt) && evt.keyCode == 27 /* Escape */)
  132. {
  133. this.hideDialog();
  134. }
  135. });
  136. mxEvent.addListener(document, 'keydown', this.keydownHandler);
  137. this.keyupHandler = mxUtils.bind(this, function(evt)
  138. {
  139. graph.container.style.cursor = '';
  140. spaceKeyPressed = false;
  141. });
  142. mxEvent.addListener(document, 'keyup', this.keyupHandler);
  143. // Forces panning for middle and right mouse buttons
  144. var panningHandlerIsForcePanningEvent = graph.panningHandler.isForcePanningEvent;
  145. graph.panningHandler.isForcePanningEvent = function(me)
  146. {
  147. // Ctrl+left button is reported as right button in FF on Mac
  148. return panningHandlerIsForcePanningEvent.apply(this, arguments) ||
  149. spaceKeyPressed || (mxEvent.isMouseEvent(me.getEvent()) &&
  150. (this.usePopupTrigger || !mxEvent.isPopupTrigger(me.getEvent())) &&
  151. ((!mxEvent.isControlDown(me.getEvent()) &&
  152. mxEvent.isRightMouseButton(me.getEvent())) ||
  153. mxEvent.isMiddleMouseButton(me.getEvent())));
  154. };
  155. // Ctrl/Cmd+Enter applies editing value except in Safari where Ctrl+Enter creates
  156. // a new line (while Enter creates a new paragraph and Shift+Enter stops)
  157. var cellEditorIsStopEditingEvent = graph.cellEditor.isStopEditingEvent;
  158. graph.cellEditor.isStopEditingEvent = function(evt)
  159. {
  160. return cellEditorIsStopEditingEvent.apply(this, arguments) ||
  161. (evt.keyCode == 13 && ((!mxClient.IS_SF && mxEvent.isControlDown(evt)) ||
  162. (mxClient.IS_MAC && mxEvent.isMetaDown(evt)) ||
  163. (mxClient.IS_SF && mxEvent.isShiftDown(evt))));
  164. };
  165. // Switches toolbar for text editing
  166. var textMode = false;
  167. var fontMenu = null;
  168. var sizeMenu = null;
  169. var nodes = null;
  170. var updateToolbar = mxUtils.bind(this, function()
  171. {
  172. if (textMode != graph.cellEditor.isContentEditing())
  173. {
  174. var node = this.toolbar.container.firstChild;
  175. var newNodes = [];
  176. while (node != null)
  177. {
  178. var tmp = node.nextSibling;
  179. if (mxUtils.indexOf(this.toolbar.staticElements, node) < 0)
  180. {
  181. node.parentNode.removeChild(node);
  182. newNodes.push(node);
  183. }
  184. node = tmp;
  185. }
  186. // Saves references to special items
  187. var tmp1 = this.toolbar.fontMenu;
  188. var tmp2 = this.toolbar.sizeMenu;
  189. if (nodes == null)
  190. {
  191. this.toolbar.createTextToolbar();
  192. }
  193. else
  194. {
  195. for (var i = 0; i < nodes.length; i++)
  196. {
  197. this.toolbar.container.appendChild(nodes[i]);
  198. }
  199. // Restores references to special items
  200. this.toolbar.fontMenu = fontMenu;
  201. this.toolbar.sizeMenu = sizeMenu;
  202. }
  203. textMode = graph.cellEditor.isContentEditing();
  204. fontMenu = tmp1;
  205. sizeMenu = tmp2;
  206. nodes = newNodes;
  207. }
  208. });
  209. var ui = this;
  210. // Overrides cell editor to update toolbar
  211. var cellEditorStartEditing = graph.cellEditor.startEditing;
  212. graph.cellEditor.startEditing = function()
  213. {
  214. cellEditorStartEditing.apply(this, arguments);
  215. updateToolbar();
  216. if (graph.cellEditor.isContentEditing())
  217. {
  218. var updating = false;
  219. var updateCssHandler = function()
  220. {
  221. if (!updating)
  222. {
  223. updating = true;
  224. window.setTimeout(function()
  225. {
  226. var selectedElement = graph.getSelectedElement();
  227. var node = selectedElement;
  228. while (node != null && node.nodeType != mxConstants.NODETYPE_ELEMENT)
  229. {
  230. node = node.parentNode;
  231. }
  232. if (node != null)
  233. {
  234. var css = mxUtils.getCurrentStyle(node);
  235. if (css != null && ui.toolbar != null)
  236. {
  237. // Strips leading and trailing quotes
  238. var ff = css.fontFamily;
  239. if (ff.charAt(0) == '\'')
  240. {
  241. ff = ff.substring(1);
  242. }
  243. if (ff.charAt(ff.length - 1) == '\'')
  244. {
  245. ff = ff.substring(0, ff.length - 1);
  246. }
  247. ui.toolbar.setFontName(ff);
  248. ui.toolbar.setFontSize(parseInt(css.fontSize));
  249. }
  250. }
  251. updating = false;
  252. }, 0);
  253. }
  254. };
  255. mxEvent.addListener(graph.cellEditor.textarea, 'input', updateCssHandler)
  256. mxEvent.addListener(graph.cellEditor.textarea, 'touchend', updateCssHandler);
  257. mxEvent.addListener(graph.cellEditor.textarea, 'mouseup', updateCssHandler);
  258. mxEvent.addListener(graph.cellEditor.textarea, 'keyup', updateCssHandler);
  259. updateCssHandler();
  260. }
  261. };
  262. var cellEditorStopEditing = graph.cellEditor.stopEditing;
  263. graph.cellEditor.stopEditing = function(cell, trigger)
  264. {
  265. cellEditorStopEditing.apply(this, arguments);
  266. updateToolbar();
  267. };
  268. // Enables scrollbars and sets cursor style for the container
  269. graph.container.setAttribute('tabindex', '0');
  270. graph.container.style.cursor = 'default';
  271. // Workaround for page scroll if embedded via iframe
  272. if (window.self === window.top && graph.container.parentNode != null)
  273. {
  274. graph.container.focus();
  275. }
  276. // Keeps graph container focused on mouse down
  277. var graphFireMouseEvent = graph.fireMouseEvent;
  278. graph.fireMouseEvent = function(evtName, me, sender)
  279. {
  280. if (evtName == mxEvent.MOUSE_DOWN)
  281. {
  282. this.container.focus();
  283. }
  284. graphFireMouseEvent.apply(this, arguments);
  285. };
  286. // Configures automatic expand on mouseover
  287. graph.popupMenuHandler.autoExpand = true;
  288. // Installs context menu
  289. if (this.menus != null)
  290. {
  291. graph.popupMenuHandler.factoryMethod = mxUtils.bind(this, function(menu, cell, evt)
  292. {
  293. this.menus.createPopupMenu(menu, cell, evt);
  294. });
  295. }
  296. // Hides context menu
  297. mxEvent.addGestureListeners(document, mxUtils.bind(this, function(evt)
  298. {
  299. graph.popupMenuHandler.hideMenu();
  300. }));
  301. // Create handler for key events
  302. this.keyHandler = this.createKeyHandler(editor);
  303. // Getter for key handler
  304. this.getKeyHandler = function()
  305. {
  306. return keyHandler;
  307. };
  308. // Stores the current style and assigns it to new cells
  309. var styles = ['rounded', 'shadow', 'glass', 'dashed', 'dashPattern', 'comic', 'labelBackgroundColor'];
  310. var connectStyles = ['shape', 'edgeStyle', 'curved', 'rounded', 'elbow', 'comic'];
  311. // Note: Everything that is not in styles is ignored (styles is augmented below)
  312. this.setDefaultStyle = function(cell)
  313. {
  314. var state = graph.view.getState(cell);
  315. if (state != null)
  316. {
  317. // Ignores default styles
  318. var clone = cell.clone();
  319. clone.style = ''
  320. var defaultStyle = graph.getCellStyle(clone);
  321. var values = [];
  322. var keys = [];
  323. for (var key in state.style)
  324. {
  325. if (defaultStyle[key] != state.style[key])
  326. {
  327. values.push(state.style[key]);
  328. keys.push(key);
  329. }
  330. }
  331. // Handles special case for value "none"
  332. var cellStyle = graph.getModel().getStyle(state.cell);
  333. var tokens = (cellStyle != null) ? cellStyle.split(';') : [];
  334. for (var i = 0; i < tokens.length; i++)
  335. {
  336. var tmp = tokens[i];
  337. var pos = tmp.indexOf('=');
  338. if (pos >= 0)
  339. {
  340. var key = tmp.substring(0, pos);
  341. var value = tmp.substring(pos + 1);
  342. if (defaultStyle[key] != null && value == 'none')
  343. {
  344. values.push(value);
  345. keys.push(key);
  346. }
  347. }
  348. }
  349. // Resets current style
  350. if (graph.getModel().isEdge(state.cell))
  351. {
  352. graph.currentEdgeStyle = {};
  353. }
  354. else
  355. {
  356. graph.currentVertexStyle = {}
  357. }
  358. this.fireEvent(new mxEventObject('styleChanged', 'keys', keys, 'values', values, 'cells', [state.cell]));
  359. }
  360. };
  361. this.clearDefaultStyle = function()
  362. {
  363. graph.currentEdgeStyle = graph.defaultEdgeStyle;
  364. graph.currentVertexStyle = graph.defaultVertexStyle;
  365. // Updates UI
  366. this.fireEvent(new mxEventObject('styleChanged', 'keys', [], 'values', [], 'cells', []));
  367. };
  368. // Keys that should be ignored if the cell has a value (known: new default for all cells is html=1 so
  369. // for the html key this effecticely only works for edges inserted via the connection handler)
  370. var valueStyles = ['fontFamily', 'fontSize', 'fontColor'];
  371. // Keys that always update the current edge style regardless of selection
  372. var alwaysEdgeStyles = ['edgeStyle', 'startArrow', 'startFill', 'startSize', 'endArrow', 'endFill', 'endSize', 'jettySize', 'orthogonalLoop'];
  373. // Keys that are ignored together (if one appears all are ignored)
  374. var keyGroups = [['startArrow', 'startFill', 'startSize', 'endArrow', 'endFill', 'endSize', 'jettySize', 'orthogonalLoop'],
  375. ['strokeColor', 'strokeWidth'],
  376. ['fillColor', 'gradientColor'],
  377. valueStyles,
  378. ['align'],
  379. ['html']];
  380. // Adds all keys used above to the styles array
  381. for (var i = 0; i < keyGroups.length; i++)
  382. {
  383. for (var j = 0; j < keyGroups[i].length; j++)
  384. {
  385. styles.push(keyGroups[i][j]);
  386. }
  387. }
  388. for (var i = 0; i < connectStyles.length; i++)
  389. {
  390. styles.push(connectStyles[i]);
  391. }
  392. // Implements a global current style for edges and vertices that is applied to new cells
  393. var insertHandler = function(cells, asText)
  394. {
  395. graph.getModel().beginUpdate();
  396. try
  397. {
  398. // Applies only basic text styles
  399. if (asText)
  400. {
  401. var edge = graph.getModel().isEdge(cell);
  402. var current = (edge) ? graph.currentEdgeStyle : graph.currentVertexStyle;
  403. var textStyles = ['fontSize', 'fontFamily', 'fontColor'];
  404. for (var j = 0; j < textStyles.length; j++)
  405. {
  406. var value = current[textStyles[j]];
  407. if (value != null)
  408. {
  409. graph.setCellStyles(textStyles[j], value, cells);
  410. }
  411. }
  412. }
  413. else
  414. {
  415. for (var i = 0; i < cells.length; i++)
  416. {
  417. var cell = cells[i];
  418. // Removes styles defined in the cell style from the styles to be applied
  419. var cellStyle = graph.getModel().getStyle(cell);
  420. var tokens = (cellStyle != null) ? cellStyle.split(';') : [];
  421. var appliedStyles = styles.slice();
  422. for (var j = 0; j < tokens.length; j++)
  423. {
  424. var tmp = tokens[j];
  425. var pos = tmp.indexOf('=');
  426. if (pos >= 0)
  427. {
  428. var key = tmp.substring(0, pos);
  429. var index = mxUtils.indexOf(appliedStyles, key);
  430. if (index >= 0)
  431. {
  432. appliedStyles.splice(index, 1);
  433. }
  434. // Handles special cases where one defined style ignores other styles
  435. for (var k = 0; k < keyGroups.length; k++)
  436. {
  437. var group = keyGroups[k];
  438. if (mxUtils.indexOf(group, key) >= 0)
  439. {
  440. for (var l = 0; l < group.length; l++)
  441. {
  442. var index2 = mxUtils.indexOf(appliedStyles, group[l]);
  443. if (index2 >= 0)
  444. {
  445. appliedStyles.splice(index2, 1);
  446. }
  447. }
  448. }
  449. }
  450. }
  451. }
  452. // Applies the current style to the cell
  453. var edge = graph.getModel().isEdge(cell);
  454. var current = (edge) ? graph.currentEdgeStyle : graph.currentVertexStyle;
  455. for (var j = 0; j < appliedStyles.length; j++)
  456. {
  457. var key = appliedStyles[j];
  458. var styleValue = current[key];
  459. if (styleValue != null && (key != 'shape' || edge))
  460. {
  461. // Special case: Connect styles are not applied here but in the connection handler
  462. if (!edge || mxUtils.indexOf(connectStyles, key) < 0)
  463. {
  464. graph.setCellStyles(key, styleValue, [cell]);
  465. }
  466. }
  467. }
  468. }
  469. }
  470. }
  471. finally
  472. {
  473. graph.getModel().endUpdate();
  474. }
  475. };
  476. graph.addListener('cellsInserted', function(sender, evt)
  477. {
  478. insertHandler(evt.getProperty('cells'));
  479. });
  480. graph.addListener('textInserted', function(sender, evt)
  481. {
  482. insertHandler(evt.getProperty('cells'), true);
  483. });
  484. graph.connectionHandler.addListener(mxEvent.CONNECT, function(sender, evt)
  485. {
  486. var cells = [evt.getProperty('cell')];
  487. if (evt.getProperty('terminalInserted'))
  488. {
  489. cells.push(evt.getProperty('terminal'));
  490. }
  491. insertHandler(cells);
  492. });
  493. this.addListener('styleChanged', mxUtils.bind(this, function(sender, evt)
  494. {
  495. // Checks if edges and/or vertices were modified
  496. var cells = evt.getProperty('cells');
  497. var vertex = false;
  498. var edge = false;
  499. if (cells.length > 0)
  500. {
  501. for (var i = 0; i < cells.length; i++)
  502. {
  503. vertex = graph.getModel().isVertex(cells[i]) || vertex;
  504. edge = graph.getModel().isEdge(cells[i]) || edge;
  505. if (edge && vertex)
  506. {
  507. break;
  508. }
  509. }
  510. }
  511. else
  512. {
  513. vertex = true;
  514. edge = true;
  515. }
  516. var keys = evt.getProperty('keys');
  517. var values = evt.getProperty('values');
  518. for (var i = 0; i < keys.length; i++)
  519. {
  520. var common = mxUtils.indexOf(valueStyles, keys[i]) >= 0;
  521. // Ignores transparent stroke colors
  522. if (keys[i] != 'strokeColor' || (values[i] != null && values[i] != 'none'))
  523. {
  524. // Special case: Edge style and shape
  525. if (mxUtils.indexOf(connectStyles, keys[i]) >= 0)
  526. {
  527. if (edge || mxUtils.indexOf(alwaysEdgeStyles, keys[i]) >= 0)
  528. {
  529. if (values[i] == null)
  530. {
  531. delete graph.currentEdgeStyle[keys[i]];
  532. }
  533. else
  534. {
  535. graph.currentEdgeStyle[keys[i]] = values[i];
  536. }
  537. }
  538. // Uses style for vertex if defined in styles
  539. else if (vertex && mxUtils.indexOf(styles, keys[i]) >= 0)
  540. {
  541. if (values[i] == null)
  542. {
  543. delete graph.currentVertexStyle[keys[i]];
  544. }
  545. else
  546. {
  547. graph.currentVertexStyle[keys[i]] = values[i];
  548. }
  549. }
  550. }
  551. else if (mxUtils.indexOf(styles, keys[i]) >= 0)
  552. {
  553. if (vertex || common)
  554. {
  555. if (values[i] == null)
  556. {
  557. delete graph.currentVertexStyle[keys[i]];
  558. }
  559. else
  560. {
  561. graph.currentVertexStyle[keys[i]] = values[i];
  562. }
  563. }
  564. if (edge || common || mxUtils.indexOf(alwaysEdgeStyles, keys[i]) >= 0)
  565. {
  566. if (values[i] == null)
  567. {
  568. delete graph.currentEdgeStyle[keys[i]];
  569. }
  570. else
  571. {
  572. graph.currentEdgeStyle[keys[i]] = values[i];
  573. }
  574. }
  575. }
  576. }
  577. }
  578. if (this.toolbar != null)
  579. {
  580. this.toolbar.setFontName(graph.currentVertexStyle['fontFamily'] || Menus.prototype.defaultFont);
  581. this.toolbar.setFontSize(graph.currentVertexStyle['fontSize'] || Menus.prototype.defaultFontSize);
  582. if (this.toolbar.edgeStyleMenu != null)
  583. {
  584. // Updates toolbar icon for edge style
  585. var edgeStyleDiv = this.toolbar.edgeStyleMenu.getElementsByTagName('div')[0];
  586. if (graph.currentEdgeStyle['edgeStyle'] == 'orthogonalEdgeStyle' && graph.currentEdgeStyle['curved'] == '1')
  587. {
  588. edgeStyleDiv.className = 'geSprite geSprite-curved';
  589. }
  590. else if (graph.currentEdgeStyle['edgeStyle'] == 'straight' || graph.currentEdgeStyle['edgeStyle'] == 'none' ||
  591. graph.currentEdgeStyle['edgeStyle'] == null)
  592. {
  593. edgeStyleDiv.className = 'geSprite geSprite-straight';
  594. }
  595. else if (graph.currentEdgeStyle['edgeStyle'] == 'entityRelationEdgeStyle')
  596. {
  597. edgeStyleDiv.className = 'geSprite geSprite-entity';
  598. }
  599. else if (graph.currentEdgeStyle['edgeStyle'] == 'elbowEdgeStyle')
  600. {
  601. edgeStyleDiv.className = 'geSprite geSprite-' + ((graph.currentEdgeStyle['elbow'] == 'vertical') ?
  602. 'verticalelbow' : 'horizontalelbow');
  603. }
  604. else if (graph.currentEdgeStyle['edgeStyle'] == 'isometricEdgeStyle')
  605. {
  606. edgeStyleDiv.className = 'geSprite geSprite-' + ((graph.currentEdgeStyle['elbow'] == 'vertical') ?
  607. 'verticalisometric' : 'horizontalisometric');
  608. }
  609. else
  610. {
  611. edgeStyleDiv.className = 'geSprite geSprite-orthogonal';
  612. }
  613. }
  614. if (this.toolbar.edgeShapeMenu != null)
  615. {
  616. // Updates icon for edge shape
  617. var edgeShapeDiv = this.toolbar.edgeShapeMenu.getElementsByTagName('div')[0];
  618. if (graph.currentEdgeStyle['shape'] == 'link')
  619. {
  620. edgeShapeDiv.className = 'geSprite geSprite-linkedge';
  621. }
  622. else if (graph.currentEdgeStyle['shape'] == 'flexArrow')
  623. {
  624. edgeShapeDiv.className = 'geSprite geSprite-arrow';
  625. }
  626. else if (graph.currentEdgeStyle['shape'] == 'arrow')
  627. {
  628. edgeShapeDiv.className = 'geSprite geSprite-simplearrow';
  629. }
  630. else
  631. {
  632. edgeShapeDiv.className = 'geSprite geSprite-connection';
  633. }
  634. }
  635. // Updates icon for optinal line start shape
  636. if (this.toolbar.lineStartMenu != null)
  637. {
  638. var lineStartDiv = this.toolbar.lineStartMenu.getElementsByTagName('div')[0];
  639. lineStartDiv.className = this.getCssClassForMarker('start',
  640. graph.currentEdgeStyle['shape'], graph.currentEdgeStyle[mxConstants.STYLE_STARTARROW],
  641. mxUtils.getValue(graph.currentEdgeStyle, 'startFill', '1'));
  642. }
  643. // Updates icon for optinal line end shape
  644. if (this.toolbar.lineEndMenu != null)
  645. {
  646. var lineEndDiv = this.toolbar.lineEndMenu.getElementsByTagName('div')[0];
  647. lineEndDiv.className = this.getCssClassForMarker('end',
  648. graph.currentEdgeStyle['shape'], graph.currentEdgeStyle[mxConstants.STYLE_ENDARROW],
  649. mxUtils.getValue(graph.currentEdgeStyle, 'endFill', '1'));
  650. }
  651. }
  652. }));
  653. // Update font size and font family labels
  654. if (this.toolbar != null)
  655. {
  656. var update = mxUtils.bind(this, function()
  657. {
  658. var ff = graph.currentVertexStyle['fontFamily'] || 'Helvetica';
  659. var fs = String(graph.currentVertexStyle['fontSize'] || '12');
  660. var state = graph.getView().getState(graph.getSelectionCell());
  661. if (state != null)
  662. {
  663. ff = state.style[mxConstants.STYLE_FONTFAMILY] || ff;
  664. fs = state.style[mxConstants.STYLE_FONTSIZE] || fs;
  665. if (ff.length > 10)
  666. {
  667. ff = ff.substring(0, 8) + '...';
  668. }
  669. }
  670. this.toolbar.setFontName(ff);
  671. this.toolbar.setFontSize(fs);
  672. });
  673. graph.getSelectionModel().addListener(mxEvent.CHANGE, update);
  674. graph.getModel().addListener(mxEvent.CHANGE, update);
  675. }
  676. // Makes sure the current layer is visible when cells are added
  677. graph.addListener(mxEvent.CELLS_ADDED, function(sender, evt)
  678. {
  679. var cells = evt.getProperty('cells');
  680. var parent = evt.getProperty('parent');
  681. if (graph.getModel().isLayer(parent) && !graph.isCellVisible(parent) && cells != null && cells.length > 0)
  682. {
  683. graph.getModel().setVisible(parent, true);
  684. }
  685. });
  686. // Global handler to hide the current menu
  687. this.gestureHandler = mxUtils.bind(this, function(evt)
  688. {
  689. if (this.currentMenu != null && mxEvent.getSource(evt) != this.currentMenu.div)
  690. {
  691. this.hideCurrentMenu();
  692. }
  693. });
  694. mxEvent.addGestureListeners(document, this.gestureHandler);
  695. // Updates the editor UI after the window has been resized or the orientation changes
  696. // Timeout is workaround for old IE versions which have a delay for DOM client sizes.
  697. // Should not use delay > 0 to avoid handle multiple repaints during window resize
  698. this.resizeHandler = mxUtils.bind(this, function()
  699. {
  700. window.setTimeout(mxUtils.bind(this, function()
  701. {
  702. this.refresh();
  703. }), 0);
  704. });
  705. mxEvent.addListener(window, 'resize', this.resizeHandler);
  706. this.orientationChangeHandler = mxUtils.bind(this, function()
  707. {
  708. this.refresh();
  709. });
  710. mxEvent.addListener(window, 'orientationchange', this.orientationChangeHandler);
  711. // Workaround for bug on iOS see
  712. // http://stackoverflow.com/questions/19012135/ios-7-ipad-safari-landscape-innerheight-outerheight-layout-issue
  713. if (mxClient.IS_IOS && !window.navigator.standalone)
  714. {
  715. this.scrollHandler = mxUtils.bind(this, function()
  716. {
  717. window.scrollTo(0, 0);
  718. });
  719. mxEvent.addListener(window, 'scroll', this.scrollHandler);
  720. }
  721. /**
  722. * Sets the initial scrollbar locations after a file was loaded.
  723. */
  724. this.editor.addListener('resetGraphView', mxUtils.bind(this, function()
  725. {
  726. this.resetScrollbars();
  727. }));
  728. /**
  729. * Repaints the grid.
  730. */
  731. this.addListener('gridEnabledChanged', mxUtils.bind(this, function()
  732. {
  733. graph.view.validateBackground();
  734. }));
  735. this.addListener('backgroundColorChanged', mxUtils.bind(this, function()
  736. {
  737. graph.view.validateBackground();
  738. }));
  739. /**
  740. * Repaints the grid.
  741. */
  742. graph.addListener('gridSizeChanged', mxUtils.bind(this, function()
  743. {
  744. if (graph.isGridEnabled())
  745. {
  746. graph.view.validateBackground();
  747. }
  748. }));
  749. // Resets UI, updates action and menu states
  750. this.editor.resetGraph();
  751. this.init();
  752. this.open();
  753. };
  754. // Extends mxEventSource
  755. mxUtils.extend(EditorUi, mxEventSource);
  756. /**
  757. * Global config that specifies if the compact UI elements should be used.
  758. */
  759. EditorUi.compactUi = true;
  760. /**
  761. * Specifies the size of the split bar.
  762. */
  763. EditorUi.prototype.splitSize = (mxClient.IS_TOUCH || mxClient.IS_POINTER) ? 12 : 8;
  764. /**
  765. * Specifies the height of the menubar. Default is 34.
  766. */
  767. EditorUi.prototype.menubarHeight = 30;
  768. /**
  769. * Specifies the width of the format panel should be enabled. Default is true.
  770. */
  771. EditorUi.prototype.formatEnabled = true;
  772. /**
  773. * Specifies the width of the format panel. Default is 240.
  774. */
  775. EditorUi.prototype.formatWidth = 240;
  776. /**
  777. * Specifies the height of the toolbar. Default is 36.
  778. */
  779. EditorUi.prototype.toolbarHeight = 34;
  780. /**
  781. * Specifies the height of the footer. Default is 28.
  782. */
  783. EditorUi.prototype.footerHeight = 28;
  784. /**
  785. * Specifies the height of the optional sidebarFooterContainer. Default is 34.
  786. */
  787. EditorUi.prototype.sidebarFooterHeight = 34;
  788. /**
  789. * Specifies the link for the edit button in chromeless mode.
  790. */
  791. EditorUi.prototype.editButtonLink = null;
  792. /**
  793. * Specifies the position of the horizontal split bar. Default is 204 or 120 for
  794. * screen widths <= 500px.
  795. */
  796. EditorUi.prototype.hsplitPosition = (screen.width <= 640) ? ((screen.width <= 360) ? 62 : 116) : 208;
  797. /**
  798. * Specifies if animations are allowed in <executeLayout>. Default is true.
  799. */
  800. EditorUi.prototype.allowAnimation = true;
  801. /**
  802. * Installs the listeners to update the action states.
  803. */
  804. EditorUi.prototype.init = function()
  805. {
  806. /**
  807. * Keypress starts immediate editing on selection cell
  808. */
  809. var graph = this.editor.graph;
  810. mxEvent.addListener(graph.container, 'keydown', mxUtils.bind(this, function(evt)
  811. {
  812. this.onKeyDown(evt);
  813. }));
  814. mxEvent.addListener(graph.container, 'keypress', mxUtils.bind(this, function(evt)
  815. {
  816. this.onKeyPress(evt);
  817. }));
  818. // Updates action states
  819. this.addUndoListener();
  820. this.addBeforeUnloadListener();
  821. graph.getSelectionModel().addListener(mxEvent.CHANGE, mxUtils.bind(this, function()
  822. {
  823. this.updateActionStates();
  824. }));
  825. graph.getModel().addListener(mxEvent.CHANGE, mxUtils.bind(this, function()
  826. {
  827. this.updateActionStates();
  828. }));
  829. // Changes action states after change of default parent
  830. var graphSetDefaultParent = graph.setDefaultParent;
  831. var ui = this;
  832. this.editor.graph.setDefaultParent = function()
  833. {
  834. graphSetDefaultParent.apply(this, arguments);
  835. ui.updateActionStates();
  836. };
  837. // Hack to make editLink available in vertex handler
  838. graph.editLink = ui.actions.get('editLink').funct;
  839. this.updateActionStates();
  840. this.initClipboard();
  841. this.initCanvas();
  842. if (this.format != null)
  843. {
  844. this.format.init();
  845. }
  846. };
  847. /**
  848. * Returns true if the given event should start editing. This implementation returns true.
  849. */
  850. EditorUi.prototype.onKeyDown = function(evt)
  851. {
  852. var graph = this.editor.graph;
  853. // Tab selects next cell
  854. if (evt.which == 9 && graph.isEnabled() && !mxEvent.isAltDown(evt))
  855. {
  856. if (graph.isEditing())
  857. {
  858. graph.stopEditing(false);
  859. }
  860. else
  861. {
  862. graph.selectCell(!mxEvent.isShiftDown(evt));
  863. }
  864. mxEvent.consume(evt);
  865. }
  866. };
  867. /**
  868. * Returns true if the given event should start editing. This implementation returns true.
  869. */
  870. EditorUi.prototype.onKeyPress = function(evt)
  871. {
  872. var graph = this.editor.graph;
  873. // KNOWN: Focus does not work if label is empty in quirks mode
  874. if (this.isImmediateEditingEvent(evt) && !graph.isEditing() && !graph.isSelectionEmpty() && evt.which !== 0 &&
  875. !mxEvent.isAltDown(evt) && !mxEvent.isControlDown(evt) && !mxEvent.isMetaDown(evt))
  876. {
  877. graph.escape();
  878. graph.startEditing();
  879. // Workaround for FF where char is lost if cursor is placed before char
  880. if (mxClient.IS_FF)
  881. {
  882. var ce = graph.cellEditor;
  883. ce.textarea.innerHTML = String.fromCharCode(evt.which);
  884. // Moves cursor to end of textarea
  885. var range = document.createRange();
  886. range.selectNodeContents(ce.textarea);
  887. range.collapse(false);
  888. var sel = window.getSelection();
  889. sel.removeAllRanges();
  890. sel.addRange(range);
  891. }
  892. }
  893. };
  894. /**
  895. * Returns true if the given event should start editing. This implementation returns true.
  896. */
  897. EditorUi.prototype.isImmediateEditingEvent = function(evt)
  898. {
  899. return true;
  900. };
  901. /**
  902. * Private helper method.
  903. */
  904. EditorUi.prototype.getCssClassForMarker = function(prefix, shape, marker, fill)
  905. {
  906. var result = '';
  907. if (shape == 'flexArrow')
  908. {
  909. result = (marker != null && marker != mxConstants.NONE) ?
  910. 'geSprite geSprite-' + prefix + 'blocktrans' : 'geSprite geSprite-noarrow';
  911. }
  912. else
  913. {
  914. if (marker == mxConstants.ARROW_CLASSIC)
  915. {
  916. result = (fill == '1') ? 'geSprite geSprite-' + prefix + 'classic' : 'geSprite geSprite-' + prefix + 'classictrans';
  917. }
  918. else if (marker == mxConstants.ARROW_CLASSIC_THIN)
  919. {
  920. result = (fill == '1') ? 'geSprite geSprite-' + prefix + 'classicthin' : 'geSprite geSprite-' + prefix + 'classicthintrans';
  921. }
  922. else if (marker == mxConstants.ARROW_OPEN)
  923. {
  924. result = 'geSprite geSprite-' + prefix + 'open';
  925. }
  926. else if (marker == mxConstants.ARROW_OPEN_THIN)
  927. {
  928. result = 'geSprite geSprite-' + prefix + 'openthin';
  929. }
  930. else if (marker == mxConstants.ARROW_BLOCK)
  931. {
  932. result = (fill == '1') ? 'geSprite geSprite-' + prefix + 'block' : 'geSprite geSprite-' + prefix + 'blocktrans';
  933. }
  934. else if (marker == mxConstants.ARROW_BLOCK_THIN)
  935. {
  936. result = (fill == '1') ? 'geSprite geSprite-' + prefix + 'blockthin' : 'geSprite geSprite-' + prefix + 'blockthintrans';
  937. }
  938. else if (marker == mxConstants.ARROW_OVAL)
  939. {
  940. result = (fill == '1') ? 'geSprite geSprite-' + prefix + 'oval' : 'geSprite geSprite-' + prefix + 'ovaltrans';
  941. }
  942. else if (marker == mxConstants.ARROW_DIAMOND)
  943. {
  944. result = (fill == '1') ? 'geSprite geSprite-' + prefix + 'diamond' : 'geSprite geSprite-' + prefix + 'diamondtrans';
  945. }
  946. else if (marker == mxConstants.ARROW_DIAMOND_THIN)
  947. {
  948. result = (fill == '1') ? 'geSprite geSprite-' + prefix + 'thindiamond' : 'geSprite geSprite-' + prefix + 'thindiamondtrans';
  949. }
  950. else if (marker == 'openAsync')
  951. {
  952. result = 'geSprite geSprite-' + prefix + 'openasync';
  953. }
  954. else if (marker == 'dash')
  955. {
  956. result = 'geSprite geSprite-' + prefix + 'dash';
  957. }
  958. else if (marker == 'cross')
  959. {
  960. result = 'geSprite geSprite-' + prefix + 'cross';
  961. }
  962. else if (marker == 'async')
  963. {
  964. result = (fill == '1') ? 'geSprite geSprite-' + prefix + 'async' : 'geSprite geSprite-' + prefix + 'asynctrans';
  965. }
  966. else if (marker == 'circle' || marker == 'circlePlus')
  967. {
  968. result = (fill == '1' || marker == 'circle') ? 'geSprite geSprite-' + prefix + 'circle' : 'geSprite geSprite-' + prefix + 'circleplus';
  969. }
  970. else if (marker == 'ERone')
  971. {
  972. result = 'geSprite geSprite-' + prefix + 'erone';
  973. }
  974. else if (marker == 'ERmandOne')
  975. {
  976. result = 'geSprite geSprite-' + prefix + 'eronetoone';
  977. }
  978. else if (marker == 'ERmany')
  979. {
  980. result = 'geSprite geSprite-' + prefix + 'ermany';
  981. }
  982. else if (marker == 'ERoneToMany')
  983. {
  984. result = 'geSprite geSprite-' + prefix + 'eronetomany';
  985. }
  986. else if (marker == 'ERzeroToOne')
  987. {
  988. result = 'geSprite geSprite-' + prefix + 'eroneopt';
  989. }
  990. else if (marker == 'ERzeroToMany')
  991. {
  992. result = 'geSprite geSprite-' + prefix + 'ermanyopt';
  993. }
  994. else
  995. {
  996. result = 'geSprite geSprite-noarrow';
  997. }
  998. }
  999. return result;
  1000. };
  1001. /**
  1002. * Overridden in Menus.js
  1003. */
  1004. EditorUi.prototype.createMenus = function()
  1005. {
  1006. return null;
  1007. };
  1008. /**
  1009. * Hook for allowing selection and context menu for certain events.
  1010. */
  1011. EditorUi.prototype.updatePasteActionStates = function()
  1012. {
  1013. var graph = this.editor.graph;
  1014. var paste = this.actions.get('paste');
  1015. var pasteHere = this.actions.get('pasteHere');
  1016. paste.setEnabled(this.editor.graph.cellEditor.isContentEditing() || (!mxClipboard.isEmpty() &&
  1017. graph.isEnabled() && !graph.isCellLocked(graph.getDefaultParent())));
  1018. pasteHere.setEnabled(paste.isEnabled());
  1019. };
  1020. /**
  1021. * Hook for allowing selection and context menu for certain events.
  1022. */
  1023. EditorUi.prototype.initClipboard = function()
  1024. {
  1025. var ui = this;
  1026. var mxClipboardCut = mxClipboard.cut;
  1027. mxClipboard.cut = function(graph)
  1028. {
  1029. if (graph.cellEditor.isContentEditing())
  1030. {
  1031. document.execCommand('cut', false, null);
  1032. }
  1033. else
  1034. {
  1035. mxClipboardCut.apply(this, arguments);
  1036. }
  1037. ui.updatePasteActionStates();
  1038. };
  1039. var mxClipboardCopy = mxClipboard.copy;
  1040. mxClipboard.copy = function(graph)
  1041. {
  1042. if (graph.cellEditor.isContentEditing())
  1043. {
  1044. document.execCommand('copy', false, null);
  1045. }
  1046. else
  1047. {
  1048. mxClipboardCopy.apply(this, arguments);
  1049. }
  1050. ui.updatePasteActionStates();
  1051. };
  1052. var mxClipboardPaste = mxClipboard.paste;
  1053. mxClipboard.paste = function(graph)
  1054. {
  1055. var result = null;
  1056. if (graph.cellEditor.isContentEditing())
  1057. {
  1058. document.execCommand('paste', false, null);
  1059. }
  1060. else
  1061. {
  1062. result = mxClipboardPaste.apply(this, arguments);
  1063. }
  1064. ui.updatePasteActionStates();
  1065. return result;
  1066. };
  1067. // Overrides cell editor to update paste action state
  1068. var cellEditorStartEditing = this.editor.graph.cellEditor.startEditing;
  1069. this.editor.graph.cellEditor.startEditing = function()
  1070. {
  1071. cellEditorStartEditing.apply(this, arguments);
  1072. ui.updatePasteActionStates();
  1073. };
  1074. var cellEditorStopEditing = this.editor.graph.cellEditor.stopEditing;
  1075. this.editor.graph.cellEditor.stopEditing = function(cell, trigger)
  1076. {
  1077. cellEditorStopEditing.apply(this, arguments);
  1078. ui.updatePasteActionStates();
  1079. };
  1080. this.updatePasteActionStates();
  1081. };
  1082. /**
  1083. * Initializes the infinite canvas.
  1084. */
  1085. EditorUi.prototype.initCanvas = function()
  1086. {
  1087. var graph = this.editor.graph;
  1088. // Initial page layout view, scrollBuffer and timer-based scrolling
  1089. var graph = this.editor.graph;
  1090. graph.timerAutoScroll = true;
  1091. /**
  1092. * Returns the padding for pages in page view with scrollbars.
  1093. */
  1094. graph.getPagePadding = function()
  1095. {
  1096. return new mxPoint(Math.max(0, Math.round((graph.container.offsetWidth - 34) / graph.view.scale)),
  1097. Math.max(0, Math.round((graph.container.offsetHeight - 34) / graph.view.scale)));
  1098. };
  1099. // Fits the number of background pages to the graph
  1100. graph.view.getBackgroundPageBounds = function()
  1101. {
  1102. var layout = this.graph.getPageLayout();
  1103. var page = this.graph.getPageSize();
  1104. return new mxRectangle(this.scale * (this.translate.x + layout.x * page.width),
  1105. this.scale * (this.translate.y + layout.y * page.height),
  1106. this.scale * layout.width * page.width,
  1107. this.scale * layout.height * page.height);
  1108. };
  1109. graph.getPreferredPageSize = function(bounds, width, height)
  1110. {
  1111. var pages = this.getPageLayout();
  1112. var size = this.getPageSize();
  1113. return new mxRectangle(0, 0, pages.width * size.width, pages.height * size.height);
  1114. };
  1115. // Scales pages/graph to fit available size
  1116. var resize = null;
  1117. if (this.editor.chromeless)
  1118. {
  1119. resize = mxUtils.bind(this, function(autoscale, maxScale)
  1120. {
  1121. if (graph.container != null)
  1122. {
  1123. var b = (graph.pageVisible) ? graph.view.getBackgroundPageBounds() : graph.getGraphBounds();
  1124. var tr = graph.view.translate;
  1125. var s = graph.view.scale;
  1126. // Normalizes the bounds
  1127. b = mxRectangle.fromRectangle(b);
  1128. b.x = b.x / s - tr.x;
  1129. b.y = b.y / s - tr.y;
  1130. b.width /= s;
  1131. b.height /= s;
  1132. var st = graph.container.scrollTop;
  1133. var sl = graph.container.scrollLeft;
  1134. var sb = (mxClient.IS_QUIRKS || document.documentMode >= 8) ? 20 : 14;
  1135. if (document.documentMode == 8 || document.documentMode == 9)
  1136. {
  1137. sb += 3;
  1138. }
  1139. var cw = graph.container.offsetWidth - sb;
  1140. var ch = graph.container.offsetHeight - sb;
  1141. var ns = (autoscale) ? Math.max(0.3, Math.min(maxScale || 1, cw / b.width)) : s;
  1142. var dx = Math.max((cw - ns * b.width) / 2, 0) / ns;
  1143. var dy = Math.max((ch - ns * b.height) / 4, 0) / ns;
  1144. graph.view.scaleAndTranslate(ns, dx - b.x, dy - b.y);
  1145. graph.container.scrollTop = st * ns / s;
  1146. graph.container.scrollLeft = sl * ns/ s;
  1147. }
  1148. });
  1149. // Hack to make function available to subclassers
  1150. this.chromelessResize = resize;
  1151. // Removable resize listener
  1152. var autoscaleResize = mxUtils.bind(this, function()
  1153. {
  1154. resize(false);
  1155. });
  1156. mxEvent.addListener(window, 'resize', autoscaleResize);
  1157. this.destroyFunctions.push(function()
  1158. {
  1159. mxEvent.removeListener(window, 'resize', autoscaleResize);
  1160. });
  1161. this.editor.addListener('resetGraphView', mxUtils.bind(this, function()
  1162. {
  1163. resize(true);
  1164. }));
  1165. this.actions.get('zoomIn').funct = function(evt) { graph.zoomIn(); resize(false); };
  1166. this.actions.get('zoomOut').funct = function(evt) { graph.zoomOut(); resize(false); };
  1167. // Creates toolbar for viewer - do not use CSS here
  1168. // as this may be used in a viewer that has no CSS
  1169. this.chromelessToolbar = document.createElement('div');
  1170. this.chromelessToolbar.style.position = 'fixed';
  1171. this.chromelessToolbar.style.overflow = 'hidden';
  1172. this.chromelessToolbar.style.boxSizing = 'border-box';
  1173. this.chromelessToolbar.style.whiteSpace = 'nowrap';
  1174. this.chromelessToolbar.style.backgroundColor = '#000000';
  1175. this.chromelessToolbar.style.padding = '10px 10px 8px 10px';
  1176. this.chromelessToolbar.style.left = '50%';
  1177. if (!mxClient.IS_VML)
  1178. {
  1179. mxUtils.setPrefixedStyle(this.chromelessToolbar.style, 'borderRadius', '20px');
  1180. mxUtils.setPrefixedStyle(this.chromelessToolbar.style, 'transition', 'opacity 600ms ease-in-out');
  1181. }
  1182. var updateChromelessToolbarPosition = mxUtils.bind(this, function()
  1183. {
  1184. var css = mxUtils.getCurrentStyle(graph.container);
  1185. this.chromelessToolbar.style.bottom = ((css != null) ? parseInt(css['margin-bottom'] || 0) : 0) +
  1186. ((this.tabContainer != null) ? (20 + parseInt(this.tabContainer.style.height)) : 20) + 'px';
  1187. });
  1188. this.editor.addListener('resetGraphView', updateChromelessToolbarPosition);
  1189. updateChromelessToolbarPosition();
  1190. var btnCount = 0;
  1191. var addButton = mxUtils.bind(this, function(fn, imgSrc, tip)
  1192. {
  1193. btnCount++;
  1194. var a = document.createElement('span');
  1195. a.style.paddingLeft = '8px';
  1196. a.style.paddingRight = '8px';
  1197. a.style.cursor = 'pointer';
  1198. mxEvent.addListener(a, 'click', fn);
  1199. if (tip != null)
  1200. {
  1201. a.setAttribute('title', tip);
  1202. }
  1203. var img = document.createElement('img');
  1204. img.setAttribute('border', '0');
  1205. img.setAttribute('src', imgSrc);
  1206. a.appendChild(img);
  1207. this.chromelessToolbar.appendChild(a);
  1208. return a;
  1209. });
  1210. var prevButton = addButton(mxUtils.bind(this, function(evt)
  1211. {
  1212. this.actions.get('previousPage').funct();
  1213. mxEvent.consume(evt);
  1214. }), Editor.previousLargeImage, mxResources.get('previousPage'));
  1215. var pageInfo = document.createElement('div');
  1216. pageInfo.style.display = 'inline-block';
  1217. pageInfo.style.verticalAlign = 'top';
  1218. pageInfo.style.fontFamily = 'Helvetica,Arial';
  1219. pageInfo.style.marginTop = '8px';
  1220. pageInfo.style.color = '#ffffff';
  1221. this.chromelessToolbar.appendChild(pageInfo);
  1222. var nextButton = addButton(mxUtils.bind(this, function(evt)
  1223. {
  1224. this.actions.get('nextPage').funct();
  1225. mxEvent.consume(evt);
  1226. }), Editor.nextLargeImage, mxResources.get('nextPage'));
  1227. var updatePageInfo = mxUtils.bind(this, function()
  1228. {
  1229. if (this.pages != null && this.pages.length > 1 && this.currentPage != null)
  1230. {
  1231. pageInfo.innerHTML = '';
  1232. mxUtils.write(pageInfo, (mxUtils.indexOf(this.pages, this.currentPage) + 1) + ' / ' + this.pages.length);
  1233. }
  1234. });
  1235. prevButton.style.paddingLeft = '0px';
  1236. prevButton.style.paddingRight = '4px';
  1237. nextButton.style.paddingLeft = '4px';
  1238. nextButton.style.paddingRight = '0px';
  1239. var updatePageButtons = mxUtils.bind(this, function()
  1240. {
  1241. if (this.pages != null && this.pages.length > 1 && this.currentPage != null)
  1242. {
  1243. nextButton.style.display = '';
  1244. prevButton.style.display = '';
  1245. pageInfo.style.display = 'inline-block';
  1246. }
  1247. else
  1248. {
  1249. nextButton.style.display = 'none';
  1250. prevButton.style.display = 'none';
  1251. pageInfo.style.display = 'none';
  1252. }
  1253. updatePageInfo();
  1254. });
  1255. this.editor.addListener('resetGraphView', updatePageButtons);
  1256. this.editor.addListener('pageSelected', updatePageInfo);
  1257. addButton(mxUtils.bind(this, function(evt)
  1258. {
  1259. this.actions.get('zoomOut').funct();
  1260. mxEvent.consume(evt);
  1261. }), Editor.zoomOutLargeImage, mxResources.get('zoomOut') + ' (Alt+Mousewheel)');
  1262. addButton(mxUtils.bind(this, function(evt)
  1263. {
  1264. this.actions.get('zoomIn').funct();
  1265. mxEvent.consume(evt);
  1266. }), Editor.zoomInLargeImage, mxResources.get('zoomIn') + ' (Alt+Mousewheel)');
  1267. addButton(mxUtils.bind(this, function(evt)
  1268. {
  1269. if (graph.lightbox)
  1270. {
  1271. if (graph.view.scale == 1)
  1272. {
  1273. this.lightboxFit();
  1274. }
  1275. else
  1276. {
  1277. graph.zoomTo(1);
  1278. }
  1279. resize(false);
  1280. }
  1281. else
  1282. {
  1283. resize(true);
  1284. }
  1285. mxEvent.consume(evt);
  1286. }), Editor.actualSizeLargeImage, mxResources.get('fit'));
  1287. // Changes toolbar opacity on hover
  1288. var fadeThread = null;
  1289. var fadeThread2 = null;
  1290. var fadeOut = mxUtils.bind(this, function(delay)
  1291. {
  1292. if (fadeThread != null)
  1293. {
  1294. window.clearTimeout(fadeThread);
  1295. fadeThead = null;
  1296. }
  1297. if (fadeThread2 != null)
  1298. {
  1299. window.clearTimeout(fadeThread2);
  1300. fadeThead2 = null;
  1301. }
  1302. fadeThread = window.setTimeout(mxUtils.bind(this, function()
  1303. {
  1304. mxUtils.setOpacity(this.chromelessToolbar, 0);
  1305. fadeThread = null;
  1306. fadeThread2 = window.setTimeout(mxUtils.bind(this, function()
  1307. {
  1308. this.chromelessToolbar.style.display = 'none';
  1309. fadeThread2 = null;
  1310. }), 600);
  1311. }), delay || 200);
  1312. });
  1313. var fadeIn = mxUtils.bind(this, function(opacity)
  1314. {
  1315. if (fadeThread != null)
  1316. {
  1317. window.clearTimeout(fadeThread);
  1318. fadeThead = null;
  1319. }
  1320. if (fadeThread2 != null)
  1321. {
  1322. window.clearTimeout(fadeThread2);
  1323. fadeThead2 = null;
  1324. }
  1325. this.chromelessToolbar.style.display = '';
  1326. mxUtils.setOpacity(this.chromelessToolbar, opacity || 30);
  1327. });
  1328. if (urlParams['layers'] == '1')
  1329. {
  1330. this.layersDialog = null;
  1331. var layersButton = addButton(mxUtils.bind(this, function(evt)
  1332. {
  1333. if (this.layersDialog != null)
  1334. {
  1335. this.layersDialog.parentNode.removeChild(this.layersDialog);
  1336. this.layersDialog = null;
  1337. }
  1338. else
  1339. {
  1340. this.layersDialog = graph.createLayersDialog();
  1341. mxEvent.addListener(this.layersDialog, 'mouseleave', mxUtils.bind(this, function()
  1342. {
  1343. this.layersDialog.parentNode.removeChild(this.layersDialog);
  1344. this.layersDialog = null;
  1345. }));
  1346. var r = layersButton.getBoundingClientRect();
  1347. mxUtils.setPrefixedStyle(this.layersDialog.style, 'borderRadius', '5px');
  1348. this.layersDialog.style.position = 'fixed';
  1349. this.layersDialog.style.fontFamily = 'Helvetica,Arial';
  1350. this.layersDialog.style.backgroundColor = '#000000';
  1351. this.layersDialog.style.width = '160px';
  1352. this.layersDialog.style.padding = '4px 2px 4px 2px';
  1353. this.layersDialog.style.color = '#ffffff';
  1354. mxUtils.setOpacity(this.layersDialog, 70);
  1355. this.layersDialog.style.left = r.left + 'px';
  1356. this.layersDialog.style.bottom = parseInt(this.chromelessToolbar.style.bottom) +
  1357. this.chromelessToolbar.offsetHeight + 4 + 'px';
  1358. // Puts the dialog on top of the container z-index
  1359. var style = mxUtils.getCurrentStyle(this.editor.graph.container);
  1360. this.layersDialog.style.zIndex = style.zIndex;
  1361. document.body.appendChild(this.layersDialog);
  1362. }
  1363. mxEvent.consume(evt);
  1364. }), Editor.layersLargeImage, mxResources.get('layers'));
  1365. // Shows/hides layers button depending on content
  1366. var model = graph.getModel();
  1367. model.addListener(mxEvent.CHANGE, function()
  1368. {
  1369. layersButton.style.display = (model.getChildCount(model.root) > 1) ? '' : 'none';
  1370. });
  1371. }
  1372. addButton(mxUtils.bind(this, function(evt)
  1373. {
  1374. this.actions.get('print').funct();
  1375. mxEvent.consume(evt);
  1376. }), Editor.printLargeImage, mxResources.get('print'));
  1377. if (this.editor.editButtonLink != null)
  1378. {
  1379. addButton(mxUtils.bind(this, function(evt)
  1380. {
  1381. if (this.editor.editButtonLink == '_blank')
  1382. {
  1383. this.editor.editAsNew(this.getEditBlankXml(), null, true);
  1384. }
  1385. else
  1386. {
  1387. window.open(this.editor.editButtonLink, 'editWindow');
  1388. }
  1389. mxEvent.consume(evt);
  1390. }), Editor.editLargeImage, mxResources.get('openInNewWindow'));
  1391. }
  1392. if (graph.lightbox && this.container != document.body)
  1393. {
  1394. addButton(mxUtils.bind(this, function(evt)
  1395. {
  1396. if (urlParams['close'] == '1')
  1397. {
  1398. window.close();
  1399. }
  1400. else
  1401. {
  1402. this.destroy();
  1403. mxEvent.consume(evt);
  1404. }
  1405. }), Editor.closeLargeImage, mxResources.get('close') + ' (Escape)');
  1406. }
  1407. // Initial state invisible
  1408. this.chromelessToolbar.style.display = 'none';
  1409. mxUtils.setPrefixedStyle(this.chromelessToolbar.style, 'transform', 'translate(-50%,0)');
  1410. graph.container.appendChild(this.chromelessToolbar);
  1411. // Installs handling of hightligh and handling links to relative links and anchors
  1412. this.addChromelessClickHandler();
  1413. mxEvent.addListener(graph.container, (mxClient.IS_POINTER) ? 'pointermove' : 'mousemove', mxUtils.bind(this, function(evt)
  1414. {
  1415. if (!mxEvent.isTouchEvent(evt))
  1416. {
  1417. if (!mxEvent.isShiftDown(evt))
  1418. {
  1419. fadeIn(30);
  1420. }
  1421. fadeOut();
  1422. }
  1423. }));
  1424. mxEvent.addListener(this.chromelessToolbar, (mxClient.IS_POINTER) ? 'pointermove' : 'mousemove', function(evt)
  1425. {
  1426. mxEvent.consume(evt);
  1427. });
  1428. mxEvent.addListener(this.chromelessToolbar, 'mouseenter', mxUtils.bind(this, function(evt)
  1429. {
  1430. if (!mxEvent.isShiftDown(evt))
  1431. {
  1432. fadeIn(100);
  1433. }
  1434. else
  1435. {
  1436. fadeOut();
  1437. }
  1438. }));
  1439. mxEvent.addListener(this.chromelessToolbar, 'mousemove', mxUtils.bind(this, function(evt)
  1440. {
  1441. if (!mxEvent.isShiftDown(evt))
  1442. {
  1443. fadeIn(100);
  1444. }
  1445. else
  1446. {
  1447. fadeOut();
  1448. }
  1449. mxEvent.consume(evt);
  1450. }));
  1451. mxEvent.addListener(this.chromelessToolbar, 'mouseleave', mxUtils.bind(this, function(evt)
  1452. {
  1453. if (!mxEvent.isTouchEvent(evt))
  1454. {
  1455. fadeIn(30);
  1456. }
  1457. }));
  1458. // Shows/hides toolbar for touch devices
  1459. var tol = graph.getTolerance();
  1460. var ui = this;
  1461. graph.addMouseListener(
  1462. {
  1463. startX: 0,
  1464. startY: 0,
  1465. scrollLeft: 0,
  1466. scrollTop: 0,
  1467. mouseDown: function(sender, me)
  1468. {
  1469. this.startX = me.getGraphX();
  1470. this.startY = me.getGraphY();
  1471. this.scrollLeft = graph.container.scrollLeft;
  1472. this.scrollTop = graph.container.scrollTop;
  1473. },
  1474. mouseMove: function(sender, me) {},
  1475. mouseUp: function(sender, me)
  1476. {
  1477. if (mxEvent.isTouchEvent(me.getEvent()))
  1478. {
  1479. if ((Math.abs(this.scrollLeft - graph.container.scrollLeft) < tol &&
  1480. Math.abs(this.scrollTop - graph.container.scrollTop) < tol) &&
  1481. (Math.abs(this.startX - me.getGraphX()) < tol &&
  1482. Math.abs(this.startY - me.getGraphY()) < tol))
  1483. {
  1484. if (parseFloat(ui.chromelessToolbar.style.opacity || 0) > 0)
  1485. {
  1486. fadeOut();
  1487. }
  1488. else
  1489. {
  1490. fadeIn(30);
  1491. }
  1492. }
  1493. }
  1494. }
  1495. });
  1496. }
  1497. else if (this.editor.extendCanvas)
  1498. {
  1499. /**
  1500. * Guesses autoTranslate to avoid another repaint (see below).
  1501. * Works if only the scale of the graph changes or if pages
  1502. * are visible and the visible pages do not change.
  1503. */
  1504. var graphViewValidate = graph.view.validate;
  1505. graph.view.validate = function()
  1506. {
  1507. if (this.graph.container != null && mxUtils.hasScrollbars(this.graph.container))
  1508. {
  1509. var pad = this.graph.getPagePadding();
  1510. var size = this.graph.getPageSize();
  1511. // Updating scrollbars here causes flickering in quirks and is not needed
  1512. // if zoom method is always used to set the current scale on the graph.
  1513. var tx = this.translate.x;
  1514. var ty = this.translate.y;
  1515. this.translate.x = pad.x - (this.x0 || 0) * size.width;
  1516. this.translate.y = pad.y - (this.y0 || 0) * size.height;
  1517. }
  1518. graphViewValidate.apply(this, arguments);
  1519. };
  1520. var graphSizeDidChange = graph.sizeDidChange;
  1521. graph.sizeDidChange = function()
  1522. {
  1523. if (this.container != null && mxUtils.hasScrollbars(this.container))
  1524. {
  1525. var pages = this.getPageLayout();
  1526. var pad = this.getPagePadding();
  1527. var size = this.getPageSize();
  1528. // Updates the minimum graph size
  1529. var minw = Math.ceil(2 * pad.x + pages.width * size.width);
  1530. var minh = Math.ceil(2 * pad.y + pages.height * size.height);
  1531. var min = graph.minimumGraphSize;
  1532. // LATER: Fix flicker of scrollbar size in IE quirks mode
  1533. // after delayed call in window.resize event handler
  1534. if (min == null || min.width != minw || min.height != minh)
  1535. {
  1536. graph.minimumGraphSize = new mxRectangle(0, 0, minw, minh);
  1537. }
  1538. // Updates auto-translate to include padding and graph size
  1539. var dx = pad.x - pages.x * size.width;
  1540. var dy = pad.y - pages.y * size.height;
  1541. if (!this.autoTranslate && (this.view.translate.x != dx || this.view.translate.y != dy))
  1542. {
  1543. this.autoTranslate = true;
  1544. this.view.x0 = pages.x;
  1545. this.view.y0 = pages.y;
  1546. // NOTE: THIS INVOKES THIS METHOD AGAIN. UNFORTUNATELY THERE IS NO WAY AROUND THIS SINCE THE
  1547. // BOUNDS ARE KNOWN AFTER THE VALIDATION AND SETTING THE TRANSLATE TRIGGERS A REVALIDATION.
  1548. // SHOULD MOVE TRANSLATE/SCALE TO VIEW.
  1549. var tx = graph.view.translate.x;
  1550. var ty = graph.view.translate.y;
  1551. graph.view.setTranslate(dx, dy);
  1552. // LATER: Fix rounding errors for small zoom
  1553. graph.container.scrollLeft += Math.round((dx - tx) * graph.view.scale);
  1554. graph.container.scrollTop += Math.round((dy - ty) * graph.view.scale);
  1555. this.autoTranslate = false;
  1556. return;
  1557. }
  1558. graphSizeDidChange.apply(this, arguments);
  1559. }
  1560. };
  1561. }
  1562. // Accumulates the zoom factor while the rendering is taking place
  1563. // so that not the complete sequence of zoom steps must be painted
  1564. graph.updateZoomTimeout = null;
  1565. graph.cumulativeZoomFactor = 1;
  1566. var cursorPosition = null;
  1567. graph.lazyZoom = function(zoomIn)
  1568. {
  1569. if (this.updateZoomTimeout != null)
  1570. {
  1571. window.clearTimeout(this.updateZoomTimeout);
  1572. }
  1573. // Switches to 1% zoom steps below 15%
  1574. // Lower bound depdends on rounding below
  1575. if (zoomIn)
  1576. {
  1577. if (this.view.scale * this.cumulativeZoomFactor < 0.15)
  1578. {
  1579. this.cumulativeZoomFactor = (this.view.scale + 0.01) / this.view.scale;
  1580. }
  1581. else
  1582. {
  1583. // Uses to 5% zoom steps for better grid rendering in webkit
  1584. // and to avoid rounding errors for zoom steps
  1585. this.cumulativeZoomFactor *= this.zoomFactor;
  1586. this.cumulativeZoomFactor = Math.round(this.view.scale * this.cumulativeZoomFactor * 20) / 20 / this.view.scale;
  1587. }
  1588. }
  1589. else
  1590. {
  1591. if (this.view.scale * this.cumulativeZoomFactor <= 0.15)
  1592. {
  1593. this.cumulativeZoomFactor = (this.view.scale - 0.01) / this.view.scale;
  1594. }
  1595. else
  1596. {
  1597. // Uses to 5% zoom steps for better grid rendering in webkit
  1598. // and to avoid rounding errors for zoom steps
  1599. this.cumulativeZoomFactor /= this.zoomFactor;
  1600. this.cumulativeZoomFactor = Math.round(this.view.scale * this.cumulativeZoomFactor * 20) / 20 / this.view.scale;
  1601. }
  1602. }
  1603. this.cumulativeZoomFactor = Math.max(0.01, Math.min(this.view.scale * this.cumulativeZoomFactor, 160) / this.view.scale);
  1604. this.updateZoomTimeout = window.setTimeout(mxUtils.bind(this, function()
  1605. {
  1606. this.zoom(this.cumulativeZoomFactor);
  1607. if (resize != null)
  1608. {
  1609. resize(false);
  1610. }
  1611. // Zooms to mouse position if scrollbars enabled
  1612. if (cursorPosition != null && mxUtils.hasScrollbars(graph.container))
  1613. {
  1614. var offset = mxUtils.getOffset(graph.container);
  1615. var dx = graph.container.offsetWidth / 2 - cursorPosition.x + offset.x;
  1616. var dy = graph.container.offsetHeight / 2 - cursorPosition.y + offset.y;
  1617. graph.container.scrollLeft -= dx * (this.cumulativeZoomFactor - 1);
  1618. graph.container.scrollTop -= dy * (this.cumulativeZoomFactor - 1);
  1619. }
  1620. this.cumulativeZoomFactor = 1;
  1621. this.updateZoomTimeout = null;
  1622. }), 20);
  1623. };
  1624. mxEvent.addMouseWheelListener(mxUtils.bind(this, function(evt, up)
  1625. {
  1626. // Ctrl+wheel (or pinch on touchpad) is a native browser zoom event is OS X
  1627. // LATER: Add support for zoom via pinch on trackpad for Chrome in OS X
  1628. if ((mxEvent.isAltDown(evt) || (mxEvent.isControlDown(evt) && !mxClient.IS_MAC) ||
  1629. graph.panningHandler.isActive()) && (this.dialogs == null || this.dialogs.length == 0))
  1630. {
  1631. var source = mxEvent.getSource(evt);
  1632. while (source != null)
  1633. {
  1634. if (source == graph.container)
  1635. {
  1636. cursorPosition = new mxPoint(mxEvent.getClientX(evt), mxEvent.getClientY(evt));
  1637. graph.lazyZoom(up);
  1638. mxEvent.consume(evt);
  1639. return;
  1640. }
  1641. source = source.parentNode;
  1642. }
  1643. }
  1644. }));
  1645. };
  1646. /**
  1647. * Creates a temporary graph instance for rendering off-screen content.
  1648. */
  1649. EditorUi.prototype.createTemporaryGraph = function(stylesheet)
  1650. {
  1651. var graph = new Graph(document.createElement('div'), null, null, stylesheet);
  1652. graph.resetViewOnRootChange = false;
  1653. graph.setConnectable(false);
  1654. graph.gridEnabled = false;
  1655. graph.autoScroll = false;
  1656. graph.setTooltips(false);
  1657. graph.setEnabled(false);
  1658. // Container must be in the DOM for correct HTML rendering
  1659. graph.container.style.visibility = 'hidden';
  1660. graph.container.style.position = 'absolute';
  1661. graph.container.style.overflow = 'hidden';
  1662. graph.container.style.height = '1px';
  1663. graph.container.style.width = '1px';
  1664. return graph;
  1665. };
  1666. /**
  1667. *
  1668. */
  1669. EditorUi.prototype.addChromelessClickHandler = function()
  1670. {
  1671. var hl = urlParams['highlight'];
  1672. // Adds leading # for highlight color code
  1673. if (hl != null && hl.length > 0)
  1674. {
  1675. hl = '#' + hl;
  1676. }
  1677. this.editor.graph.addClickHandler(hl);
  1678. };
  1679. /**
  1680. *
  1681. */
  1682. EditorUi.prototype.toggleFormatPanel = function(forceHide)
  1683. {
  1684. this.formatWidth = (forceHide || this.formatWidth > 0) ? 0 : 240;
  1685. this.formatContainer.style.display = (forceHide || this.formatWidth > 0) ? '' : 'none';
  1686. this.refresh();
  1687. this.format.refresh();
  1688. this.fireEvent(new mxEventObject('formatWidthChanged'));
  1689. };
  1690. /**
  1691. * Adds support for placeholders in labels.
  1692. */
  1693. EditorUi.prototype.lightboxFit = function()
  1694. {
  1695. // LATER: Use initial graph bounds to avoid rounding errors
  1696. this.editor.graph.maxFitScale = 2;
  1697. this.editor.graph.fit(60);
  1698. this.editor.graph.maxFitScale = null;
  1699. };
  1700. /**
  1701. * Hook for allowing selection and context menu for certain events.
  1702. */
  1703. EditorUi.prototype.isSelectionAllowed = function(evt)
  1704. {
  1705. return mxEvent.getSource(evt).nodeName == 'SELECT' || (mxEvent.getSource(evt).nodeName == 'INPUT' &&
  1706. mxUtils.isAncestorNode(this.formatContainer, mxEvent.getSource(evt)));
  1707. };
  1708. /**
  1709. * Installs dialog if browser window is closed without saving
  1710. * This must be disabled during save and image export.
  1711. */
  1712. EditorUi.prototype.addBeforeUnloadListener = function()
  1713. {
  1714. // Installs dialog if browser window is closed without saving
  1715. // This must be disabled during save and image export
  1716. window.onbeforeunload = mxUtils.bind(this, function()
  1717. {
  1718. if (!this.editor.chromeless)
  1719. {
  1720. return this.onBeforeUnload();
  1721. }
  1722. });
  1723. };
  1724. /**
  1725. * Sets the onbeforeunload for the application
  1726. */
  1727. EditorUi.prototype.onBeforeUnload = function()
  1728. {
  1729. if (this.editor.modified)
  1730. {
  1731. return mxResources.get('allChangesLost');
  1732. }
  1733. };
  1734. /**
  1735. * Opens the current diagram via the window.opener if one exists.
  1736. */
  1737. EditorUi.prototype.open = function()
  1738. {
  1739. // Cross-domain window access is not allowed in FF, so if we
  1740. // were opened from another domain then this will fail.
  1741. try
  1742. {
  1743. if (window.opener != null && window.opener.openFile != null)
  1744. {
  1745. window.opener.openFile.setConsumer(mxUtils.bind(this, function(xml, filename)
  1746. {
  1747. try
  1748. {
  1749. var doc = mxUtils.parseXml(xml);
  1750. this.editor.setGraphXml(doc.documentElement);
  1751. this.editor.setModified(false);
  1752. this.editor.undoManager.clear();
  1753. if (filename != null)
  1754. {
  1755. this.editor.setFilename(filename);
  1756. this.updateDocumentTitle();
  1757. }
  1758. return;
  1759. }
  1760. catch (e)
  1761. {
  1762. mxUtils.alert(mxResources.get('invalidOrMissingFile') + ': ' + e.message);
  1763. }
  1764. }));
  1765. }
  1766. }
  1767. catch(e)
  1768. {
  1769. // ignore
  1770. }
  1771. // Fires as the last step if no file was loaded
  1772. this.editor.graph.view.validate();
  1773. // Required only in special cases where an initial file is opened
  1774. // and the minimumGraphSize changes and CSS must be updated.
  1775. this.editor.graph.sizeDidChange();
  1776. this.editor.fireEvent(new mxEventObject('resetGraphView'));
  1777. };
  1778. /**
  1779. * Sets the current menu and element.
  1780. */
  1781. EditorUi.prototype.setCurrentMenu = function(menu, elt)
  1782. {
  1783. this.currentMenuElt = elt;
  1784. this.currentMenu = menu;
  1785. };
  1786. /**
  1787. * Resets the current menu and element.
  1788. */
  1789. EditorUi.prototype.resetCurrentMenu = function()
  1790. {
  1791. this.currentMenuElt = null;
  1792. this.currentMenu = null;
  1793. };
  1794. /**
  1795. * Hides and destroys the current menu.
  1796. */
  1797. EditorUi.prototype.hideCurrentMenu = function(menu, elt)
  1798. {
  1799. if (this.currentMenu != null)
  1800. {
  1801. this.currentMenu.hideMenu();
  1802. this.resetCurrentMenu();
  1803. }
  1804. };
  1805. /**
  1806. * Updates the document title.
  1807. */
  1808. EditorUi.prototype.updateDocumentTitle = function()
  1809. {
  1810. var title = this.editor.getOrCreateFilename();
  1811. if (this.editor.appName != null)
  1812. {
  1813. title += ' - ' + this.editor.appName;
  1814. }
  1815. document.title = title;
  1816. };
  1817. /**
  1818. * Updates the document title.
  1819. */
  1820. EditorUi.prototype.createHoverIcons = function()
  1821. {
  1822. return new HoverIcons(this.editor.graph);
  1823. };
  1824. /**
  1825. * Returns the URL for a copy of this editor with no state.
  1826. */
  1827. EditorUi.prototype.redo = function()
  1828. {
  1829. try
  1830. {
  1831. var graph = this.editor.graph;
  1832. if (graph.isEditing())
  1833. {
  1834. document.execCommand('redo', false, null);
  1835. }
  1836. else
  1837. {
  1838. this.editor.undoManager.redo();
  1839. }
  1840. }
  1841. catch (e)
  1842. {
  1843. // ignore all errors
  1844. }
  1845. };
  1846. /**
  1847. * Returns the URL for a copy of this editor with no state.
  1848. */
  1849. EditorUi.prototype.undo = function()
  1850. {
  1851. try
  1852. {
  1853. var graph = this.editor.graph;
  1854. if (graph.isEditing())
  1855. {
  1856. // Stops editing and executes undo on graph if native undo
  1857. // does not affect current editing value
  1858. var value = graph.cellEditor.textarea.innerHTML;
  1859. document.execCommand('undo', false, null);
  1860. if (value == graph.cellEditor.textarea.innerHTML)
  1861. {
  1862. graph.stopEditing(true);
  1863. this.editor.undoManager.undo();
  1864. }
  1865. }
  1866. else
  1867. {
  1868. this.editor.undoManager.undo();
  1869. }
  1870. }
  1871. catch (e)
  1872. {
  1873. // ignore all errors
  1874. }
  1875. };
  1876. /**
  1877. * Returns the URL for a copy of this editor with no state.
  1878. */
  1879. EditorUi.prototype.canRedo = function()
  1880. {
  1881. return this.editor.graph.isEditing() || this.editor.undoManager.canRedo();
  1882. };
  1883. /**
  1884. * Returns the URL for a copy of this editor with no state.
  1885. */
  1886. EditorUi.prototype.canUndo = function()
  1887. {
  1888. return this.editor.graph.isEditing() || this.editor.undoManager.canUndo();
  1889. };
  1890. /**
  1891. *
  1892. */
  1893. EditorUi.prototype.getEditBlankXml = function()
  1894. {
  1895. return mxUtils.getXml(this.getGraphXml());
  1896. };
  1897. /**
  1898. * Returns the URL for a copy of this editor with no state.
  1899. */
  1900. EditorUi.prototype.getUrl = function(pathname)
  1901. {
  1902. var href = (pathname != null) ? pathname : window.location.pathname;
  1903. var parms = (href.indexOf('?') > 0) ? 1 : 0;
  1904. // Removes template URL parameter for new blank diagram
  1905. for (var key in urlParams)
  1906. {
  1907. if (parms == 0)
  1908. {
  1909. href += '?';
  1910. }
  1911. else
  1912. {
  1913. href += '&';
  1914. }
  1915. href += key + '=' + urlParams[key];
  1916. parms++;
  1917. }
  1918. return href;
  1919. };
  1920. /**
  1921. * Specifies if the graph has scrollbars.
  1922. */
  1923. EditorUi.prototype.setScrollbars = function(value)
  1924. {
  1925. var graph = this.editor.graph;
  1926. var prev = graph.container.style.overflow;
  1927. graph.scrollbars = value;
  1928. this.editor.updateGraphComponents();
  1929. if (prev != graph.container.style.overflow)
  1930. {
  1931. if (graph.container.style.overflow == 'hidden')
  1932. {
  1933. var t = graph.view.translate;
  1934. graph.view.setTranslate(t.x - graph.container.scrollLeft / graph.view.scale, t.y - graph.container.scrollTop / graph.view.scale);
  1935. graph.container.scrollLeft = 0;
  1936. graph.container.scrollTop = 0;
  1937. graph.minimumGraphSize = null;
  1938. graph.sizeDidChange();
  1939. }
  1940. else
  1941. {
  1942. var dx = graph.view.translate.x;
  1943. var dy = graph.view.translate.y;
  1944. graph.view.translate.x = 0;
  1945. graph.view.translate.y = 0;
  1946. graph.sizeDidChange();
  1947. graph.container.scrollLeft -= Math.round(dx * graph.view.scale);
  1948. graph.container.scrollTop -= Math.round(dy * graph.view.scale);
  1949. }
  1950. }
  1951. this.fireEvent(new mxEventObject('scrollbarsChanged'));
  1952. };
  1953. /**
  1954. * Returns true if the graph has scrollbars.
  1955. */
  1956. EditorUi.prototype.hasScrollbars = function()
  1957. {
  1958. return this.editor.graph.scrollbars;
  1959. };
  1960. /**
  1961. * Resets the state of the scrollbars.
  1962. */
  1963. EditorUi.prototype.resetScrollbars = function()
  1964. {
  1965. var graph = this.editor.graph;
  1966. if (!this.editor.extendCanvas)
  1967. {
  1968. graph.container.scrollTop = 0;
  1969. graph.container.scrollLeft = 0;
  1970. if (!mxUtils.hasScrollbars(graph.container))
  1971. {
  1972. graph.view.setTranslate(0, 0);
  1973. }
  1974. }
  1975. else if (!this.editor.chromeless)
  1976. {
  1977. if (mxUtils.hasScrollbars(graph.container))
  1978. {
  1979. if (graph.pageVisible)
  1980. {
  1981. var pad = graph.getPagePadding();
  1982. graph.container.scrollTop = Math.floor(pad.y - this.editor.initialTopSpacing);
  1983. graph.container.scrollLeft = Math.floor(Math.min(pad.x, (graph.container.scrollWidth - graph.container.clientWidth) / 2));
  1984. // Scrolls graph to visible area
  1985. var bounds = graph.getGraphBounds();
  1986. if (bounds.width > 0 && bounds.height > 0)
  1987. {
  1988. if (bounds.x > graph.container.scrollLeft + graph.container.clientWidth * 0.9)
  1989. {
  1990. graph.container.scrollLeft = Math.min(bounds.x + bounds.width - graph.container.clientWidth, bounds.x - 10);
  1991. }
  1992. if (bounds.y > graph.container.scrollTop + graph.container.clientHeight * 0.9)
  1993. {
  1994. graph.container.scrollTop = Math.min(bounds.y + bounds.height - graph.container.clientHeight, bounds.y - 10);
  1995. }
  1996. }
  1997. }
  1998. else
  1999. {
  2000. var bounds = graph.getGraphBounds();
  2001. var width = Math.max(bounds.width, graph.scrollTileSize.width * graph.view.scale);
  2002. var height = Math.max(bounds.height, graph.scrollTileSize.height * graph.view.scale);
  2003. graph.container.scrollTop = Math.floor(Math.max(0, bounds.y - Math.max(20, (graph.container.clientHeight - height) / 4)));
  2004. graph.container.scrollLeft = Math.floor(Math.max(0, bounds.x - Math.max(0, (graph.container.clientWidth - width) / 2)));
  2005. }
  2006. }
  2007. else
  2008. {
  2009. // This code is not actively used since the default for scrollbars is always true
  2010. if (graph.pageVisible)
  2011. {
  2012. var b = graph.view.getBackgroundPageBounds();
  2013. graph.view.setTranslate(Math.floor(Math.max(0, (graph.container.clientWidth - b.width) / 2) - b.x),
  2014. Math.floor(Math.max(0, (graph.container.clientHeight - b.height) / 2) - b.y));
  2015. }
  2016. else
  2017. {
  2018. var bounds = graph.getGraphBounds();
  2019. graph.view.setTranslate(Math.floor(Math.max(0, Math.max(0, (graph.container.clientWidth - bounds.width) / 2) - bounds.x)),
  2020. Math.floor(Math.max(0, Math.max(20, (graph.container.clientHeight - bounds.height) / 4)) - bounds.y));
  2021. }
  2022. }
  2023. }
  2024. };
  2025. /**
  2026. * Loads the stylesheet for this graph.
  2027. */
  2028. EditorUi.prototype.setPageVisible = function(value)
  2029. {
  2030. var graph = this.editor.graph;
  2031. var hasScrollbars = mxUtils.hasScrollbars(graph.container);
  2032. var tx = 0;
  2033. var ty = 0;
  2034. if (hasScrollbars)
  2035. {
  2036. tx = graph.view.translate.x * graph.view.scale - graph.container.scrollLeft;
  2037. ty = graph.view.translate.y * graph.view.scale - graph.container.scrollTop;
  2038. }
  2039. graph.pageVisible = value;
  2040. graph.pageBreaksVisible = value;
  2041. graph.preferPageSize = value;
  2042. graph.view.validateBackground();
  2043. // Workaround for possible handle offset
  2044. if (hasScrollbars)
  2045. {
  2046. var cells = graph.getSelectionCells();
  2047. graph.clearSelection();
  2048. graph.setSelectionCells(cells);
  2049. }
  2050. // Calls updatePageBreaks
  2051. graph.sizeDidChange();
  2052. if (hasScrollbars)
  2053. {
  2054. graph.container.scrollLeft = graph.view.translate.x * graph.view.scale - tx;
  2055. graph.container.scrollTop = graph.view.translate.y * graph.view.scale - ty;
  2056. }
  2057. this.fireEvent(new mxEventObject('pageViewChanged'));
  2058. };
  2059. /**
  2060. * Loads the stylesheet for this graph.
  2061. */
  2062. EditorUi.prototype.setBackgroundColor = function(value)
  2063. {
  2064. this.editor.graph.background = value;
  2065. this.editor.graph.view.validateBackground();
  2066. this.fireEvent(new mxEventObject('backgroundColorChanged'));
  2067. };
  2068. /**
  2069. * Loads the stylesheet for this graph.
  2070. */
  2071. EditorUi.prototype.setFoldingEnabled = function(value)
  2072. {
  2073. this.editor.graph.foldingEnabled = value;
  2074. this.editor.graph.view.revalidate();
  2075. this.fireEvent(new mxEventObject('foldingEnabledChanged'));
  2076. };
  2077. /**
  2078. * Loads the stylesheet for this graph.
  2079. */
  2080. EditorUi.prototype.setPageFormat = function(value)
  2081. {
  2082. this.editor.graph.pageFormat = value;
  2083. if (!this.editor.graph.pageVisible)
  2084. {
  2085. this.actions.get('pageView').funct();
  2086. }
  2087. else
  2088. {
  2089. this.editor.graph.view.validateBackground();
  2090. this.editor.graph.sizeDidChange();
  2091. }
  2092. this.fireEvent(new mxEventObject('pageFormatChanged'));
  2093. };
  2094. /**
  2095. * Loads the stylesheet for this graph.
  2096. */
  2097. EditorUi.prototype.setPageScale = function(value)
  2098. {
  2099. this.editor.graph.pageScale = value;
  2100. if (!this.editor.graph.pageVisible)
  2101. {
  2102. this.actions.get('pageView').funct();
  2103. }
  2104. else
  2105. {
  2106. this.editor.graph.view.validateBackground();
  2107. this.editor.graph.sizeDidChange();
  2108. }
  2109. this.fireEvent(new mxEventObject('pageScaleChanged'));
  2110. };
  2111. /**
  2112. * Loads the stylesheet for this graph.
  2113. */
  2114. EditorUi.prototype.setGridColor = function(value)
  2115. {
  2116. this.editor.graph.view.gridColor = value;
  2117. this.editor.graph.view.validateBackground();
  2118. this.fireEvent(new mxEventObject('gridColorChanged'));
  2119. };
  2120. /**
  2121. * Updates the states of the given undo/redo items.
  2122. */
  2123. EditorUi.prototype.addUndoListener = function()
  2124. {
  2125. var undo = this.actions.get('undo');
  2126. var redo = this.actions.get('redo');
  2127. var undoMgr = this.editor.undoManager;
  2128. var undoListener = mxUtils.bind(this, function()
  2129. {
  2130. undo.setEnabled(this.canUndo());
  2131. redo.setEnabled(this.canRedo());
  2132. });
  2133. undoMgr.addListener(mxEvent.ADD, undoListener);
  2134. undoMgr.addListener(mxEvent.UNDO, undoListener);
  2135. undoMgr.addListener(mxEvent.REDO, undoListener);
  2136. undoMgr.addListener(mxEvent.CLEAR, undoListener);
  2137. // Overrides cell editor to update action states
  2138. var cellEditorStartEditing = this.editor.graph.cellEditor.startEditing;
  2139. this.editor.graph.cellEditor.startEditing = function()
  2140. {
  2141. cellEditorStartEditing.apply(this, arguments);
  2142. undoListener();
  2143. };
  2144. var cellEditorStopEditing = this.editor.graph.cellEditor.stopEditing;
  2145. this.editor.graph.cellEditor.stopEditing = function(cell, trigger)
  2146. {
  2147. cellEditorStopEditing.apply(this, arguments);
  2148. undoListener();
  2149. };
  2150. // Updates the button states once
  2151. undoListener();
  2152. };
  2153. /**
  2154. * Updates the states of the given toolbar items based on the selection.
  2155. */
  2156. EditorUi.prototype.updateActionStates = function()
  2157. {
  2158. var graph = this.editor.graph;
  2159. var selected = !graph.isSelectionEmpty();
  2160. var vertexSelected = false;
  2161. var edgeSelected = false;
  2162. var cells = graph.getSelectionCells();
  2163. if (cells != null)
  2164. {
  2165. for (var i = 0; i < cells.length; i++)
  2166. {
  2167. var cell = cells[i];
  2168. if (graph.getModel().isEdge(cell))
  2169. {
  2170. edgeSelected = true;
  2171. }
  2172. if (graph.getModel().isVertex(cell))
  2173. {
  2174. vertexSelected = true;
  2175. }
  2176. if (edgeSelected && vertexSelected)
  2177. {
  2178. break;
  2179. }
  2180. }
  2181. }
  2182. // Updates action states
  2183. var actions = ['cut', 'copy', 'bold', 'italic', 'underline', 'delete', 'duplicate',
  2184. 'editStyle', 'editTooltip', 'editLink', 'backgroundColor', 'borderColor',
  2185. 'edit', 'toFront', 'toBack', 'lockUnlock', 'solid', 'dashed',
  2186. 'dotted', 'fillColor', 'gradientColor', 'shadow', 'fontColor',
  2187. 'formattedText', 'rounded', 'toggleRounded', 'sharp', 'strokeColor'];
  2188. for (var i = 0; i < actions.length; i++)
  2189. {
  2190. this.actions.get(actions[i]).setEnabled(selected);
  2191. }
  2192. this.actions.get('setAsDefaultStyle').setEnabled(graph.getSelectionCount() == 1);
  2193. this.actions.get('clearWaypoints').setEnabled(!graph.isSelectionEmpty());
  2194. this.actions.get('turn').setEnabled(!graph.isSelectionEmpty());
  2195. this.actions.get('curved').setEnabled(edgeSelected);
  2196. this.actions.get('rotation').setEnabled(vertexSelected);
  2197. this.actions.get('wordWrap').setEnabled(vertexSelected);
  2198. this.actions.get('autosize').setEnabled(vertexSelected);
  2199. this.actions.get('collapsible').setEnabled(vertexSelected);
  2200. var oneVertexSelected = vertexSelected && graph.getSelectionCount() == 1;
  2201. this.actions.get('group').setEnabled(graph.getSelectionCount() > 1 ||
  2202. (oneVertexSelected && !graph.isContainer(graph.getSelectionCell())));
  2203. this.actions.get('ungroup').setEnabled(graph.getSelectionCount() == 1 &&
  2204. (graph.getModel().getChildCount(graph.getSelectionCell()) > 0 ||
  2205. (oneVertexSelected && graph.isContainer(graph.getSelectionCell()))));
  2206. this.actions.get('removeFromGroup').setEnabled(oneVertexSelected &&
  2207. graph.getModel().isVertex(graph.getModel().getParent(graph.getSelectionCell())));
  2208. // Updates menu states
  2209. var state = graph.view.getState(graph.getSelectionCell());
  2210. this.menus.get('navigation').setEnabled(selected || graph.view.currentRoot != null);
  2211. this.actions.get('collapsible').setEnabled(vertexSelected && graph.getSelectionCount() == 1 &&
  2212. (graph.isContainer(graph.getSelectionCell()) || graph.model.getChildCount(graph.getSelectionCell()) > 0));
  2213. this.actions.get('home').setEnabled(graph.view.currentRoot != null);
  2214. this.actions.get('exitGroup').setEnabled(graph.view.currentRoot != null);
  2215. this.actions.get('enterGroup').setEnabled(graph.getSelectionCount() == 1 && graph.isValidRoot(graph.getSelectionCell()));
  2216. var foldable = graph.getSelectionCount() == 1 && graph.isCellFoldable(graph.getSelectionCell())
  2217. this.actions.get('expand').setEnabled(foldable);
  2218. this.actions.get('collapse').setEnabled(foldable);
  2219. this.actions.get('editLink').setEnabled(graph.getSelectionCount() == 1);
  2220. this.actions.get('openLink').setEnabled(graph.getSelectionCount() == 1 &&
  2221. graph.getLinkForCell(graph.getSelectionCell()) != null);
  2222. this.actions.get('guides').setEnabled(graph.isEnabled());
  2223. this.actions.get('grid').setEnabled(!this.editor.chromeless);
  2224. var unlocked = graph.isEnabled() && !graph.isCellLocked(graph.getDefaultParent());
  2225. this.menus.get('layout').setEnabled(unlocked);
  2226. this.menus.get('insert').setEnabled(unlocked);
  2227. this.menus.get('direction').setEnabled(unlocked && vertexSelected);
  2228. this.menus.get('align').setEnabled(unlocked && vertexSelected && graph.getSelectionCount() > 1);
  2229. this.menus.get('distribute').setEnabled(unlocked && vertexSelected && graph.getSelectionCount() > 1);
  2230. this.actions.get('selectVertices').setEnabled(unlocked);
  2231. this.actions.get('selectEdges').setEnabled(unlocked);
  2232. this.actions.get('selectAll').setEnabled(unlocked);
  2233. this.actions.get('selectNone').setEnabled(unlocked);
  2234. this.updatePasteActionStates();
  2235. };
  2236. /**
  2237. * Refreshes the viewport.
  2238. */
  2239. EditorUi.prototype.refresh = function(sizeDidChange)
  2240. {
  2241. sizeDidChange = (sizeDidChange != null) ? sizeDidChange : true;
  2242. var quirks = mxClient.IS_IE && (document.documentMode == null || document.documentMode == 5);
  2243. var w = this.container.clientWidth;
  2244. var h = this.container.clientHeight;
  2245. if (this.container == document.body)
  2246. {
  2247. w = document.body.clientWidth || document.documentElement.clientWidth;
  2248. h = (quirks) ? document.body.clientHeight || document.documentElement.clientHeight : document.documentElement.clientHeight;
  2249. }
  2250. // Workaround for bug on iOS see
  2251. // http://stackoverflow.com/questions/19012135/ios-7-ipad-safari-landscape-innerheight-outerheight-layout-issue
  2252. // FIXME: Fix if footer visible
  2253. var off = 0;
  2254. if (mxClient.IS_IOS && !window.navigator.standalone)
  2255. {
  2256. if (window.innerHeight != document.documentElement.clientHeight)
  2257. {
  2258. off = document.documentElement.clientHeight - window.innerHeight;
  2259. window.scrollTo(0, 0);
  2260. }
  2261. }
  2262. var effHsplitPosition = Math.max(0, Math.min(this.hsplitPosition, w - this.splitSize - 20));
  2263. var tmp = 0;
  2264. if (this.menubar != null)
  2265. {
  2266. this.menubarContainer.style.height = this.menubarHeight + 'px';
  2267. tmp += this.menubarHeight;
  2268. }
  2269. if (this.toolbar != null)
  2270. {
  2271. this.toolbarContainer.style.top = this.menubarHeight + 'px';
  2272. this.toolbarContainer.style.height = this.toolbarHeight + 'px';
  2273. tmp += this.toolbarHeight;
  2274. }
  2275. if (tmp > 0 && !mxClient.IS_QUIRKS)
  2276. {
  2277. tmp += 1;
  2278. }
  2279. var sidebarFooterHeight = 0;
  2280. if (this.sidebarFooterContainer != null)
  2281. {
  2282. var bottom = this.footerHeight + off;
  2283. sidebarFooterHeight = Math.max(0, Math.min(h - tmp - bottom, this.sidebarFooterHeight));
  2284. this.sidebarFooterContainer.style.width = effHsplitPosition + 'px';
  2285. this.sidebarFooterContainer.style.height = sidebarFooterHeight + 'px';
  2286. this.sidebarFooterContainer.style.bottom = bottom + 'px';
  2287. }
  2288. var fw = (this.format != null) ? this.formatWidth : 0;
  2289. this.sidebarContainer.style.top = tmp + 'px';
  2290. this.sidebarContainer.style.width = effHsplitPosition + 'px';
  2291. this.formatContainer.style.top = tmp + 'px';
  2292. this.formatContainer.style.width = fw + 'px';
  2293. this.formatContainer.style.display = (this.format != null) ? '' : 'none';
  2294. this.diagramContainer.style.left = (this.hsplit.parentNode != null) ? (effHsplitPosition + this.splitSize) + 'px' : '0px';
  2295. this.diagramContainer.style.top = this.sidebarContainer.style.top;
  2296. this.footerContainer.style.height = this.footerHeight + 'px';
  2297. this.hsplit.style.top = this.sidebarContainer.style.top;
  2298. this.hsplit.style.bottom = (this.footerHeight + off) + 'px';
  2299. this.hsplit.style.left = effHsplitPosition + 'px';
  2300. if (this.tabContainer != null)
  2301. {
  2302. this.tabContainer.style.left = this.diagramContainer.style.left;
  2303. }
  2304. if (quirks)
  2305. {
  2306. this.menubarContainer.style.width = w + 'px';
  2307. this.toolbarContainer.style.width = this.menubarContainer.style.width;
  2308. var sidebarHeight = Math.max(0, h - this.footerHeight - this.menubarHeight - this.toolbarHeight);
  2309. this.sidebarContainer.style.height = (sidebarHeight - sidebarFooterHeight) + 'px';
  2310. this.formatContainer.style.height = sidebarHeight + 'px';
  2311. this.diagramContainer.style.width = (this.hsplit.parentNode != null) ? Math.max(0, w - effHsplitPosition - this.splitSize - fw) + 'px' : w + 'px';
  2312. this.footerContainer.style.width = this.menubarContainer.style.width;
  2313. var diagramHeight = Math.max(0, h - this.footerHeight - this.menubarHeight - this.toolbarHeight);
  2314. if (this.tabContainer != null)
  2315. {
  2316. this.tabContainer.style.width = this.diagramContainer.style.width;
  2317. this.tabContainer.style.bottom = (this.footerHeight + off) + 'px';
  2318. diagramHeight -= this.tabContainer.clientHeight;
  2319. }
  2320. this.diagramContainer.style.height = diagramHeight + 'px';
  2321. this.hsplit.style.height = diagramHeight + 'px';
  2322. }
  2323. else
  2324. {
  2325. if (this.footerHeight > 0)
  2326. {
  2327. this.footerContainer.style.bottom = off + 'px';
  2328. }
  2329. this.diagramContainer.style.right = fw + 'px';
  2330. var th = 0;
  2331. if (this.tabContainer != null)
  2332. {
  2333. this.tabContainer.style.bottom = (this.footerHeight + off) + 'px';
  2334. this.tabContainer.style.right = this.diagramContainer.style.right;
  2335. th = this.tabContainer.clientHeight;
  2336. }
  2337. this.sidebarContainer.style.bottom = (this.footerHeight + sidebarFooterHeight + off) + 'px';
  2338. this.formatContainer.style.bottom = (this.footerHeight + off) + 'px';
  2339. this.diagramContainer.style.bottom = (this.footerHeight + off + th) + 'px';
  2340. }
  2341. if (sizeDidChange)
  2342. {
  2343. this.editor.graph.sizeDidChange();
  2344. }
  2345. };
  2346. /**
  2347. * Creates the required containers.
  2348. */
  2349. EditorUi.prototype.createTabContainer = function()
  2350. {
  2351. return null;
  2352. };
  2353. /**
  2354. * Creates the required containers.
  2355. */
  2356. EditorUi.prototype.createDivs = function()
  2357. {
  2358. this.menubarContainer = this.createDiv('geMenubarContainer');
  2359. this.toolbarContainer = this.createDiv('geToolbarContainer');
  2360. this.sidebarContainer = this.createDiv('geSidebarContainer');
  2361. this.formatContainer = this.createDiv('geSidebarContainer');
  2362. this.diagramContainer = this.createDiv('geDiagramContainer');
  2363. this.footerContainer = this.createDiv('geFooterContainer');
  2364. this.hsplit = this.createDiv('geHsplit');
  2365. this.hsplit.setAttribute('title', mxResources.get('collapseExpand'));
  2366. // Sets static style for containers
  2367. this.menubarContainer.style.top = '0px';
  2368. this.menubarContainer.style.left = '0px';
  2369. this.menubarContainer.style.right = '0px';
  2370. this.toolbarContainer.style.left = '0px';
  2371. this.toolbarContainer.style.right = '0px';
  2372. this.sidebarContainer.style.left = '0px';
  2373. this.formatContainer.style.right = '0px';
  2374. this.formatContainer.style.zIndex = '1';
  2375. this.diagramContainer.style.right = ((this.format != null) ? this.formatWidth : 0) + 'px';
  2376. this.footerContainer.style.left = '0px';
  2377. this.footerContainer.style.right = '0px';
  2378. this.footerContainer.style.bottom = '0px';
  2379. this.footerContainer.style.zIndex = mxPopupMenu.prototype.zIndex - 2;
  2380. this.hsplit.style.width = this.splitSize + 'px';
  2381. // Only vertical scrollbars, no background in format sidebar
  2382. this.formatContainer.style.backgroundColor = 'whiteSmoke';
  2383. this.formatContainer.style.overflowX = 'hidden';
  2384. this.formatContainer.style.overflowY = 'auto';
  2385. this.formatContainer.style.fontSize = '12px';
  2386. this.sidebarFooterContainer = this.createSidebarFooterContainer();
  2387. if (this.sidebarFooterContainer)
  2388. {
  2389. this.sidebarFooterContainer.style.left = '0px';
  2390. }
  2391. if (!this.editor.chromeless)
  2392. {
  2393. this.tabContainer = this.createTabContainer();
  2394. }
  2395. };
  2396. /**
  2397. * Hook for sidebar footer container. This implementation returns null.
  2398. */
  2399. EditorUi.prototype.createSidebarFooterContainer = function()
  2400. {
  2401. return null;
  2402. };
  2403. /**
  2404. * Creates the required containers.
  2405. */
  2406. EditorUi.prototype.createUi = function()
  2407. {
  2408. // Creates menubar
  2409. this.menubar = (this.editor.chromeless) ? null : this.menus.createMenubar(this.createDiv('geMenubar'));
  2410. if (this.menubar != null)
  2411. {
  2412. this.menubarContainer.appendChild(this.menubar.container);
  2413. }
  2414. // Adds status bar in menubar
  2415. if (this.menubar != null)
  2416. {
  2417. this.statusContainer = this.createStatusContainer();
  2418. // Connects the status bar to the editor status
  2419. this.editor.addListener('statusChanged', mxUtils.bind(this, function()
  2420. {
  2421. this.setStatusText(this.editor.getStatus());
  2422. }));
  2423. this.setStatusText(this.editor.getStatus());
  2424. this.menubar.container.appendChild(this.statusContainer);
  2425. // Inserts into DOM
  2426. this.container.appendChild(this.menubarContainer);
  2427. }
  2428. // Creates the sidebar
  2429. this.sidebar = (this.editor.chromeless) ? null : this.createSidebar(this.sidebarContainer);
  2430. if (this.sidebar != null)
  2431. {
  2432. this.container.appendChild(this.sidebarContainer);
  2433. }
  2434. // Creates the format sidebar
  2435. this.format = (this.editor.chromeless || !this.formatEnabled) ? null : this.createFormat(this.formatContainer);
  2436. if (this.format != null)
  2437. {
  2438. this.container.appendChild(this.formatContainer);
  2439. }
  2440. // Creates the footer
  2441. var footer = (this.editor.chromeless) ? null : this.createFooter();
  2442. if (footer != null)
  2443. {
  2444. this.footerContainer.appendChild(footer);
  2445. this.container.appendChild(this.footerContainer);
  2446. }
  2447. if (this.sidebar != null && this.sidebarFooterContainer)
  2448. {
  2449. this.container.appendChild(this.sidebarFooterContainer);
  2450. }
  2451. this.container.appendChild(this.diagramContainer);
  2452. if (this.container != null && this.tabContainer != null)
  2453. {
  2454. this.container.appendChild(this.tabContainer);
  2455. }
  2456. // Creates toolbar
  2457. this.toolbar = (this.editor.chromeless) ? null : this.createToolbar(this.createDiv('geToolbar'));
  2458. if (this.toolbar != null)
  2459. {
  2460. this.toolbarContainer.appendChild(this.toolbar.container);
  2461. this.container.appendChild(this.toolbarContainer);
  2462. }
  2463. // HSplit
  2464. if (this.sidebar != null)
  2465. {
  2466. this.container.appendChild(this.hsplit);
  2467. this.addSplitHandler(this.hsplit, true, 0, mxUtils.bind(this, function(value)
  2468. {
  2469. this.hsplitPosition = value;
  2470. this.refresh();
  2471. }));
  2472. }
  2473. };
  2474. /**
  2475. * Creates a new toolbar for the given container.
  2476. */
  2477. EditorUi.prototype.createStatusContainer = function()
  2478. {
  2479. var container = document.createElement('a');
  2480. container.className = 'geItem geStatus';
  2481. if (screen.width < 420)
  2482. {
  2483. container.style.maxWidth = Math.max(20, screen.width - 320) + 'px';
  2484. container.style.overflow = 'hidden';
  2485. }
  2486. return container;
  2487. };
  2488. /**
  2489. * Creates a new toolbar for the given container.
  2490. */
  2491. EditorUi.prototype.setStatusText = function(value)
  2492. {
  2493. this.statusContainer.innerHTML = value;
  2494. };
  2495. /**
  2496. * Creates a new toolbar for the given container.
  2497. */
  2498. EditorUi.prototype.createToolbar = function(container)
  2499. {
  2500. return new Toolbar(this, container);
  2501. };
  2502. /**
  2503. * Creates a new sidebar for the given container.
  2504. */
  2505. EditorUi.prototype.createSidebar = function(container)
  2506. {
  2507. return new Sidebar(this, container);
  2508. };
  2509. /**
  2510. * Creates a new sidebar for the given container.
  2511. */
  2512. EditorUi.prototype.createFormat = function(container)
  2513. {
  2514. return new Format(this, container);
  2515. };
  2516. /**
  2517. * Creates and returns a new footer.
  2518. */
  2519. EditorUi.prototype.createFooter = function()
  2520. {
  2521. return this.createDiv('geFooter');
  2522. };
  2523. /**
  2524. * Creates the actual toolbar for the toolbar container.
  2525. */
  2526. EditorUi.prototype.createDiv = function(classname)
  2527. {
  2528. var elt = document.createElement('div');
  2529. elt.className = classname;
  2530. return elt;
  2531. };
  2532. /**
  2533. * Updates the states of the given undo/redo items.
  2534. */
  2535. EditorUi.prototype.addSplitHandler = function(elt, horizontal, dx, onChange)
  2536. {
  2537. var start = null;
  2538. var initial = null;
  2539. var ignoreClick = true;
  2540. var last = null;
  2541. // Disables built-in pan and zoom in IE10 and later
  2542. if (mxClient.IS_POINTER)
  2543. {
  2544. elt.style.touchAction = 'none';
  2545. }
  2546. var getValue = mxUtils.bind(this, function()
  2547. {
  2548. var result = parseInt(((horizontal) ? elt.style.left : elt.style.bottom));
  2549. // Takes into account hidden footer
  2550. if (!horizontal)
  2551. {
  2552. result = result + dx - this.footerHeight;
  2553. }
  2554. return result;
  2555. });
  2556. function moveHandler(evt)
  2557. {
  2558. if (start != null)
  2559. {
  2560. var pt = new mxPoint(mxEvent.getClientX(evt), mxEvent.getClientY(evt));
  2561. onChange(Math.max(0, initial + ((horizontal) ? (pt.x - start.x) : (start.y - pt.y)) - dx));
  2562. mxEvent.consume(evt);
  2563. if (initial != getValue())
  2564. {
  2565. ignoreClick = true;
  2566. last = null;
  2567. }
  2568. }
  2569. };
  2570. function dropHandler(evt)
  2571. {
  2572. moveHandler(evt);
  2573. initial = null;
  2574. start = null;
  2575. };
  2576. mxEvent.addGestureListeners(elt, function(evt)
  2577. {
  2578. start = new mxPoint(mxEvent.getClientX(evt), mxEvent.getClientY(evt));
  2579. initial = getValue();
  2580. ignoreClick = false;
  2581. mxEvent.consume(evt);
  2582. });
  2583. mxEvent.addListener(elt, 'click', function(evt)
  2584. {
  2585. if (!ignoreClick)
  2586. {
  2587. var next = (last != null) ? last - dx : 0;
  2588. last = getValue();
  2589. onChange(next);
  2590. mxEvent.consume(evt);
  2591. }
  2592. });
  2593. mxEvent.addGestureListeners(document, null, moveHandler, dropHandler);
  2594. this.destroyFunctions.push(function()
  2595. {
  2596. mxEvent.removeGestureListeners(document, null, moveHandler, dropHandler);
  2597. });
  2598. };
  2599. /**
  2600. * Displays a print dialog.
  2601. */
  2602. EditorUi.prototype.showDialog = function(elt, w, h, modal, closable, onClose)
  2603. {
  2604. this.editor.graph.tooltipHandler.hideTooltip();
  2605. if (this.dialogs == null)
  2606. {
  2607. this.dialogs = [];
  2608. }
  2609. this.dialog = new Dialog(this, elt, w, h, modal, closable, onClose);
  2610. this.dialogs.push(this.dialog);
  2611. };
  2612. /**
  2613. * Displays a print dialog.
  2614. */
  2615. EditorUi.prototype.hideDialog = function(cancel)
  2616. {
  2617. if (this.dialogs != null && this.dialogs.length > 0)
  2618. {
  2619. var dlg = this.dialogs.pop();
  2620. dlg.close(cancel);
  2621. this.dialog = (this.dialogs.length > 0) ? this.dialogs[this.dialogs.length - 1] : null;
  2622. if (this.dialog == null && this.editor.graph.container.style.visibility != 'hidden')
  2623. {
  2624. this.editor.graph.container.focus();
  2625. }
  2626. this.editor.fireEvent(new mxEventObject('hideDialog'));
  2627. }
  2628. };
  2629. /**
  2630. * Display a color dialog.
  2631. */
  2632. EditorUi.prototype.pickColor = function(color, apply)
  2633. {
  2634. var graph = this.editor.graph;
  2635. var selState = graph.cellEditor.saveSelection();
  2636. var dlg = new ColorDialog(this, color || 'none', function(color)
  2637. {
  2638. graph.cellEditor.restoreSelection(selState);
  2639. apply(color);
  2640. }, function()
  2641. {
  2642. graph.cellEditor.restoreSelection(selState);
  2643. });
  2644. this.showDialog(dlg.container, 220, 430, true, false);
  2645. dlg.init();
  2646. };
  2647. /**
  2648. * Adds the label menu items to the given menu and parent.
  2649. */
  2650. EditorUi.prototype.openFile = function()
  2651. {
  2652. // Closes dialog after open
  2653. window.openFile = new OpenFile(mxUtils.bind(this, function(cancel)
  2654. {
  2655. this.hideDialog(cancel);
  2656. }));
  2657. // Removes openFile if dialog is closed
  2658. this.showDialog(new OpenDialog(this).container, (Editor.useLocalStorage) ? 640 : 320,
  2659. (Editor.useLocalStorage) ? 480 : 220, true, true, function()
  2660. {
  2661. window.openFile = null;
  2662. });
  2663. };
  2664. /**
  2665. * Extracs the graph model from the given HTML data from a data transfer event.
  2666. */
  2667. EditorUi.prototype.extractGraphModelFromHtml = function(data)
  2668. {
  2669. var result = null;
  2670. try
  2671. {
  2672. var idx = data.indexOf('&lt;mxGraphModel ');
  2673. if (idx >= 0)
  2674. {
  2675. var idx2 = data.lastIndexOf('&lt;/mxGraphModel&gt;');
  2676. if (idx2 > idx)
  2677. {
  2678. result = data.substring(idx, idx2 + 21).replace(/&gt;/g, '>').
  2679. replace(/&lt;/g, '<').replace(/\\&quot;/g, '"').replace(/\n/g, '');
  2680. }
  2681. }
  2682. }
  2683. catch (e)
  2684. {
  2685. // ignore
  2686. }
  2687. return result;
  2688. };
  2689. /**
  2690. * Opens the given files in the editor.
  2691. */
  2692. EditorUi.prototype.extractGraphModelFromEvent = function(evt)
  2693. {
  2694. var result = null;
  2695. var data = null;
  2696. if (evt != null)
  2697. {
  2698. var provider = (evt.dataTransfer != null) ? evt.dataTransfer : evt.clipboardData;
  2699. if (provider != null)
  2700. {
  2701. if (document.documentMode == 10 || document.documentMode == 11)
  2702. {
  2703. data = provider.getData('Text');
  2704. }
  2705. else
  2706. {
  2707. data = (mxUtils.indexOf(provider.types, 'text/html') >= 0) ? provider.getData('text/html') : null;
  2708. if (mxUtils.indexOf(provider.types, 'text/plain' && (data == null || data.length == 0)))
  2709. {
  2710. data = provider.getData('text/plain');
  2711. }
  2712. }
  2713. if (data != null)
  2714. {
  2715. data = this.editor.graph.zapGremlins(mxUtils.trim(data));
  2716. // Tries parsing as HTML document with embedded XML
  2717. var xml = this.extractGraphModelFromHtml(data);
  2718. if (xml != null)
  2719. {
  2720. data = xml;
  2721. }
  2722. }
  2723. }
  2724. }
  2725. if (data != null && this.isCompatibleString(data))
  2726. {
  2727. result = data;
  2728. }
  2729. return result;
  2730. };
  2731. /**
  2732. * Hook for subclassers to return true if event data is a supported format.
  2733. * This implementation always returns false.
  2734. */
  2735. EditorUi.prototype.isCompatibleString = function(data)
  2736. {
  2737. return false;
  2738. };
  2739. /**
  2740. * Adds the label menu items to the given menu and parent.
  2741. */
  2742. EditorUi.prototype.saveFile = function(forceDialog)
  2743. {
  2744. if (!forceDialog && this.editor.filename != null)
  2745. {
  2746. this.save(this.editor.getOrCreateFilename());
  2747. }
  2748. else
  2749. {
  2750. var dlg = new FilenameDialog(this, this.editor.getOrCreateFilename(), mxResources.get('save'), mxUtils.bind(this, function(name)
  2751. {
  2752. this.save(name);
  2753. }), null, mxUtils.bind(this, function(name)
  2754. {
  2755. if (name != null && name.length > 0)
  2756. {
  2757. return true;
  2758. }
  2759. mxUtils.confirm(mxResources.get('invalidName'));
  2760. return false;
  2761. }));
  2762. this.showDialog(dlg.container, 300, 100, true, true);
  2763. dlg.init();
  2764. }
  2765. };
  2766. /**
  2767. * Saves the current graph under the given filename.
  2768. */
  2769. EditorUi.prototype.save = function(name)
  2770. {
  2771. if (name != null)
  2772. {
  2773. if (this.editor.graph.isEditing())
  2774. {
  2775. this.editor.graph.stopEditing();
  2776. }
  2777. var xml = mxUtils.getXml(this.editor.getGraphXml());
  2778. try
  2779. {
  2780. if (Editor.useLocalStorage)
  2781. {
  2782. if (localStorage.getItem(name) != null &&
  2783. !mxUtils.confirm(mxResources.get('replaceIt', [name])))
  2784. {
  2785. return;
  2786. }
  2787. localStorage.setItem(name, xml);
  2788. this.editor.setStatus(mxUtils.htmlEntities(mxResources.get('saved')) + ' ' + new Date());
  2789. }
  2790. else
  2791. {
  2792. if (xml.length < MAX_REQUEST_SIZE)
  2793. {
  2794. new mxXmlRequest(SAVE_URL, 'filename=' + encodeURIComponent(name) +
  2795. '&xml=' + encodeURIComponent(xml)).simulate(document, '_blank');
  2796. }
  2797. else
  2798. {
  2799. mxUtils.alert(mxResources.get('drawingTooLarge'));
  2800. mxUtils.popup(xml);
  2801. return;
  2802. }
  2803. }
  2804. this.editor.setModified(false);
  2805. this.editor.setFilename(name);
  2806. this.updateDocumentTitle();
  2807. }
  2808. catch (e)
  2809. {
  2810. this.editor.setStatus(mxUtils.htmlEntities(mxResources.get('errorSavingFile')));
  2811. }
  2812. }
  2813. };
  2814. /**
  2815. * Executes the given layout.
  2816. */
  2817. EditorUi.prototype.executeLayout = function(exec, animate, post)
  2818. {
  2819. var graph = this.editor.graph;
  2820. if (graph.isEnabled())
  2821. {
  2822. graph.getModel().beginUpdate();
  2823. try
  2824. {
  2825. exec();
  2826. }
  2827. catch (e)
  2828. {
  2829. throw e;
  2830. }
  2831. finally
  2832. {
  2833. // Animates the changes in the graph model except
  2834. // for Camino, where animation is too slow
  2835. if (this.allowAnimation && animate && navigator.userAgent.indexOf('Camino') < 0)
  2836. {
  2837. // New API for animating graph layout results asynchronously
  2838. var morph = new mxMorphing(graph);
  2839. morph.addListener(mxEvent.DONE, mxUtils.bind(this, function()
  2840. {
  2841. graph.getModel().endUpdate();
  2842. if (post != null)
  2843. {
  2844. post();
  2845. }
  2846. }));
  2847. morph.startAnimation();
  2848. }
  2849. else
  2850. {
  2851. graph.getModel().endUpdate();
  2852. if (post != null)
  2853. {
  2854. post();
  2855. }
  2856. }
  2857. }
  2858. }
  2859. };
  2860. /**
  2861. * Hides the current menu.
  2862. */
  2863. EditorUi.prototype.showImageDialog = function(title, value, fn, ignoreExisting)
  2864. {
  2865. var cellEditor = this.editor.graph.cellEditor;
  2866. var selState = cellEditor.saveSelection();
  2867. var newValue = mxUtils.prompt(title, value);
  2868. cellEditor.restoreSelection(selState);
  2869. if (newValue != null && newValue.length > 0)
  2870. {
  2871. var img = new Image();
  2872. img.onload = function()
  2873. {
  2874. fn(newValue, img.width, img.height);
  2875. };
  2876. img.onerror = function()
  2877. {
  2878. fn(null);
  2879. mxUtils.alert(mxResources.get('fileNotFound'));
  2880. };
  2881. img.src = newValue;
  2882. }
  2883. else
  2884. {
  2885. fn(null);
  2886. }
  2887. };
  2888. /**
  2889. * Hides the current menu.
  2890. */
  2891. EditorUi.prototype.showLinkDialog = function(value, btnLabel, fn)
  2892. {
  2893. var dlg = new LinkDialog(this, value, btnLabel, fn);
  2894. this.showDialog(dlg.container, 420, 90, true, true);
  2895. dlg.init();
  2896. };
  2897. /**
  2898. * Hides the current menu.
  2899. */
  2900. EditorUi.prototype.showBackgroundImageDialog = function(apply)
  2901. {
  2902. apply = (apply != null) ? apply : mxUtils.bind(this, function(image)
  2903. {
  2904. this.setBackgroundImage(image);
  2905. });
  2906. var newValue = mxUtils.prompt(mxResources.get('backgroundImage'), '');
  2907. if (newValue != null && newValue.length > 0)
  2908. {
  2909. var img = new Image();
  2910. img.onload = function()
  2911. {
  2912. apply(new mxImage(newValue, img.width, img.height));
  2913. };
  2914. img.onerror = function()
  2915. {
  2916. apply(null);
  2917. mxUtils.alert(mxResources.get('fileNotFound'));
  2918. };
  2919. img.src = newValue;
  2920. }
  2921. else
  2922. {
  2923. apply(null);
  2924. }
  2925. };
  2926. /**
  2927. * Loads the stylesheet for this graph.
  2928. */
  2929. EditorUi.prototype.setBackgroundImage = function(image)
  2930. {
  2931. this.editor.graph.setBackgroundImage(image);
  2932. this.editor.graph.view.validateBackgroundImage();
  2933. this.fireEvent(new mxEventObject('backgroundImageChanged'));
  2934. };
  2935. /**
  2936. * Creates the keyboard event handler for the current graph and history.
  2937. */
  2938. EditorUi.prototype.confirm = function(msg, okFn, cancelFn)
  2939. {
  2940. if (mxUtils.confirm(msg))
  2941. {
  2942. if (okFn != null)
  2943. {
  2944. okFn();
  2945. }
  2946. }
  2947. else if (cancelFn != null)
  2948. {
  2949. cancelFn();
  2950. }
  2951. };
  2952. /**
  2953. * Creates the keyboard event handler for the current graph and history.
  2954. */
  2955. EditorUi.prototype.createOutline = function(wnd)
  2956. {
  2957. var outline = new mxOutline(this.editor.graph);
  2958. outline.border = 20;
  2959. mxEvent.addListener(window, 'resize', function()
  2960. {
  2961. outline.update();
  2962. });
  2963. this.addListener('pageFormatChanged', function()
  2964. {
  2965. outline.update();
  2966. });
  2967. return outline;
  2968. };
  2969. /**
  2970. * Creates the keyboard event handler for the current graph and history.
  2971. */
  2972. EditorUi.prototype.createKeyHandler = function(editor)
  2973. {
  2974. var editorUi = this;
  2975. var graph = this.editor.graph;
  2976. var keyHandler = new mxKeyHandler(graph);
  2977. var isEventIgnored = keyHandler.isEventIgnored;
  2978. keyHandler.isEventIgnored = function(evt)
  2979. {
  2980. // Handles undo/redo/ctrl+./,/u via action and allows ctrl+b/i only if editing value is HTML (except for FF and Safari)
  2981. return (!this.isControlDown(evt) || mxEvent.isShiftDown(evt) || (evt.keyCode != 90 && evt.keyCode != 89 &&
  2982. evt.keyCode != 188 && evt.keyCode != 190 && evt.keyCode != 85)) && ((evt.keyCode != 66 && evt.keyCode != 73) ||
  2983. !this.isControlDown(evt) || (this.graph.cellEditor.isContentEditing() && !mxClient.IS_FF && !mxClient.IS_SF)) &&
  2984. isEventIgnored.apply(this, arguments);
  2985. };
  2986. // Ignores graph enabled state but not chromeless state
  2987. keyHandler.isEnabledForEvent = function(evt)
  2988. {
  2989. return (!mxEvent.isConsumed(evt) && this.isGraphEvent(evt) && this.isEnabled());
  2990. };
  2991. // Routes command-key to control-key on Mac
  2992. keyHandler.isControlDown = function(evt)
  2993. {
  2994. return mxEvent.isControlDown(evt) || (mxClient.IS_MAC && evt.metaKey);
  2995. };
  2996. var queue = [];
  2997. var thread = null;
  2998. // Helper function to move cells with the cursor keys
  2999. function nudge(keyCode, stepSize, resize)
  3000. {
  3001. queue.push(function()
  3002. {
  3003. if (!graph.isSelectionEmpty() && graph.isEnabled())
  3004. {
  3005. stepSize = (stepSize != null) ? stepSize : 1;
  3006. if (resize)
  3007. {
  3008. // Resizes all selected vertices
  3009. graph.getModel().beginUpdate();
  3010. try
  3011. {
  3012. var cells = graph.getSelectionCells();
  3013. for (var i = 0; i < cells.length; i++)
  3014. {
  3015. if (graph.getModel().isVertex(cells[i]) && graph.isCellResizable(cells[i]))
  3016. {
  3017. var geo = graph.getCellGeometry(cells[i]);
  3018. if (geo != null)
  3019. {
  3020. geo = geo.clone();
  3021. if (keyCode == 37)
  3022. {
  3023. geo.width = Math.max(0, geo.width - stepSize);
  3024. }
  3025. else if (keyCode == 38)
  3026. {
  3027. geo.height = Math.max(0, geo.height - stepSize);
  3028. }
  3029. else if (keyCode == 39)
  3030. {
  3031. geo.width += stepSize;
  3032. }
  3033. else if (keyCode == 40)
  3034. {
  3035. geo.height += stepSize;
  3036. }
  3037. graph.getModel().setGeometry(cells[i], geo);
  3038. }
  3039. }
  3040. }
  3041. }
  3042. finally
  3043. {
  3044. graph.getModel().endUpdate();
  3045. }
  3046. }
  3047. else
  3048. {
  3049. // Moves vertices up/down in a stack layout
  3050. var cell = graph.getSelectionCell();
  3051. var parent = graph.model.getParent(cell);
  3052. var layout = null;
  3053. if (graph.getSelectionCount() == 1 && graph.model.isVertex(cell) &&
  3054. graph.layoutManager != null && !graph.isCellLocked(cell))
  3055. {
  3056. layout = graph.layoutManager.getLayout(parent);
  3057. }
  3058. if (layout != null && layout.constructor == mxStackLayout)
  3059. {
  3060. var index = parent.getIndex(cell);
  3061. if (keyCode == 37 || keyCode == 38)
  3062. {
  3063. graph.model.add(parent, cell, Math.max(0, index - 1));
  3064. }
  3065. else if (keyCode == 39 ||keyCode == 40)
  3066. {
  3067. graph.model.add(parent, cell, Math.min(graph.model.getChildCount(parent), index + 1));
  3068. }
  3069. }
  3070. else
  3071. {
  3072. var dx = 0;
  3073. var dy = 0;
  3074. if (keyCode == 37)
  3075. {
  3076. dx = -stepSize;
  3077. }
  3078. else if (keyCode == 38)
  3079. {
  3080. dy = -stepSize;
  3081. }
  3082. else if (keyCode == 39)
  3083. {
  3084. dx = stepSize;
  3085. }
  3086. else if (keyCode == 40)
  3087. {
  3088. dy = stepSize;
  3089. }
  3090. graph.moveCells(graph.getMovableCells(graph.getSelectionCells()), dx, dy);
  3091. }
  3092. }
  3093. }
  3094. });
  3095. if (thread != null)
  3096. {
  3097. window.clearTimeout(thread);
  3098. }
  3099. thread = window.setTimeout(function()
  3100. {
  3101. if (queue.length > 0)
  3102. {
  3103. graph.getModel().beginUpdate();
  3104. try
  3105. {
  3106. for (var i = 0; i < queue.length; i++)
  3107. {
  3108. queue[i]();
  3109. }
  3110. queue = [];
  3111. }
  3112. finally
  3113. {
  3114. graph.getModel().endUpdate();
  3115. }
  3116. graph.scrollCellToVisible(graph.getSelectionCell());
  3117. }
  3118. }, 200);
  3119. };
  3120. // Overridden to handle special alt+shift+cursor keyboard shortcuts
  3121. var directions = {37: mxConstants.DIRECTION_WEST, 38: mxConstants.DIRECTION_NORTH,
  3122. 39: mxConstants.DIRECTION_EAST, 40: mxConstants.DIRECTION_SOUTH};
  3123. var keyHandlerGetFunction = keyHandler.getFunction;
  3124. // Alt+Shift+Keycode mapping to action
  3125. var altShiftActions = {67: this.actions.get('clearWaypoints')}; // Alt+Shift+C
  3126. mxKeyHandler.prototype.getFunction = function(evt)
  3127. {
  3128. if (graph.isEnabled())
  3129. {
  3130. // TODO: Add alt modified state in core API, here are some specific cases
  3131. if (!graph.isSelectionEmpty() && mxEvent.isShiftDown(evt) && mxEvent.isAltDown(evt))
  3132. {
  3133. var action = altShiftActions[evt.keyCode];
  3134. if (action != null)
  3135. {
  3136. return action.funct;
  3137. }
  3138. }
  3139. if (evt.keyCode == 9 && mxEvent.isAltDown(evt))
  3140. {
  3141. if (mxEvent.isShiftDown(evt))
  3142. {
  3143. // Alt+Shift+Tab
  3144. return function()
  3145. {
  3146. graph.selectParentCell();
  3147. };
  3148. }
  3149. else
  3150. {
  3151. // Alt+Tab
  3152. return function()
  3153. {
  3154. graph.selectChildCell();
  3155. };
  3156. }
  3157. }
  3158. else if (directions[evt.keyCode] != null && !graph.isSelectionEmpty())
  3159. {
  3160. if (mxEvent.isShiftDown(evt) && mxEvent.isAltDown(evt))
  3161. {
  3162. if (graph.model.isVertex(graph.getSelectionCell()))
  3163. {
  3164. return function()
  3165. {
  3166. var cells = graph.connectVertex(graph.getSelectionCell(), directions[evt.keyCode],
  3167. graph.defaultEdgeLength, evt, true);
  3168. if (cells != null && cells.length > 0)
  3169. {
  3170. if (cells.length == 1 && graph.model.isEdge(cells[0]))
  3171. {
  3172. graph.setSelectionCell(graph.model.getTerminal(cells[0], false));
  3173. }
  3174. else
  3175. {
  3176. graph.setSelectionCell(cells[cells.length - 1]);
  3177. }
  3178. if (editorUi.hoverIcons != null)
  3179. {
  3180. editorUi.hoverIcons.update(graph.view.getState(graph.getSelectionCell()));
  3181. }
  3182. }
  3183. };
  3184. }
  3185. }
  3186. else
  3187. {
  3188. // Avoids consuming event if no vertex is selected by returning null below
  3189. // Cursor keys move and resize (ctrl) cells
  3190. if (this.isControlDown(evt))
  3191. {
  3192. return function()
  3193. {
  3194. nudge(evt.keyCode, (mxEvent.isShiftDown(evt)) ? graph.gridSize : null, true);
  3195. };
  3196. }
  3197. else
  3198. {
  3199. return function()
  3200. {
  3201. nudge(evt.keyCode, (mxEvent.isShiftDown(evt)) ? graph.gridSize : null);
  3202. };
  3203. }
  3204. }
  3205. }
  3206. }
  3207. return keyHandlerGetFunction.apply(this, arguments);
  3208. };
  3209. // Binds keystrokes to actions
  3210. keyHandler.bindAction = mxUtils.bind(this, function(code, control, key, shift)
  3211. {
  3212. var action = this.actions.get(key);
  3213. if (action != null)
  3214. {
  3215. var f = function()
  3216. {
  3217. if (action.isEnabled())
  3218. {
  3219. action.funct();
  3220. }
  3221. };
  3222. if (control)
  3223. {
  3224. if (shift)
  3225. {
  3226. keyHandler.bindControlShiftKey(code, f);
  3227. }
  3228. else
  3229. {
  3230. keyHandler.bindControlKey(code, f);
  3231. }
  3232. }
  3233. else
  3234. {
  3235. if (shift)
  3236. {
  3237. keyHandler.bindShiftKey(code, f);
  3238. }
  3239. else
  3240. {
  3241. keyHandler.bindKey(code, f);
  3242. }
  3243. }
  3244. }
  3245. });
  3246. var ui = this;
  3247. var keyHandlerEscape = keyHandler.escape;
  3248. keyHandler.escape = function(evt)
  3249. {
  3250. keyHandlerEscape.apply(this, arguments);
  3251. };
  3252. // Ignores enter keystroke. Remove this line if you want the
  3253. // enter keystroke to stop editing. N, W, T are reserved.
  3254. keyHandler.enter = function() {};
  3255. keyHandler.bindControlShiftKey(36, function() { graph.exitGroup(); }); // Ctrl+Shift+Home
  3256. keyHandler.bindControlShiftKey(35, function() { graph.enterGroup(); }); // Ctrl+Shift+End
  3257. keyHandler.bindKey(36, function() { graph.home(); }); // Home
  3258. keyHandler.bindKey(35, function() { graph.refresh(); }); // End
  3259. keyHandler.bindAction(107, true, 'zoomIn'); // Ctrl+Plus
  3260. keyHandler.bindAction(109, true, 'zoomOut'); // Ctrl+Minus
  3261. keyHandler.bindAction(80, true, 'print'); // Ctrl+P
  3262. keyHandler.bindAction(79, true, 'outline', true); // Ctrl+Shift+O
  3263. keyHandler.bindAction(112, false, 'about'); // F1
  3264. if (!this.editor.chromeless)
  3265. {
  3266. keyHandler.bindControlKey(36, function() { if (graph.isEnabled()) { graph.foldCells(true); }}); // Ctrl+Home
  3267. keyHandler.bindControlKey(35, function() { if (graph.isEnabled()) { graph.foldCells(false); }}); // Ctrl+End
  3268. keyHandler.bindControlKey(13, function() { if (graph.isEnabled()) { graph.setSelectionCells(graph.duplicateCells(graph.getSelectionCells(), false)); }}); // Ctrl+Enter
  3269. keyHandler.bindAction(8, false, 'delete'); // Backspace
  3270. keyHandler.bindAction(8, true, 'deleteAll'); // Backspace
  3271. keyHandler.bindAction(46, false, 'delete'); // Delete
  3272. keyHandler.bindAction(46, true, 'deleteAll'); // Ctrl+Delete
  3273. keyHandler.bindAction(72, true, 'resetView'); // Ctrl+H
  3274. keyHandler.bindAction(72, true, 'fitWindow', true); // Ctrl+Shift+H
  3275. keyHandler.bindAction(74, true, 'fitPage'); // Ctrl+J
  3276. keyHandler.bindAction(74, true, 'fitTwoPages', true); // Ctrl+Shift+J
  3277. keyHandler.bindAction(48, true, 'customZoom'); // Ctrl+0
  3278. keyHandler.bindAction(82, true, 'turn'); // Ctrl+R
  3279. keyHandler.bindAction(82, true, 'clearDefaultStyle', true); // Ctrl+Shift+R
  3280. keyHandler.bindAction(83, true, 'save'); // Ctrl+S
  3281. keyHandler.bindAction(83, true, 'saveAs', true); // Ctrl+Shift+S
  3282. keyHandler.bindAction(65, true, 'selectAll'); // Ctrl+A
  3283. keyHandler.bindAction(65, true, 'selectNone', true); // Ctrl+A
  3284. keyHandler.bindAction(73, true, 'selectVertices', true); // Ctrl+Shift+I
  3285. keyHandler.bindAction(69, true, 'selectEdges', true); // Ctrl+Shift+E
  3286. keyHandler.bindAction(69, true, 'editStyle'); // Ctrl+E
  3287. keyHandler.bindAction(66, true, 'bold'); // Ctrl+B
  3288. keyHandler.bindAction(66, true, 'toBack', true); // Ctrl+Shift+B
  3289. keyHandler.bindAction(70, true, 'toFront', true); // Ctrl+Shift+F
  3290. keyHandler.bindAction(68, true, 'duplicate'); // Ctrl+D
  3291. keyHandler.bindAction(68, true, 'setAsDefaultStyle', true); // Ctrl+Shift+D
  3292. keyHandler.bindAction(90, true, 'undo'); // Ctrl+Z
  3293. keyHandler.bindAction(89, true, 'autosize', true); // Ctrl+Shift+Y
  3294. keyHandler.bindAction(88, true, 'cut'); // Ctrl+X
  3295. keyHandler.bindAction(67, true, 'copy'); // Ctrl+C
  3296. keyHandler.bindAction(81, true, 'connectionArrows'); // Ctrl+Q
  3297. keyHandler.bindAction(81, true, 'connectionPoints', true); // Ctrl+Shift+Q
  3298. keyHandler.bindAction(86, true, 'paste'); // Ctrl+V
  3299. keyHandler.bindAction(71, true, 'group'); // Ctrl+G
  3300. keyHandler.bindAction(77, true, 'editData'); // Ctrl+M
  3301. keyHandler.bindAction(71, true, 'grid', true); // Ctrl+Shift+G
  3302. keyHandler.bindAction(73, true, 'italic'); // Ctrl+I
  3303. keyHandler.bindAction(76, true, 'lockUnlock'); // Ctrl+L
  3304. keyHandler.bindAction(76, true, 'layers', true); // Ctrl+Shift+L
  3305. keyHandler.bindAction(80, true, 'formatPanel', true); // Ctrl+Shift+P
  3306. keyHandler.bindAction(85, true, 'underline'); // Ctrl+U
  3307. keyHandler.bindAction(85, true, 'ungroup', true); // Ctrl+Shift+U
  3308. keyHandler.bindAction(190, true, 'superscript'); // Ctrl+.
  3309. keyHandler.bindAction(188, true, 'subscript'); // Ctrl+,
  3310. keyHandler.bindKey(13, function() { if (graph.isEnabled()) { graph.startEditingAtCell(); }}); // Enter
  3311. keyHandler.bindKey(113, function() { if (graph.isEnabled()) { graph.startEditingAtCell(); }}); // F2
  3312. }
  3313. if (!mxClient.IS_WIN)
  3314. {
  3315. keyHandler.bindAction(90, true, 'redo', true); // Ctrl+Shift+Z
  3316. }
  3317. else
  3318. {
  3319. keyHandler.bindAction(89, true, 'redo'); // Ctrl+Y
  3320. }
  3321. return keyHandler;
  3322. };
  3323. /**
  3324. * Creates the keyboard event handler for the current graph and history.
  3325. */
  3326. EditorUi.prototype.destroy = function()
  3327. {
  3328. if (this.editor != null)
  3329. {
  3330. this.editor.destroy();
  3331. this.editor = null;
  3332. }
  3333. if (this.menubar != null)
  3334. {
  3335. this.menubar.destroy();
  3336. this.menubar = null;
  3337. }
  3338. if (this.toolbar != null)
  3339. {
  3340. this.toolbar.destroy();
  3341. this.toolbar = null;
  3342. }
  3343. if (this.sidebar != null)
  3344. {
  3345. this.sidebar.destroy();
  3346. this.sidebar = null;
  3347. }
  3348. if (this.keyHandler != null)
  3349. {
  3350. this.keyHandler.destroy();
  3351. this.keyHandler = null;
  3352. }
  3353. if (this.keydownHandler != null)
  3354. {
  3355. mxEvent.removeListener(document, 'keydown', this.keydownHandler);
  3356. this.keydownHandler = null;
  3357. }
  3358. if (this.keyupHandler != null)
  3359. {
  3360. mxEvent.removeListener(document, 'keyup', this.keyupHandler);
  3361. this.keyupHandler = null;
  3362. }
  3363. if (this.resizeHandler != null)
  3364. {
  3365. mxEvent.removeListener(window, 'resize', this.resizeHandler);
  3366. this.resizeHandler = null;
  3367. }
  3368. if (this.gestureHandler != null)
  3369. {
  3370. mxEvent.removeGestureListeners(document, this.gestureHandler);
  3371. this.gestureHandler = null;
  3372. }
  3373. if (this.orientationChangeHandler != null)
  3374. {
  3375. mxEvent.removeListener(window, 'orientationchange', this.orientationChangeHandler);
  3376. this.orientationChangeHandler = null;
  3377. }
  3378. if (this.scrollHandler != null)
  3379. {
  3380. mxEvent.removeListener(window, 'scroll', this.scrollHandler);
  3381. this.scrollHandler = null;
  3382. }
  3383. if (this.destroyFunctions != null)
  3384. {
  3385. for (var i = 0; i < this.destroyFunctions.length; i++)
  3386. {
  3387. this.destroyFunctions[i]();
  3388. }
  3389. this.destroyFunctions = null;
  3390. }
  3391. var c = [this.menubarContainer, this.toolbarContainer, this.sidebarContainer,
  3392. this.formatContainer, this.diagramContainer, this.footerContainer,
  3393. this.chromelessToolbar, this.hsplit, this.sidebarFooterContainer,
  3394. this.layersDialog];
  3395. for (var i = 0; i < c.length; i++)
  3396. {
  3397. if (c[i] != null && c[i].parentNode != null)
  3398. {
  3399. c[i].parentNode.removeChild(c[i]);
  3400. }
  3401. }
  3402. };