123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183 |
- /**
- * Copyright (c) 2006-2012, JGraph Ltd
- */
- /**
- * Constructs a new dialog.
- */
- function Dialog(editorUi, elt, w, h, modal, closable, onClose)
- {
- var dx = 0;
-
- if (mxClient.IS_VML && (document.documentMode == null || document.documentMode < 8))
- {
- // Adds padding as a workaround for box model in older IE versions
- // This needs to match the total padding of geDialog in CSS
- dx = 80;
- }
- w += dx;
- h += dx;
-
- var left = Math.max(0, Math.round((document.body.scrollWidth - w) / 2));
- var top = Math.max(0, Math.round((Math.max(document.body.scrollHeight, document.documentElement.scrollHeight) - h - editorUi.footerHeight) / 3));
-
- // Increments zIndex to put subdialogs and background over existing dialogs and background
- if (editorUi.dialogs.length > 0)
- {
- this.zIndex += editorUi.dialogs.length * 2;
- }
-
- var div = editorUi.createDiv('geDialog');
- div.style.width = w + 'px';
- div.style.height = h + 'px';
- div.style.left = left + 'px';
- div.style.top = top + 'px';
- div.style.zIndex = this.zIndex;
-
- if (this.bg == null)
- {
- this.bg = editorUi.createDiv('background');
- this.bg.style.position = 'absolute';
- this.bg.style.background = 'white';
- this.bg.style.left = '0px';
- this.bg.style.top = '0px';
- this.bg.style.bottom = '0px';
- this.bg.style.right = '0px';
- this.bg.style.zIndex = this.zIndex - 2;
-
- mxUtils.setOpacity(this.bg, this.bgOpacity);
-
- if (mxClient.IS_QUIRKS)
- {
- new mxDivResizer(this.bg);
- }
- }
- if (modal)
- {
- document.body.appendChild(this.bg);
- }
-
- div.appendChild(elt);
- document.body.appendChild(div);
-
- if (closable)
- {
- var img = document.createElement('img');
- img.setAttribute('src', Dialog.prototype.closeImage);
- img.setAttribute('title', mxResources.get('close'));
- img.className = 'geDialogClose';
- img.style.top = (top + 14) + 'px';
- img.style.left = (left + w + 38 - dx) + 'px';
- img.style.zIndex = this.zIndex;
-
- mxEvent.addListener(img, 'click', mxUtils.bind(this, function()
- {
- editorUi.hideDialog(true);
- }));
-
- document.body.appendChild(img);
- this.dialogImg = img;
-
- mxEvent.addListener(this.bg, 'click', mxUtils.bind(this, function()
- {
- editorUi.hideDialog(true);
- }));
- }
-
- this.onDialogClose = onClose;
- this.container = div;
-
- editorUi.editor.fireEvent(new mxEventObject('showDialog'));
- };
- /**
- *
- */
- Dialog.prototype.zIndex = mxPopupMenu.prototype.zIndex - 1;
- /**
- *
- */
- Dialog.prototype.noColorImage = (!mxClient.IS_SVG) ? IMAGE_PATH + '/nocolor.png' : 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkEzRDlBMUUwODYxMTExRTFCMzA4RDdDMjJBMEMxRDM3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkEzRDlBMUUxODYxMTExRTFCMzA4RDdDMjJBMEMxRDM3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QTNEOUExREU4NjExMTFFMUIzMDhEN0MyMkEwQzFEMzciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QTNEOUExREY4NjExMTFFMUIzMDhEN0MyMkEwQzFEMzciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5xh3fmAAAABlBMVEX////MzMw46qqDAAAAGElEQVR42mJggAJGKGAYIIGBth8KAAIMAEUQAIElnLuQAAAAAElFTkSuQmCC';
- /**
- *
- */
- Dialog.prototype.closeImage = (!mxClient.IS_SVG) ? IMAGE_PATH + '/close.png' : 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAQMAAADaX5RTAAAABlBMVEV7mr3///+wksspAAAAAnRSTlP/AOW3MEoAAAAdSURBVAgdY9jXwCDDwNDRwHCwgeExmASygSL7GgB12QiqNHZZIwAAAABJRU5ErkJggg==';
- /**
- *
- */
- Dialog.prototype.clearImage = (!mxClient.IS_SVG) ? IMAGE_PATH + '/clear.gif' : 'data:image/gif;base64,R0lGODlhDQAKAIABAMDAwP///yH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4wLWMwNjAgNjEuMTM0Nzc3LCAyMDEwLzAyLzEyLTE3OjMyOjAwICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUIzOEM1NzI4NjEyMTFFMUEzMkNDMUE3NjZERDE2QjIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUIzOEM1NzM4NjEyMTFFMUEzMkNDMUE3NjZERDE2QjIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5QjM4QzU3MDg2MTIxMUUxQTMyQ0MxQTc2NkREMTZCMiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5QjM4QzU3MTg2MTIxMUUxQTMyQ0MxQTc2NkREMTZCMiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAEAAAEALAAAAAANAAoAAAIXTGCJebD9jEOTqRlttXdrB32PJ2ncyRQAOw==';
- /**
- *
- */
- Dialog.prototype.lockedImage = (!mxClient.IS_SVG) ? IMAGE_PATH + '/locked.png' : 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAMAAABhq6zVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzdDMDZCODExNzIxMTFFNUI0RTk5NTg4OTcyMUUyODEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzdDMDZCODIxNzIxMTFFNUI0RTk5NTg4OTcyMUUyODEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozN0MwNkI3RjE3MjExMUU1QjRFOTk1ODg5NzIxRTI4MSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozN0MwNkI4MDE3MjExMUU1QjRFOTk1ODg5NzIxRTI4MSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PvqMCFYAAAAVUExURZmZmb+/v7KysqysrMzMzLGxsf///4g8N1cAAAAHdFJOU////////wAaSwNGAAAAPElEQVR42lTMQQ4AIQgEwUa0//9kTQirOweYOgDqAMbZUr10AGlAwx4/BJ2QJ4U0L5brYjovvpv32xZgAHZaATFtMbu4AAAAAElFTkSuQmCC';
- /**
- *
- */
- Dialog.prototype.unlockedImage = (!mxClient.IS_SVG) ? IMAGE_PATH + '/unlocked.png' : 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAMAAABhq6zVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzdDMDZCN0QxNzIxMTFFNUI0RTk5NTg4OTcyMUUyODEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzdDMDZCN0UxNzIxMTFFNUI0RTk5NTg4OTcyMUUyODEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozN0MwNkI3QjE3MjExMUU1QjRFOTk1ODg5NzIxRTI4MSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozN0MwNkI3QzE3MjExMUU1QjRFOTk1ODg5NzIxRTI4MSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PkKMpVwAAAAYUExURZmZmbKysr+/v6ysrOXl5czMzLGxsf///zHN5lwAAAAIdFJOU/////////8A3oO9WQAAADxJREFUeNpUzFESACAEBNBVsfe/cZJU+8Mzs8CIABCidtfGOndnYsT40HDSiCcbPdoJo10o9aI677cpwACRoAF3dFNlswAAAABJRU5ErkJggg==';
- /**
- * Removes the dialog from the DOM.
- */
- Dialog.prototype.bgOpacity = 80;
- /**
- * Removes the dialog from the DOM.
- */
- Dialog.prototype.close = function(cancel)
- {
- if (this.onDialogClose != null)
- {
- this.onDialogClose(cancel);
- this.onDialogClose = null;
- }
-
- if (this.dialogImg != null)
- {
- this.dialogImg.parentNode.removeChild(this.dialogImg);
- this.dialogImg = null;
- }
-
- if (this.bg != null && this.bg.parentNode != null)
- {
- this.bg.parentNode.removeChild(this.bg);
- }
-
- this.container.parentNode.removeChild(this.container);
- };
- /**
- * Constructs a new open dialog.
- */
- var OpenDialog = function()
- {
- var iframe = document.createElement('iframe');
- iframe.style.backgroundColor = 'transparent';
- iframe.allowTransparency = 'true';
- iframe.style.borderStyle = 'none';
- iframe.style.borderWidth = '0px';
- iframe.style.overflow = 'hidden';
- iframe.frameBorder = '0';
-
- // Adds padding as a workaround for box model in older IE versions
- var dx = (mxClient.IS_VML && (document.documentMode == null || document.documentMode < 8)) ? 20 : 0;
-
- iframe.setAttribute('width', (((Editor.useLocalStorage) ? 640 : 320) + dx) + 'px');
- iframe.setAttribute('height', (((Editor.useLocalStorage) ? 480 : 220) + dx) + 'px');
- iframe.setAttribute('src', OPEN_FORM);
-
- this.container = iframe;
- };
- /**
- * Constructs a new color dialog.
- */
- var ColorDialog = function(editorUi, color, apply, cancelFn)
- {
- this.editorUi = editorUi;
-
- var input = document.createElement('input');
- input.style.marginBottom = '10px';
- input.style.width = '216px';
-
- // Required for picker to render in IE
- if (mxClient.IS_IE)
- {
- input.style.marginTop = '10px';
- document.body.appendChild(input);
- }
-
- this.init = function()
- {
- if (!mxClient.IS_TOUCH)
- {
- input.focus();
- }
- };
- var picker = new jscolor.color(input);
- picker.pickerOnfocus = false;
- picker.showPicker();
- var div = document.createElement('div');
- jscolor.picker.box.style.position = 'relative';
- jscolor.picker.box.style.width = '230px';
- jscolor.picker.box.style.height = '100px';
- jscolor.picker.box.style.paddingBottom = '10px';
- div.appendChild(jscolor.picker.box);
- var center = document.createElement('center');
-
- function addPresets(presets, rowLength, defaultColor)
- {
- rowLength = (rowLength != null) ? rowLength : 12;
- var table = document.createElement('table');
- table.style.borderCollapse = 'collapse';
- table.setAttribute('cellspacing', '0');
- table.style.marginBottom = '20px';
- table.style.cellSpacing = '0px';
- var tbody = document.createElement('tbody');
- table.appendChild(tbody);
- var rows = presets.length / rowLength;
-
- for (var row = 0; row < rows; row++)
- {
- var tr = document.createElement('tr');
-
- for (var i = 0; i < rowLength; i++)
- {
- (function(clr)
- {
- var td = document.createElement('td');
- td.style.border = '1px solid black';
- td.style.padding = '0px';
- td.style.width = '16px';
- td.style.height = '16px';
-
- if (clr == null)
- {
- clr = defaultColor;
- }
-
- if (clr == 'none')
- {
- td.style.background = 'url(\'' + Dialog.prototype.noColorImage + '\')';
- }
- else
- {
- td.style.backgroundColor = '#' + clr;
- }
-
- tr.appendChild(td);
- if (clr != null)
- {
- td.style.cursor = 'pointer';
-
- mxEvent.addListener(td, 'click', function()
- {
- if (clr == 'none')
- {
- picker.fromString('ffffff');
- input.value = 'none';
- }
- else
- {
- picker.fromString(clr);
- }
- });
- }
- })(presets[row * rowLength + i]);
- }
-
- tbody.appendChild(tr);
- }
-
- center.appendChild(table);
-
- return table;
- };
- div.appendChild(input);
- mxUtils.br(div);
-
- // Adds recent colors
- var table = addPresets((ColorDialog.recentColors.length == 0) ? ['FFFFFF'] : ColorDialog.recentColors, 12, 'FFFFFF');
- table.style.marginBottom = '8px';
-
- // Adds presets
- var table = addPresets(['E6D0DE', 'CDA2BE', 'B5739D', 'E1D5E7', 'C3ABD0', 'A680B8', 'D4E1F5', 'A9C4EB', '7EA6E0', 'D5E8D4', '9AC7BF', '67AB9F', 'D5E8D4', 'B9E0A5', '97D077', 'FFF2CC', 'FFE599', 'FFD966', 'FFF4C3', 'FFCE9F', 'FFB570', 'F8CECC', 'F19C99', 'EA6B66'], 12);
- table.style.marginBottom = '8px';
- table = addPresets(['none', 'FFFFFF', 'E6E6E6', 'CCCCCC', 'B3B3B3', '999999', '808080', '666666', '4D4D4D', '333333', '1A1A1A', '000000', 'FFCCCC', 'FFE6CC', 'FFFFCC', 'E6FFCC', 'CCFFCC', 'CCFFE6', 'CCFFFF', 'CCE5FF', 'CCCCFF', 'E5CCFF', 'FFCCFF', 'FFCCE6', 'FF9999', 'FFCC99', 'FFFF99', 'CCFF99', '99FF99', '99FFCC', '99FFFF', '99CCFF', '9999FF', 'CC99FF', 'FF99FF', 'FF99CC', 'FF6666', 'FFB366', 'FFFF66', 'B3FF66', '66FF66', '66FFB3', '66FFFF', '66B2FF', '6666FF', 'B266FF', 'FF66FF', 'FF66B3', 'FF3333', 'FF9933', 'FFFF33', '99FF33', '33FF33', '33FF99', '33FFFF', '3399FF', '3333FF', '9933FF', 'FF33FF', 'FF3399', 'FF0000', 'FF8000', 'FFFF00', '80FF00', '00FF00', '00FF80', '00FFFF', '007FFF', '0000FF', '7F00FF', 'FF00FF', 'FF0080', 'CC0000', 'CC6600', 'CCCC00', '66CC00', '00CC00', '00CC66', '00CCCC', '0066CC', '0000CC', '6600CC', 'CC00CC', 'CC0066', '990000', '994C00', '999900', '4D9900', '009900', '00994D', '009999', '004C99', '000099', '4C0099', '990099', '99004D', '660000', '663300', '666600', '336600', '006600', '006633', '006666', '003366', '000066', '330066', '660066', '660033', '330000', '331A00', '333300', '1A3300', '003300', '00331A', '003333', '001933', '000033', '190033', '330033', '33001A']);
- table.style.marginBottom = '16px';
- div.appendChild(center);
- var buttons = document.createElement('div');
- buttons.style.textAlign = 'right';
- buttons.style.whiteSpace = 'nowrap';
-
- var cancelBtn = mxUtils.button(mxResources.get('cancel'), function()
- {
- editorUi.hideDialog();
-
- if (cancelFn != null)
- {
- cancelFn();
- }
- });
- cancelBtn.className = 'geBtn';
- if (editorUi.editor.cancelFirst)
- {
- buttons.appendChild(cancelBtn);
- }
-
- var applyFunction = (apply != null) ? apply : this.createApplyFunction();
-
- var applyBtn = mxUtils.button(mxResources.get('apply'), function()
- {
- var color = input.value;
- ColorDialog.addRecentColor(color, 12);
-
- if (color != 'none' && color.charAt(0) != '#')
- {
- color = '#' + color;
- }
- applyFunction(color);
- editorUi.hideDialog();
- });
- applyBtn.className = 'geBtn gePrimaryBtn';
- buttons.appendChild(applyBtn);
-
- if (!editorUi.editor.cancelFirst)
- {
- buttons.appendChild(cancelBtn);
- }
-
- if (color != null)
- {
- if (color == 'none')
- {
- picker.fromString('ffffff');
- input.value = 'none';
- }
- else
- {
- picker.fromString(color);
- }
- }
-
- div.appendChild(buttons);
- this.picker = picker;
- this.colorInput = input;
- // LATER: Only fires if input if focused, should always
- // fire if this dialog is showing.
- mxEvent.addListener(div, 'keydown', function(e)
- {
- if (e.keyCode == 27)
- {
- editorUi.hideDialog();
-
- if (cancelFn != null)
- {
- cancelFn();
- }
-
- mxEvent.consume(e);
- }
- });
-
- this.container = div;
- };
- /* Creates function to apply value */
- ColorDialog.prototype.createApplyFunction = function()
- {
- return mxUtils.bind(this, function(color)
- {
- var graph = this.editorUi.editor.graph;
-
- graph.getModel().beginUpdate();
- try
- {
- graph.setCellStyles(this.currentColorKey, color);
- this.editorUi.fireEvent(new mxEventObject('styleChanged', 'keys', [this.currentColorKey],
- 'values', [color], 'cells', graph.getSelectionCells()));
- }
- finally
- {
- graph.getModel().endUpdate();
- }
- });
- };
- /**
- *
- */
- ColorDialog.recentColors = [];
- /**
- * Adds recent color for later use.
- */
- ColorDialog.addRecentColor = function(color, max)
- {
- if (color != null)
- {
- mxUtils.remove(color, ColorDialog.recentColors);
- ColorDialog.recentColors.splice(0, 0, color);
-
- if (ColorDialog.recentColors.length > max)
- {
- ColorDialog.recentColors.pop();
- }
- }
- };
- /**
- * Constructs a new about dialog.
- */
- var AboutDialog = function(editorUi)
- {
- var div = document.createElement('div');
- div.setAttribute('align', 'center');
- var h3 = document.createElement('h3');
- mxUtils.write(h3, mxResources.get('about') + ' GraphEditor');
- div.appendChild(h3);
- var img = document.createElement('img');
- img.style.border = '0px';
- img.setAttribute('width', '176');
- img.setAttribute('width', '151');
- img.setAttribute('src', IMAGE_PATH + '/logo.png');
- div.appendChild(img);
- mxUtils.br(div);
- mxUtils.write(div, 'Powered by mxGraph ' + mxClient.VERSION);
- mxUtils.br(div);
- var link = document.createElement('a');
- link.setAttribute('href', 'http://www.jgraph.com/');
- link.setAttribute('target', '_blank');
- mxUtils.write(link, 'www.jgraph.com');
- div.appendChild(link);
- mxUtils.br(div);
- mxUtils.br(div);
- var closeBtn = mxUtils.button(mxResources.get('close'), function()
- {
- editorUi.hideDialog();
- });
- closeBtn.className = 'geBtn gePrimaryBtn';
- div.appendChild(closeBtn);
-
- this.container = div;
- };
- /**
- * Constructs a new page setup dialog.
- */
- var PageSetupDialog = function(editorUi)
- {
- var graph = editorUi.editor.graph;
- var row, td;
- var table = document.createElement('table');
- table.style.width = '100%';
- table.style.height = '100%';
- var tbody = document.createElement('tbody');
-
- row = document.createElement('tr');
-
- td = document.createElement('td');
- td.style.fontSize = '10pt';
- mxUtils.write(td, mxResources.get('paperSize') + ':');
-
- row.appendChild(td);
- var portraitCheckBox = document.createElement('input');
- portraitCheckBox.setAttribute('name', 'format');
- portraitCheckBox.setAttribute('type', 'radio');
- portraitCheckBox.setAttribute('value', 'portrait');
-
- var landscapeCheckBox = document.createElement('input');
- landscapeCheckBox.setAttribute('name', 'format');
- landscapeCheckBox.setAttribute('type', 'radio');
- landscapeCheckBox.setAttribute('value', 'landscape');
-
- var formatRow = document.createElement('tr');
- formatRow.style.display = 'none';
-
- var customRow = document.createElement('tr');
- customRow.style.display = 'none';
-
- // Adds all papersize options
- var paperSizeSelect = document.createElement('select');
- var detected = false;
- var pf = new Object();
- var formats = PageSetupDialog.getFormats();
- for (var i = 0; i < formats.length; i++)
- {
- var f = formats[i];
- pf[f.key] = f;
- var paperSizeOption = document.createElement('option');
- paperSizeOption.setAttribute('value', f.key);
- mxUtils.write(paperSizeOption, f.title);
- paperSizeSelect.appendChild(paperSizeOption);
-
- if (f.format != null)
- {
- if (graph.pageFormat.width == f.format.width && graph.pageFormat.height == f.format.height)
- {
- paperSizeOption.setAttribute('selected', 'selected');
- portraitCheckBox.setAttribute('checked', 'checked');
- portraitCheckBox.defaultChecked = true;
- formatRow.style.display = '';
- detected = true;
- }
- else if (graph.pageFormat.width == f.format.height && graph.pageFormat.height == f.format.width)
- {
- paperSizeOption.setAttribute('selected', 'selected');
- landscapeCheckBox.setAttribute('checked', 'checked');
- portraitCheckBox.defaultChecked = true;
- formatRow.style.display = '';
- detected = true;
- }
- }
- // Selects custom format which is last in list
- else if (!detected)
- {
- paperSizeOption.setAttribute('selected', 'selected');
- customRow.style.display = '';
- }
- }
-
- td = document.createElement('td');
- td.style.fontSize = '10pt';
- td.appendChild(paperSizeSelect);
- row.appendChild(td);
-
- tbody.appendChild(row);
-
- formatRow = document.createElement('tr');
- formatRow.style.height = '40px';
- td = document.createElement('td');
- formatRow.appendChild(td);
- td = document.createElement('td');
- td.style.fontSize = '10pt';
-
- td.appendChild(portraitCheckBox);
- var span = document.createElement('span');
- mxUtils.write(span, ' ' + mxResources.get('portrait'));
- td.appendChild(span);
-
- mxEvent.addListener(span, 'click', function(evt)
- {
- portraitCheckBox.checked = true;
- mxEvent.consume(evt);
- });
-
- landscapeCheckBox.style.marginLeft = '10px';
- td.appendChild(landscapeCheckBox);
-
- var span = document.createElement('span');
- mxUtils.write(span, ' ' + mxResources.get('landscape'));
- td.appendChild(span);
-
- mxEvent.addListener(span, 'click', function(evt)
- {
- landscapeCheckBox.checked = true;
- mxEvent.consume(evt);
- });
- formatRow.appendChild(td);
-
- tbody.appendChild(formatRow);
- row = document.createElement('tr');
-
- td = document.createElement('td');
- customRow.appendChild(td);
- td = document.createElement('td');
- td.style.fontSize = '10pt';
-
- var widthInput = document.createElement('input');
- widthInput.setAttribute('size', '6');
- widthInput.setAttribute('value', graph.pageFormat.width);
- td.appendChild(widthInput);
- mxUtils.write(td, ' x ');
-
- var heightInput = document.createElement('input');
- heightInput.setAttribute('size', '6');
- heightInput.setAttribute('value', graph.pageFormat.height);
- td.appendChild(heightInput);
- mxUtils.write(td, ' pt');
-
- customRow.appendChild(td);
- customRow.style.height = formatRow.style.height;
- tbody.appendChild(customRow);
-
- var updateInputs = function()
- {
- var f = pf[paperSizeSelect.value];
-
- if (f.format != null)
- {
- widthInput.value = f.format.width;
- heightInput.value = f.format.height;
- customRow.style.display = 'none';
- formatRow.style.display = '';
- }
- else
- {
- formatRow.style.display = 'none';
- customRow.style.display = '';
- }
- };
-
- mxEvent.addListener(paperSizeSelect, 'change', updateInputs);
- updateInputs();
-
- row = document.createElement('tr');
-
- td = document.createElement('td');
- mxUtils.write(td, mxResources.get('background') + ':');
-
- row.appendChild(td);
-
- td = document.createElement('td');
- td.style.whiteSpace = 'nowrap';
-
- var backgroundInput = document.createElement('input');
- backgroundInput.setAttribute('type', 'text');
- var backgroundButton = document.createElement('button');
-
- backgroundButton.style.width = '18px';
- backgroundButton.style.height = '18px';
- backgroundButton.style.marginRight = '20px';
- backgroundButton.style.backgroundPosition = 'center center';
- backgroundButton.style.backgroundRepeat = 'no-repeat';
-
- var newBackgroundColor = graph.background;
-
- function updateBackgroundColor()
- {
- if (newBackgroundColor == null || newBackgroundColor == mxConstants.NONE)
- {
- backgroundButton.style.backgroundColor = '';
- backgroundButton.style.backgroundImage = 'url(\'' + Dialog.prototype.noColorImage + '\')';
- }
- else
- {
- backgroundButton.style.backgroundColor = newBackgroundColor;
- backgroundButton.style.backgroundImage = '';
- }
- };
-
- updateBackgroundColor();
- mxEvent.addListener(backgroundButton, 'click', function(evt)
- {
- editorUi.pickColor(newBackgroundColor || 'none', function(color)
- {
- newBackgroundColor = color;
- updateBackgroundColor();
- });
- mxEvent.consume(evt);
- });
-
- td.appendChild(backgroundButton);
-
- mxUtils.write(td, mxResources.get('gridSize') + ':');
-
- var gridSizeInput = document.createElement('input');
- gridSizeInput.setAttribute('type', 'number');
- gridSizeInput.setAttribute('min', '0');
- gridSizeInput.style.width = '40px';
- gridSizeInput.style.marginLeft = '6px';
-
- gridSizeInput.value = graph.getGridSize();
- td.appendChild(gridSizeInput);
-
- mxEvent.addListener(gridSizeInput, 'change', function()
- {
- var value = parseInt(gridSizeInput.value);
- gridSizeInput.value = Math.max(1, (isNaN(value)) ? graph.getGridSize() : value);
- });
-
- row.appendChild(td);
- tbody.appendChild(row);
-
- row = document.createElement('tr');
- td = document.createElement('td');
-
- mxUtils.write(td, mxResources.get('image') + ':');
-
- row.appendChild(td);
- td = document.createElement('td');
-
- var changeImageLink = document.createElement('a');
- changeImageLink.style.textDecoration = 'underline';
- changeImageLink.style.cursor = 'pointer';
- changeImageLink.style.color = '#a0a0a0';
-
- var newBackgroundImage = graph.backgroundImage;
-
- function updateBackgroundImage()
- {
- if (newBackgroundImage == null)
- {
- changeImageLink.removeAttribute('title');
- changeImageLink.style.fontSize = '';
- changeImageLink.innerHTML = mxResources.get('change') + '...';
- }
- else
- {
- changeImageLink.setAttribute('title', newBackgroundImage.src);
- changeImageLink.style.fontSize = '11px';
- changeImageLink.innerHTML = newBackgroundImage.src.substring(0, 42) + '...';
- }
- };
-
- mxEvent.addListener(changeImageLink, 'click', function(evt)
- {
- editorUi.showBackgroundImageDialog(function(image)
- {
- newBackgroundImage = image;
- updateBackgroundImage();
- });
-
- mxEvent.consume(evt);
- });
-
- updateBackgroundImage();
- td.appendChild(changeImageLink);
-
- row.appendChild(td);
- tbody.appendChild(row);
-
- row = document.createElement('tr');
- td = document.createElement('td');
- td.colSpan = 2;
- td.style.paddingTop = '16px';
- td.setAttribute('align', 'right');
- var cancelBtn = mxUtils.button(mxResources.get('cancel'), function()
- {
- editorUi.hideDialog();
- });
- cancelBtn.className = 'geBtn';
-
- if (editorUi.editor.cancelFirst)
- {
- td.appendChild(cancelBtn);
- }
-
- var applyBtn = mxUtils.button(mxResources.get('apply'), function()
- {
- editorUi.hideDialog();
- var ls = landscapeCheckBox.checked;
- var f = pf[paperSizeSelect.value];
- var size = f.format;
-
- if (size == null)
- {
- size = new mxRectangle(0, 0, parseInt(widthInput.value), parseInt(heightInput.value));
- }
-
- if (ls)
- {
- size = new mxRectangle(0, 0, size.height, size.width);
- }
- editorUi.setPageFormat(size);
-
- if (graph.background != newBackgroundColor)
- {
- editorUi.setBackgroundColor(newBackgroundColor);
- }
-
- if (graph.backgroundImage !== newBackgroundImage)
- {
- editorUi.setBackgroundImage(newBackgroundImage);
- }
-
- if (graph.gridSize !== gridSizeInput.value)
- {
- graph.setGridSize(parseInt(gridSizeInput.value));
- }
- });
- applyBtn.className = 'geBtn gePrimaryBtn';
- td.appendChild(applyBtn);
- if (!editorUi.editor.cancelFirst)
- {
- td.appendChild(cancelBtn);
- }
-
- row.appendChild(td);
- tbody.appendChild(row);
-
- table.appendChild(tbody);
- this.container = table;
- };
- /**
- *
- */
- PageSetupDialog.getFormats = function()
- {
- return [{key: 'letter', title: 'US-Letter (8,5" x 11")', format: mxConstants.PAGE_FORMAT_LETTER_PORTRAIT},
- {key: 'legal', title: 'US-Legal (8,5" x 14")', format: new mxRectangle(0, 0, 850, 1400)},
- {key: 'tabloid', title: 'US-Tabloid (279 mm x 432 mm)', format: new mxRectangle(0, 0, 1100, 1700)},
- {key: 'a3', title: 'A3 (297 mm x 420 mm)', format: new mxRectangle(0, 0, 1169, 1652)},
- {key: 'a4', title: 'A4 (210 mm x 297 mm)', format: mxConstants.PAGE_FORMAT_A4_PORTRAIT},
- {key: 'a5', title: 'A5 (148 mm x 210 mm)', format: new mxRectangle(0, 0, 584, 826)},
- {key: 'custom', title: mxResources.get('custom'), format: null}];
- };
- /**
- * Constructs a new print dialog.
- */
- var PrintDialog = function(editorUi)
- {
- this.create(editorUi);
- };
- /**
- * Constructs a new print dialog.
- */
- PrintDialog.prototype.create = function(editorUi)
- {
- var graph = editorUi.editor.graph;
- var row, td;
-
- var table = document.createElement('table');
- table.style.width = '100%';
- table.style.height = '100%';
- var tbody = document.createElement('tbody');
-
- row = document.createElement('tr');
-
- var onePageCheckBox = document.createElement('input');
- onePageCheckBox.setAttribute('type', 'checkbox');
- td = document.createElement('td');
- td.setAttribute('colspan', '2');
- td.style.fontSize = '10pt';
- td.appendChild(onePageCheckBox);
-
- var span = document.createElement('span');
- mxUtils.write(span, ' ' + mxResources.get('fitPage'));
- td.appendChild(span);
-
- mxEvent.addListener(span, 'click', function(evt)
- {
- onePageCheckBox.checked = !onePageCheckBox.checked;
- pageCountCheckBox.checked = !onePageCheckBox.checked;
- mxEvent.consume(evt);
- });
-
- mxEvent.addListener(onePageCheckBox, 'change', function()
- {
- pageCountCheckBox.checked = !onePageCheckBox.checked;
- });
-
- row.appendChild(td);
- tbody.appendChild(row);
- row = row.cloneNode(false);
-
- var pageCountCheckBox = document.createElement('input');
- pageCountCheckBox.setAttribute('type', 'checkbox');
- td = document.createElement('td');
- td.style.fontSize = '10pt';
- td.appendChild(pageCountCheckBox);
-
- var span = document.createElement('span');
- mxUtils.write(span, ' ' + mxResources.get('posterPrint') + ':');
- td.appendChild(span);
-
- mxEvent.addListener(span, 'click', function(evt)
- {
- pageCountCheckBox.checked = !pageCountCheckBox.checked;
- onePageCheckBox.checked = !pageCountCheckBox.checked;
- mxEvent.consume(evt);
- });
-
- row.appendChild(td);
-
- var pageCountInput = document.createElement('input');
- pageCountInput.setAttribute('value', '1');
- pageCountInput.setAttribute('type', 'number');
- pageCountInput.setAttribute('min', '1');
- pageCountInput.setAttribute('size', '4');
- pageCountInput.setAttribute('disabled', 'disabled');
- pageCountInput.style.width = '50px';
- td = document.createElement('td');
- td.style.fontSize = '10pt';
- td.appendChild(pageCountInput);
- mxUtils.write(td, ' ' + mxResources.get('pages') + ' (max)');
- row.appendChild(td);
- tbody.appendChild(row);
- mxEvent.addListener(pageCountCheckBox, 'change', function()
- {
- if (pageCountCheckBox.checked)
- {
- pageCountInput.removeAttribute('disabled');
- }
- else
- {
- pageCountInput.setAttribute('disabled', 'disabled');
- }
- onePageCheckBox.checked = !pageCountCheckBox.checked;
- });
- row = row.cloneNode(false);
-
- td = document.createElement('td');
- mxUtils.write(td, mxResources.get('pageScale') + ':');
- row.appendChild(td);
-
- td = document.createElement('td');
- var pageScaleInput = document.createElement('input');
- pageScaleInput.setAttribute('value', '100 %');
- pageScaleInput.setAttribute('size', '5');
- pageScaleInput.style.width = '50px';
-
- td.appendChild(pageScaleInput);
- row.appendChild(td);
- tbody.appendChild(row);
-
- row = document.createElement('tr');
- td = document.createElement('td');
- td.colSpan = 2;
- td.style.paddingTop = '20px';
- td.setAttribute('align', 'right');
-
- // Overall scale for print-out to account for print borders in dialogs etc
- function preview(print)
- {
- var autoOrigin = onePageCheckBox.checked || pageCountCheckBox.checked;
- var printScale = parseInt(pageScaleInput.value) / 100;
-
- if (isNaN(printScale))
- {
- printScale = 1;
- pageScaleInput.value = '100%';
- }
-
- // Workaround to match available paper size in actual print output
- printScale *= 0.75;
- var pf = graph.pageFormat || mxConstants.PAGE_FORMAT_A4_PORTRAIT;
- var scale = 1 / graph.pageScale;
-
- if (autoOrigin)
- {
- var pageCount = (onePageCheckBox.checked) ? 1 : parseInt(pageCountInput.value);
-
- if (!isNaN(pageCount))
- {
- scale = mxUtils.getScaleForPageCount(pageCount, graph, pf);
- }
- }
- // Negative coordinates are cropped or shifted if page visible
- var gb = graph.getGraphBounds();
- var border = 0;
- var x0 = 0;
- var y0 = 0;
- // Applies print scale
- pf = mxRectangle.fromRectangle(pf);
- pf.width = Math.ceil(pf.width * printScale);
- pf.height = Math.ceil(pf.height * printScale);
- scale *= printScale;
-
- // Starts at first visible page
- if (!autoOrigin && graph.pageVisible)
- {
- var layout = graph.getPageLayout();
- x0 -= layout.x * pf.width;
- y0 -= layout.y * pf.height;
- }
- else
- {
- autoOrigin = true;
- }
-
- return PrintDialog.showPreview(PrintDialog.createPrintPreview(graph, scale, pf, border, x0, y0, autoOrigin, print), print);
- };
-
- var cancelBtn = mxUtils.button(mxResources.get('cancel'), function()
- {
- editorUi.hideDialog();
- });
- cancelBtn.className = 'geBtn';
-
- if (editorUi.editor.cancelFirst)
- {
- td.appendChild(cancelBtn);
- }
-
- if (!mxClient.IS_CHROMEAPP)
- {
- var previewBtn = mxUtils.button(mxResources.get('preview'), function()
- {
- editorUi.hideDialog();
- preview(false);
- });
- previewBtn.className = 'geBtn';
- td.appendChild(previewBtn);
- }
-
- var printBtn = mxUtils.button(mxResources.get((mxClient.IS_CHROMEAPP) ? 'ok' : 'print'), function()
- {
- editorUi.hideDialog();
- preview(true);
- });
- printBtn.className = 'geBtn gePrimaryBtn';
- td.appendChild(printBtn);
-
- if (!editorUi.editor.cancelFirst)
- {
- td.appendChild(cancelBtn);
- }
- row.appendChild(td);
- tbody.appendChild(row);
-
- table.appendChild(tbody);
- this.container = table;
- };
- /**
- * Constructs a new print dialog.
- */
- PrintDialog.showPreview = function(preview, print)
- {
- var result = preview.open();
-
- if (print && result != null)
- {
- var print = function()
- {
- result.focus();
- result.print();
- result.close();
- };
-
- // Workaround for Google Chrome which needs a bit of a
- // delay in order to render the SVG contents
- // Needs testing in production
- if (mxClient.IS_GC)
- {
- window.setTimeout(print, 500);
- }
- else
- {
- print();
- }
- }
-
- return result;
- };
- /**
- * Constructs a new print dialog.
- */
- PrintDialog.createPrintPreview = function(graph, scale, pf, border, x0, y0, autoOrigin)
- {
- var preview = new mxPrintPreview(graph, scale, pf, border, x0, y0);
- preview.title = mxResources.get('preview');
- preview.printBackgroundImage = true;
- preview.autoOrigin = autoOrigin;
- var bg = graph.background;
-
- if (bg == null || bg == '' || bg == mxConstants.NONE)
- {
- bg = '#ffffff';
- }
-
- preview.backgroundColor = bg;
-
- var writeHead = preview.writeHead;
-
- // Adds a border in the preview
- preview.writeHead = function(doc)
- {
- writeHead.apply(this, arguments);
-
- doc.writeln('<style type="text/css">');
- doc.writeln('@media screen {');
- doc.writeln(' body > div { padding:30px;box-sizing:content-box; }');
- doc.writeln('}');
- doc.writeln('</style>');
- };
-
- return preview;
- };
- /**
- * Constructs a new filename dialog.
- */
- var FilenameDialog = function(editorUi, filename, buttonText, fn, label, validateFn, content, helpLink, closeOnBtn)
- {
- closeOnBtn = (closeOnBtn != null) ? closeOnBtn : true;
- var row, td;
-
- var table = document.createElement('table');
- var tbody = document.createElement('tbody');
- table.style.marginTop = '8px';
-
- row = document.createElement('tr');
-
- td = document.createElement('td');
- td.style.fontSize = '10pt';
- td.style.width = '120px';
- mxUtils.write(td, (label || mxResources.get('filename')) + ':');
-
- row.appendChild(td);
-
- var nameInput = document.createElement('input');
- nameInput.setAttribute('value', filename || '');
- nameInput.style.width = '180px';
-
- var genericBtn = mxUtils.button(buttonText, function()
- {
- if (validateFn == null || validateFn(nameInput.value))
- {
- if (closeOnBtn)
- {
- editorUi.hideDialog();
- }
-
- fn(nameInput.value);
- }
- });
- genericBtn.className = 'geBtn gePrimaryBtn';
-
- this.init = function()
- {
- if (label == null && content != null)
- {
- return;
- }
-
- nameInput.focus();
-
- if (mxClient.IS_FF || document.documentMode >= 5 || mxClient.IS_QUIRKS)
- {
- nameInput.select();
- }
- else
- {
- document.execCommand('selectAll', false, null);
- }
-
- // Installs drag and drop handler for links
- if (Graph.fileSupport)
- {
- // Setup the dnd listeners
- var dlg = table.parentNode;
- var graph = editorUi.editor.graph;
- var dropElt = null;
-
- mxEvent.addListener(dlg, 'dragleave', function(evt)
- {
- if (dropElt != null)
- {
- dropElt.style.backgroundColor = '';
- dropElt = null;
- }
-
- evt.stopPropagation();
- evt.preventDefault();
- });
-
- mxEvent.addListener(dlg, 'dragover', mxUtils.bind(this, function(evt)
- {
- // IE 10 does not implement pointer-events so it can't have a drop highlight
- if (dropElt == null && (!mxClient.IS_IE || document.documentMode > 10))
- {
- dropElt = nameInput;
- dropElt.style.backgroundColor = '#ebf2f9';
- }
-
- evt.stopPropagation();
- evt.preventDefault();
- }));
-
- mxEvent.addListener(dlg, 'drop', mxUtils.bind(this, function(evt)
- {
- if (dropElt != null)
- {
- dropElt.style.backgroundColor = '';
- dropElt = null;
- }
- if (mxUtils.indexOf(evt.dataTransfer.types, 'text/uri-list') >= 0)
- {
- nameInput.value = decodeURIComponent(evt.dataTransfer.getData('text/uri-list'));
- genericBtn.click();
- }
- evt.stopPropagation();
- evt.preventDefault();
- }));
- }
- };
- td = document.createElement('td');
- td.appendChild(nameInput);
- row.appendChild(td);
-
- if (label != null || content == null)
- {
- tbody.appendChild(row);
- }
-
- if (content != null)
- {
- row = document.createElement('tr');
- td = document.createElement('td');
- td.colSpan = 2;
- td.appendChild(content);
- row.appendChild(td);
- tbody.appendChild(row);
- }
-
- row = document.createElement('tr');
- td = document.createElement('td');
- td.colSpan = 2;
- td.style.paddingTop = '20px';
- td.style.whiteSpace = 'nowrap';
- td.setAttribute('align', 'right');
-
- var cancelBtn = mxUtils.button(mxResources.get('cancel'), function()
- {
- editorUi.hideDialog();
- });
- cancelBtn.className = 'geBtn';
-
- if (editorUi.editor.cancelFirst)
- {
- td.appendChild(cancelBtn);
- }
-
- if (helpLink != null)
- {
- var helpBtn = mxUtils.button(mxResources.get('help'), function()
- {
- window.open(helpLink);
- });
-
- helpBtn.className = 'geBtn';
- td.appendChild(helpBtn);
- }
- mxEvent.addListener(nameInput, 'keypress', function(e)
- {
- if (e.keyCode == 13)
- {
- genericBtn.click();
- }
- });
-
- td.appendChild(genericBtn);
-
- if (!editorUi.editor.cancelFirst)
- {
- td.appendChild(cancelBtn);
- }
- row.appendChild(td);
- tbody.appendChild(row);
- table.appendChild(tbody);
-
- this.container = table;
- };
- /**
- * Constructs a new textarea dialog.
- */
- var TextareaDialog = function(editorUi, title, url, fn, cancelFn, cancelTitle, w, h, addButtons, noHide)
- {
- w = (w != null) ? w : 300;
- h = (h != null) ? h : 120;
- noHide = (noHide != null) ? noHide : false;
- var row, td;
-
- var table = document.createElement('table');
- var tbody = document.createElement('tbody');
-
- row = document.createElement('tr');
-
- td = document.createElement('td');
- td.style.fontSize = '10pt';
- td.style.width = '100px';
- mxUtils.write(td, title);
-
- row.appendChild(td);
- tbody.appendChild(row);
- row = document.createElement('tr');
- td = document.createElement('td');
- var nameInput = document.createElement('textarea');
- mxUtils.write(nameInput, url || '');
- nameInput.style.resize = 'none';
- nameInput.style.width = w + 'px';
- nameInput.style.height = h + 'px';
-
- this.textarea = nameInput;
- this.init = function()
- {
- nameInput.focus();
- nameInput.scrollTop = 0;
- };
- td.appendChild(nameInput);
- row.appendChild(td);
-
- tbody.appendChild(row);
- row = document.createElement('tr');
- td = document.createElement('td');
- td.style.paddingTop = '14px';
- td.style.whiteSpace = 'nowrap';
- td.setAttribute('align', 'right');
-
- var cancelBtn = mxUtils.button(cancelTitle || mxResources.get('cancel'), function()
- {
- editorUi.hideDialog();
-
- if (cancelFn != null)
- {
- cancelFn();
- }
- });
- cancelBtn.className = 'geBtn';
-
- if (editorUi.editor.cancelFirst)
- {
- td.appendChild(cancelBtn);
- }
-
- if (addButtons != null)
- {
- addButtons(td);
- }
-
- if (fn != null)
- {
- var genericBtn = mxUtils.button(mxResources.get('apply'), function()
- {
- if (!noHide)
- {
- editorUi.hideDialog();
- }
-
- fn(nameInput.value);
- });
-
- genericBtn.className = 'geBtn gePrimaryBtn';
- td.appendChild(genericBtn);
- }
-
- if (!editorUi.editor.cancelFirst)
- {
- td.appendChild(cancelBtn);
- }
- row.appendChild(td);
- tbody.appendChild(row);
- table.appendChild(tbody);
- this.container = table;
- };
- /**
- * Constructs a new edit file dialog.
- */
- var EditDiagramDialog = function(editorUi)
- {
- var div = document.createElement('div');
- div.style.textAlign = 'right';
- var textarea = document.createElement('textarea');
- textarea.setAttribute('wrap', 'off');
- textarea.style.overflow = 'auto';
- textarea.style.resize = 'none';
- textarea.style.width = '600px';
- textarea.style.height = '370px';
- textarea.style.marginBottom = '16px';
-
- textarea.value = mxUtils.getPrettyXml(editorUi.editor.getGraphXml());
- div.appendChild(textarea);
-
- this.init = function()
- {
- textarea.focus();
- };
-
- // Enables dropping files
- if (Graph.fileSupport)
- {
- function handleDrop(evt)
- {
- evt.stopPropagation();
- evt.preventDefault();
-
- if (evt.dataTransfer.files.length > 0)
- {
- var file = evt.dataTransfer.files[0];
- var reader = new FileReader();
-
- reader.onload = function(e)
- {
- textarea.value = e.target.result;
- };
-
- reader.readAsText(file);
- }
- else
- {
- textarea.value = editorUi.extractGraphModelFromEvent(evt);
- }
- };
-
- function handleDragOver(evt)
- {
- evt.stopPropagation();
- evt.preventDefault();
- };
- // Setup the dnd listeners.
- textarea.addEventListener('dragover', handleDragOver, false);
- textarea.addEventListener('drop', handleDrop, false);
- }
-
- var cancelBtn = mxUtils.button(mxResources.get('cancel'), function()
- {
- editorUi.hideDialog();
- });
- cancelBtn.className = 'geBtn';
-
- if (editorUi.editor.cancelFirst)
- {
- div.appendChild(cancelBtn);
- }
-
- var select = document.createElement('select');
- select.style.width = '180px';
- select.className = 'geBtn';
- if (editorUi.editor.graph.isEnabled())
- {
- var replaceOption = document.createElement('option');
- replaceOption.setAttribute('value', 'replace');
- mxUtils.write(replaceOption, mxResources.get('replaceExistingDrawing'));
- select.appendChild(replaceOption);
- }
- var newOption = document.createElement('option');
- newOption.setAttribute('value', 'new');
- mxUtils.write(newOption, mxResources.get('openInNewWindow'));
-
- var chromeApp = window.chrome != null && chrome.app != null && chrome.app.runtime != null;
-
- if (!chromeApp)
- {
- select.appendChild(newOption);
- }
- if (editorUi.editor.graph.isEnabled())
- {
- var importOption = document.createElement('option');
- importOption.setAttribute('value', 'import');
- mxUtils.write(importOption, mxResources.get('addToExistingDrawing'));
- select.appendChild(importOption);
- }
- div.appendChild(select);
- var okBtn = mxUtils.button(mxResources.get('ok'), function()
- {
- // Removes all illegal control characters before parsing
- var data = editorUi.editor.graph.zapGremlins(mxUtils.trim(textarea.value));
- var error = null;
-
- if (select.value == 'new')
- {
- window.openFile = new OpenFile(function()
- {
- editorUi.hideDialog();
- window.openFile = null;
- });
-
- window.openFile.setData(data, null);
- window.open(editorUi.getUrl());
- }
- else if (select.value == 'replace')
- {
- editorUi.editor.graph.model.beginUpdate();
- try
- {
- editorUi.editor.setGraphXml(mxUtils.parseXml(data).documentElement);
- // LATER: Why is hideDialog between begin-/endUpdate faster?
- editorUi.hideDialog();
- }
- catch (e)
- {
- error = e;
- }
- finally
- {
- editorUi.editor.graph.model.endUpdate();
- }
- }
- else if (select.value == 'import')
- {
- editorUi.editor.graph.model.beginUpdate();
- try
- {
- var doc = mxUtils.parseXml(data);
- var model = new mxGraphModel();
- var codec = new mxCodec(doc);
- codec.decode(doc.documentElement, model);
-
- var children = model.getChildren(model.getChildAt(model.getRoot(), 0));
- editorUi.editor.graph.setSelectionCells(editorUi.editor.graph.importCells(children));
-
- // LATER: Why is hideDialog between begin-/endUpdate faster?
- editorUi.hideDialog();
- }
- catch (e)
- {
- error = e;
- }
- finally
- {
- editorUi.editor.graph.model.endUpdate();
- }
- }
-
- if (error != null)
- {
- mxUtils.alert(error.message);
- }
- });
- okBtn.className = 'geBtn gePrimaryBtn';
- div.appendChild(okBtn);
-
- if (!editorUi.editor.cancelFirst)
- {
- div.appendChild(cancelBtn);
- }
- this.container = div;
- };
- /**
- * Constructs a new export dialog.
- */
- var ExportDialog = function(editorUi)
- {
- var graph = editorUi.editor.graph;
- var bounds = graph.getGraphBounds();
- var scale = graph.view.scale;
-
- var width = Math.ceil(bounds.width / scale);
- var height = Math.ceil(bounds.height / scale);
- var row, td;
-
- var table = document.createElement('table');
- var tbody = document.createElement('tbody');
-
- row = document.createElement('tr');
-
- td = document.createElement('td');
- td.style.fontSize = '10pt';
- td.style.width = '100px';
- mxUtils.write(td, mxResources.get('filename') + ':');
-
- row.appendChild(td);
-
- var nameInput = document.createElement('input');
- nameInput.setAttribute('value', editorUi.editor.getOrCreateFilename());
- nameInput.style.width = '180px';
- td = document.createElement('td');
- td.appendChild(nameInput);
- row.appendChild(td);
-
- tbody.appendChild(row);
-
- row = document.createElement('tr');
-
- td = document.createElement('td');
- td.style.fontSize = '10pt';
- mxUtils.write(td, mxResources.get('format') + ':');
-
- row.appendChild(td);
-
- var imageFormatSelect = document.createElement('select');
- imageFormatSelect.style.width = '180px';
- var pngOption = document.createElement('option');
- pngOption.setAttribute('value', 'png');
- mxUtils.write(pngOption, mxResources.get('formatPng'));
- imageFormatSelect.appendChild(pngOption);
- var gifOption = document.createElement('option');
-
- if (ExportDialog.showGifOption)
- {
- gifOption.setAttribute('value', 'gif');
- mxUtils.write(gifOption, mxResources.get('formatGif'));
- imageFormatSelect.appendChild(gifOption);
- }
-
- var jpgOption = document.createElement('option');
- jpgOption.setAttribute('value', 'jpg');
- mxUtils.write(jpgOption, mxResources.get('formatJpg'));
- imageFormatSelect.appendChild(jpgOption);
- var pdfOption = document.createElement('option');
- pdfOption.setAttribute('value', 'pdf');
- mxUtils.write(pdfOption, mxResources.get('formatPdf'));
- imageFormatSelect.appendChild(pdfOption);
-
- var svgOption = document.createElement('option');
- svgOption.setAttribute('value', 'svg');
- mxUtils.write(svgOption, mxResources.get('formatSvg'));
- imageFormatSelect.appendChild(svgOption);
-
- if (ExportDialog.showXmlOption)
- {
- var xmlOption = document.createElement('option');
- xmlOption.setAttribute('value', 'xml');
- mxUtils.write(xmlOption, mxResources.get('formatXml'));
- imageFormatSelect.appendChild(xmlOption);
- }
- td = document.createElement('td');
- td.appendChild(imageFormatSelect);
- row.appendChild(td);
-
- tbody.appendChild(row);
- row = document.createElement('tr');
-
- td = document.createElement('td');
- td.style.fontSize = '10pt';
- mxUtils.write(td, mxResources.get('backgroundColor') + ':');
-
- row.appendChild(td);
-
- var backgroundInput = document.createElement('input');
- var tmp = (graph.background == null || graph.background == mxConstants.NONE) ? '#ffffff' : graph.background;
- backgroundInput.setAttribute('value', tmp);
- backgroundInput.style.width = '80px';
- var backgroundCheckbox = document.createElement('input');
- backgroundCheckbox.setAttribute('type', 'checkbox');
- backgroundCheckbox.checked = graph.background == null || graph.background == mxConstants.NONE;
- td = document.createElement('td');
- td.appendChild(backgroundInput);
- td.appendChild(backgroundCheckbox);
- mxUtils.write(td, mxResources.get('transparent'));
-
- row.appendChild(td);
-
- tbody.appendChild(row);
-
- row = document.createElement('tr');
- td = document.createElement('td');
- td.style.fontSize = '10pt';
- mxUtils.write(td, mxResources.get('width') + ':');
-
- row.appendChild(td);
-
- var widthInput = document.createElement('input');
- widthInput.setAttribute('value', width);
- widthInput.style.width = '180px';
- td = document.createElement('td');
- td.appendChild(widthInput);
- row.appendChild(td);
- tbody.appendChild(row);
-
- row = document.createElement('tr');
-
- td = document.createElement('td');
- td.style.fontSize = '10pt';
- mxUtils.write(td, mxResources.get('height') + ':');
-
- row.appendChild(td);
-
- var heightInput = document.createElement('input');
- heightInput.setAttribute('value', height);
- heightInput.style.width = '180px';
- td = document.createElement('td');
- td.appendChild(heightInput);
- row.appendChild(td);
- tbody.appendChild(row);
- row = document.createElement('tr');
- td = document.createElement('td');
- td.style.fontSize = '10pt';
- mxUtils.write(td, mxResources.get('borderWidth') + ':');
-
- row.appendChild(td);
-
- var borderInput = document.createElement('input');
- borderInput.setAttribute('value', width);
- borderInput.style.width = '180px';
- borderInput.value = '0';
- td = document.createElement('td');
- td.appendChild(borderInput);
- row.appendChild(td);
- tbody.appendChild(row);
- table.appendChild(tbody);
-
- // Handles changes in the export format
- function formatChanged()
- {
- var name = nameInput.value;
- var dot = name.lastIndexOf('.');
-
- if (dot > 0)
- {
- nameInput.value = name.substring(0, dot + 1) + imageFormatSelect.value;
- }
- else
- {
- nameInput.value = name + '.' + imageFormatSelect.value;
- }
-
- if (imageFormatSelect.value === 'xml')
- {
- widthInput.setAttribute('disabled', 'true');
- heightInput.setAttribute('disabled', 'true');
- borderInput.setAttribute('disabled', 'true');
- }
- else
- {
- widthInput.removeAttribute('disabled');
- heightInput.removeAttribute('disabled');
- borderInput.removeAttribute('disabled');
- }
-
- if (imageFormatSelect.value === 'png' || imageFormatSelect.value === 'svg')
- {
- backgroundCheckbox.removeAttribute('disabled');
- }
- else
- {
- backgroundCheckbox.setAttribute('disabled', 'disabled');
- }
- };
-
- mxEvent.addListener(imageFormatSelect, 'change', formatChanged);
- formatChanged();
-
- function checkValues()
- {
- if (widthInput.value * heightInput.value > MAX_AREA || widthInput.value <= 0)
- {
- widthInput.style.backgroundColor = 'red';
- }
- else
- {
- widthInput.style.backgroundColor = '';
- }
-
- if (widthInput.value * heightInput.value > MAX_AREA || heightInput.value <= 0)
- {
- heightInput.style.backgroundColor = 'red';
- }
- else
- {
- heightInput.style.backgroundColor = '';
- }
- };
- mxEvent.addListener(widthInput, 'change', function()
- {
- if (width > 0)
- {
- heightInput.value = Math.ceil(parseInt(widthInput.value) * height / width);
- }
- else
- {
- heightInput.value = '0';
- }
-
- checkValues();
- });
- mxEvent.addListener(heightInput, 'change', function()
- {
- if (height > 0)
- {
- widthInput.value = Math.ceil(parseInt(heightInput.value) * width / height);
- }
- else
- {
- widthInput.value = '0';
- }
-
- checkValues();
- });
- // Resuable image export instance
- var imgExport = new mxImageExport();
-
- function getSvg()
- {
- var b = Math.max(0, parseInt(borderInput.value)) + 1;
- var scale = parseInt(widthInput.value) / width;
- var bg = null;
-
- if (backgroundInput.value != '' && backgroundInput.value != mxConstants.NONE && !backgroundCheckbox.checked)
- {
- bg = backgroundInput.value;
- }
-
- return graph.getSvg(bg, scale, b);
- };
-
- function getXml()
- {
- return mxUtils.getXml(editorUi.editor.getGraphXml());
- };
- row = document.createElement('tr');
- td = document.createElement('td');
- td.setAttribute('align', 'right');
- td.style.paddingTop = '24px';
- td.colSpan = 2;
-
- var saveBtn = mxUtils.button(mxResources.get('export'), mxUtils.bind(this, function()
- {
- if (parseInt(widthInput.value) <= 0 && parseInt(heightInput.value) <= 0)
- {
- mxUtils.alert(mxResources.get('drawingEmpty'));
- }
- else
- {
- var format = imageFormatSelect.value;
- var name = nameInput.value;
-
- if (format == 'xml')
- {
- editorUi.hideDialog();
- ExportDialog.saveLocalFile(getXml(), name, format);
- }
- else if (format == 'svg')
- {
- var xml = mxUtils.getXml(getSvg());
-
- if (xml.length < MAX_REQUEST_SIZE)
- {
- editorUi.hideDialog();
- ExportDialog.saveLocalFile(xml, name, format);
- }
- else
- {
- mxUtils.alert(mxResources.get('drawingTooLarge'));
- mxUtils.popup(xml);
- }
- }
- else
- {
- var param = null;
- var w = parseInt(widthInput.value) || 0;
- var h = parseInt(heightInput.value) || 0;
- var b = Math.max(0, parseInt(borderInput.value)) + 1;
-
- var exp = ExportDialog.getExportParameter(editorUi, format);
-
- if (typeof exp == 'function')
- {
- param = exp();
- }
- else
- {
- var scale = parseInt(widthInput.value) / width;
- var bounds = graph.getGraphBounds();
- var vs = graph.view.scale;
-
- // New image export
- var xmlDoc = mxUtils.createXmlDocument();
- var root = xmlDoc.createElement('output');
- xmlDoc.appendChild(root);
-
- // Renders graph. Offset will be multiplied with state's scale when painting state.
- var xmlCanvas = new mxXmlCanvas2D(root);
- xmlCanvas.translate(Math.floor((b / scale - bounds.x) / vs), Math.floor((b / scale - bounds.y) / vs));
- xmlCanvas.scale(scale / vs);
- imgExport.drawState(graph.getView().getState(graph.model.root), xmlCanvas);
-
- // Puts request data together
- w = Math.ceil(bounds.width * scale / vs + 2 * b);
- h = Math.ceil(bounds.height * scale / vs + 2 * b);
- param = 'xml=' + encodeURIComponent(mxUtils.getXml(root));
- }
-
- // Requests image if request is valid
- if (param != null && param.length <= MAX_REQUEST_SIZE && w * h < MAX_AREA)
- {
- var bg = '&bg=none';
-
- if (backgroundInput.value != '' && backgroundInput.value != mxConstants.NONE &&
- (format != 'png' || !backgroundCheckbox.checked))
- {
- bg = '&bg=' + backgroundInput.value;
- }
-
- editorUi.hideDialog();
- var data = decodeURIComponent(param.substring(param.indexOf('=') + 1));
- ExportDialog.saveRequest(data, name, format,
- function(newTitle, base64)
- {
- // Base64 not used in this example
- return new mxXmlRequest(EXPORT_URL, 'format=' + format + '&base64=' + (base64 || '0') +
- ((newTitle != null) ? '&filename=' + encodeURIComponent(newTitle) : '') +
- bg + '&w=' + w + '&h=' + h + '&border=' + b + '&' + param);
- });
- }
- else
- {
- mxUtils.alert(mxResources.get('drawingTooLarge'));
- }
- }
- }
- }));
- saveBtn.className = 'geBtn gePrimaryBtn';
-
- var cancelBtn = mxUtils.button(mxResources.get('cancel'), function()
- {
- editorUi.hideDialog();
- });
- cancelBtn.className = 'geBtn';
-
- if (editorUi.editor.cancelFirst)
- {
- td.appendChild(cancelBtn);
- td.appendChild(saveBtn);
- }
- else
- {
- td.appendChild(saveBtn);
- td.appendChild(cancelBtn);
- }
- row.appendChild(td);
- tbody.appendChild(row);
- table.appendChild(tbody);
- this.container = table;
- };
- /**
- * Global switches for the export dialog.
- */
- ExportDialog.showGifOption = true;
- /**
- * Global switches for the export dialog.
- */
- ExportDialog.showXmlOption = true;
- /**
- * Hook for getting the export format. Returns null for the default
- * intermediate XML export format or a function that returns the
- * parameter and value to be used in the request in the form
- * key=value, where value should be URL encoded.
- */
- ExportDialog.saveLocalFile = function(data, filename, format)
- {
- new mxXmlRequest(SAVE_URL, 'xml=' + encodeURIComponent(data) + '&filename=' +
- encodeURIComponent(filename) + '&format=' + format).simulate(document, '_blank');
- };
- /**
- * Hook for getting the export format. Returns null for the default
- * intermediate XML export format or a function that returns the
- * parameter and value to be used in the request in the form
- * key=value, where value should be URL encoded.
- */
- ExportDialog.saveRequest = function(data, filename, format, fn)
- {
- fn(filename).simulate(document, '_blank');
- };
- /**
- * Hook for getting the export format. Returns null for the default
- * intermediate XML export format or a function that returns the
- * parameter and value to be used in the request in the form
- * key=value, where value should be URL encoded.
- */
- ExportDialog.getExportParameter = function(ui, format)
- {
- return null;
- };
- /**
- * Constructs a new metadata dialog.
- */
- var EditDataDialog = function(ui, cell)
- {
- var div = document.createElement('div');
- var graph = ui.editor.graph;
- div.style.height = '310px';
- div.style.overflow = 'auto';
-
- var value = graph.getModel().getValue(cell);
-
- // Converts the value to an XML node
- if (!mxUtils.isNode(value))
- {
- var doc = mxUtils.createXmlDocument();
- var obj = doc.createElement('object');
- obj.setAttribute('label', value || '');
- value = obj;
- }
- // Creates the dialog contents
- var form = new mxForm('properties');
- form.table.style.width = '100%';
- form.table.style.paddingRight = '20px';
- var attrs = value.attributes;
- var names = [];
- var texts = [];
- var count = 0;
-
- // FIXME: Fix remove button for quirks mode
- var addRemoveButton = function(text, name)
- {
- text.parentNode.style.marginRight = '12px';
-
- var removeAttr = document.createElement('a');
- var img = mxUtils.createImage(Dialog.prototype.closeImage);
- img.style.height = '9px';
- img.style.fontSize = '9px';
- img.style.marginBottom = '7px';
-
- removeAttr.className = 'geButton';
- removeAttr.setAttribute('title', mxResources.get('delete'));
- removeAttr.style.margin = '0px';
- removeAttr.style.width = '14px';
- removeAttr.style.height = '14px';
- removeAttr.style.fontSize = '14px';
- removeAttr.style.cursor = 'pointer';
- removeAttr.style.marginLeft = '6px';
- removeAttr.appendChild(img);
-
- var removeAttrFn = (function(name)
- {
- return function()
- {
- var count = 0;
-
- for (var j = 0; j < names.length; j++)
- {
- if (names[j] == name)
- {
- texts[j] = null;
- form.table.deleteRow(count);
-
- break;
- }
-
- if (texts[j] != null)
- {
- count++;
- }
- }
- };
- })(name);
-
- mxEvent.addListener(removeAttr, 'click', removeAttrFn);
-
- text.parentNode.style.whiteSpace = 'nowrap';
- text.parentNode.appendChild(removeAttr);
- };
-
- var addTextArea = function(index, name, value)
- {
- names[index] = name;
- texts[index] = form.addTextarea(names[count] + ':', value, 2);
- texts[index].style.width = '100%';
-
- addRemoveButton(texts[index], name);
- };
- for (var i = 0; i < attrs.length; i++)
- {
- if (attrs[i].nodeName != 'label' && attrs[i].nodeName != 'placeholders')
- {
- addTextArea(count, attrs[i].nodeName, attrs[i].nodeValue);
- count++;
- }
- }
-
- div.appendChild(form.table);
- var newProp = document.createElement('div');
- newProp.style.whiteSpace = 'nowrap';
- newProp.style.marginTop = '6px';
- var nameInput = document.createElement('input');
- nameInput.setAttribute('placeholder', mxResources.get('enterPropertyName'));
- nameInput.setAttribute('type', 'text');
- nameInput.setAttribute('size', (mxClient.IS_QUIRKS) ? '18' : '22');
- nameInput.style.marginLeft = '2px';
- newProp.appendChild(nameInput);
- div.appendChild(newProp);
-
- var addBtn = mxUtils.button(mxResources.get('addProperty'), function()
- {
- if (nameInput.value.length > 0)
- {
- var name = nameInput.value;
-
- if (name != null && name.length > 0 && name != 'label' && name != 'placeholders')
- {
- try
- {
- var idx = mxUtils.indexOf(names, name);
-
- if (idx >= 0 && texts[idx] != null)
- {
- texts[idx].focus();
- }
- else
- {
- // Checks if the name is valid
- var clone = value.cloneNode(false);
- clone.setAttribute(name, '');
-
- if (idx >= 0)
- {
- names.splice(idx, 1);
- texts.splice(idx, 1);
- }
- names.push(name);
- var text = form.addTextarea(name + ':', '', 2);
- text.style.width = '100%';
- texts.push(text);
- addRemoveButton(text, name);
- text.focus();
- }
- nameInput.value = '';
- }
- catch (e)
- {
- mxUtils.alert(e);
- }
- }
- }
- else
- {
- mxUtils.alert(mxResources.get('invalidName'));
- }
- });
-
- this.init = function()
- {
- if (texts.length > 0)
- {
- texts[0].focus();
- }
- else
- {
- nameInput.focus();
- }
- };
-
- addBtn.setAttribute('disabled', 'disabled');
- addBtn.style.marginLeft = '10px';
- addBtn.style.width = '144px';
- newProp.appendChild(addBtn);
- var cancelBtn = mxUtils.button(mxResources.get('cancel'), function()
- {
- ui.hideDialog.apply(ui, arguments);
- });
- cancelBtn.className = 'geBtn';
-
- var applyBtn = mxUtils.button(mxResources.get('apply'), function()
- {
- try
- {
- ui.hideDialog.apply(ui, arguments);
-
- // Clones and updates the value
- value = value.cloneNode(true);
-
- for (var i = 0; i < names.length; i++)
- {
- if (texts[i] == null)
- {
- value.removeAttribute(names[i]);
- }
- else
- {
- value.setAttribute(names[i], texts[i].value);
- }
- }
-
- // Updates the value of the cell (undoable)
- graph.getModel().setValue(cell, value);
- }
- catch (e)
- {
- mxUtils.alert(e);
- }
- });
- applyBtn.className = 'geBtn gePrimaryBtn';
-
- function updateAddBtn()
- {
- if (nameInput.value.length > 0)
- {
- addBtn.removeAttribute('disabled');
- }
- else
- {
- addBtn.setAttribute('disabled', 'disabled');
- }
- };
- mxEvent.addListener(nameInput, 'keyup', updateAddBtn);
-
- // Catches all changes that don't fire a keyup (such as paste via mouse)
- mxEvent.addListener(nameInput, 'change', updateAddBtn);
-
- var buttons = document.createElement('div');
- buttons.style.marginTop = '18px';
- buttons.style.textAlign = 'right';
-
- if (ui.editor.graph.getModel().isVertex(cell) || ui.editor.graph.getModel().isEdge(cell))
- {
- var replace = document.createElement('span');
- replace.style.marginRight = '10px';
- var input = document.createElement('input');
- input.setAttribute('type', 'checkbox');
- input.style.marginRight = '6px';
-
- if (value.getAttribute('placeholders') == '1')
- {
- input.setAttribute('checked', 'checked');
- input.defaultChecked = true;
- }
-
- mxEvent.addListener(input, 'click', function()
- {
- if (value.getAttribute('placeholders') == '1')
- {
- value.removeAttribute('placeholders');
- }
- else
- {
- value.setAttribute('placeholders', '1');
- }
- });
-
- replace.appendChild(input);
- mxUtils.write(replace, mxResources.get('placeholders'));
-
- if (EditDataDialog.placeholderHelpLink != null)
- {
- var link = document.createElement('a');
- link.setAttribute('href', EditDataDialog.placeholderHelpLink);
- link.setAttribute('title', mxResources.get('help'));
- link.setAttribute('target', '_blank');
- link.style.marginLeft = '10px';
- link.style.cursor = 'help';
-
- var icon = document.createElement('img');
- icon.setAttribute('border', '0');
- icon.setAttribute('valign', 'middle');
- icon.style.marginTop = '-4px';
- icon.setAttribute('src', Editor.helpImage);
- link.appendChild(icon);
-
- replace.appendChild(link);
- }
-
- buttons.appendChild(replace);
- }
-
- if (ui.editor.cancelFirst)
- {
- buttons.appendChild(cancelBtn);
- buttons.appendChild(applyBtn);
- }
- else
- {
- buttons.appendChild(applyBtn);
- buttons.appendChild(cancelBtn);
- }
- div.appendChild(buttons);
- this.container = div;
- };
- /**
- * Optional help link.
- */
- EditDataDialog.placeholderHelpLink = null;
- /**
- * Constructs a new link dialog.
- */
- var LinkDialog = function(editorUi, initialValue, btnLabel, fn)
- {
- var div = document.createElement('div');
- mxUtils.write(div, mxResources.get('editLink') + ':');
-
- var inner = document.createElement('div');
- inner.className = 'geTitle';
- inner.style.backgroundColor = 'transparent';
- inner.style.borderColor = 'transparent';
- inner.style.whiteSpace = 'nowrap';
- inner.style.textOverflow = 'clip';
- inner.style.cursor = 'default';
-
- if (!mxClient.IS_VML)
- {
- inner.style.paddingRight = '20px';
- }
-
- var linkInput = document.createElement('input');
- linkInput.setAttribute('value', initialValue);
- linkInput.setAttribute('placeholder', 'http://www.example.com/');
- linkInput.setAttribute('type', 'text');
- linkInput.style.marginTop = '6px';
- linkInput.style.width = '400px';
- linkInput.style.backgroundImage = 'url(\'' + Dialog.prototype.clearImage + '\')';
- linkInput.style.backgroundRepeat = 'no-repeat';
- linkInput.style.backgroundPosition = '100% 50%';
- linkInput.style.paddingRight = '14px';
-
- var cross = document.createElement('div');
- cross.setAttribute('title', mxResources.get('reset'));
- cross.style.position = 'relative';
- cross.style.left = '-16px';
- cross.style.width = '12px';
- cross.style.height = '14px';
- cross.style.cursor = 'pointer';
- // Workaround for inline-block not supported in IE
- cross.style.display = (mxClient.IS_VML) ? 'inline' : 'inline-block';
- cross.style.top = ((mxClient.IS_VML) ? 0 : 3) + 'px';
-
- // Needed to block event transparency in IE
- cross.style.background = 'url(' + IMAGE_PATH + '/transparent.gif)';
- mxEvent.addListener(cross, 'click', function()
- {
- linkInput.value = '';
- linkInput.focus();
- });
-
- inner.appendChild(linkInput);
- inner.appendChild(cross);
- div.appendChild(inner);
-
- this.init = function()
- {
- linkInput.focus();
-
- if (mxClient.IS_FF || document.documentMode >= 5 || mxClient.IS_QUIRKS)
- {
- linkInput.select();
- }
- else
- {
- document.execCommand('selectAll', false, null);
- }
- };
-
- var btns = document.createElement('div');
- btns.style.marginTop = '18px';
- btns.style.textAlign = 'right';
- mxEvent.addListener(linkInput, 'keypress', function(e)
- {
- if (e.keyCode == 13)
- {
- editorUi.hideDialog();
- fn(linkInput.value);
- }
- });
- var cancelBtn = mxUtils.button(mxResources.get('cancel'), function()
- {
- editorUi.hideDialog();
- });
- cancelBtn.className = 'geBtn';
-
- if (editorUi.editor.cancelFirst)
- {
- btns.appendChild(cancelBtn);
- }
-
- var mainBtn = mxUtils.button(btnLabel, function()
- {
- editorUi.hideDialog();
- fn(linkInput.value);
- });
- mainBtn.className = 'geBtn gePrimaryBtn';
- btns.appendChild(mainBtn);
-
- if (!editorUi.editor.cancelFirst)
- {
- btns.appendChild(cancelBtn);
- }
- div.appendChild(btns);
- this.container = div;
- };
- /**
- *
- */
- var OutlineWindow = function(editorUi, x, y, w, h)
- {
- var graph = editorUi.editor.graph;
-
- var div = document.createElement('div');
- div.style.position = 'absolute';
- div.style.width = '100%';
- div.style.height = '100%';
- div.style.border = '1px solid whiteSmoke';
- div.style.overflow = 'hidden';
- this.window = new mxWindow(mxResources.get('outline'), div, x, y, w, h, true, true);
- this.window.destroyOnClose = false;
- this.window.setMaximizable(false);
- this.window.setResizable(true);
- this.window.setClosable(true);
- this.window.setVisible(true);
-
- this.window.setLocation = function(x, y)
- {
- x = Math.max(0, x);
- y = Math.max(0, y);
- mxWindow.prototype.setLocation.apply(this, arguments);
- };
-
- mxEvent.addListener(window, 'resize', mxUtils.bind(this, function()
- {
- var iw = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
- var ih = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
-
- var x = this.window.getX();
- var y = this.window.getY();
-
- if (x + this.window.table.clientWidth > iw)
- {
- x = Math.max(0, iw - this.window.table.clientWidth);
- }
-
- if (y + this.window.table.clientHeight > ih)
- {
- y = Math.max(0, ih - this.window.table.clientHeight);
- }
-
- if (this.window.getX() != x || this.window.getY() != y)
- {
- this.window.setLocation(x, y);
- }
- }));
-
- var outline = editorUi.createOutline(this.window);
- this.window.addListener(mxEvent.RESIZE, mxUtils.bind(this, function()
- {
- outline.update(false);
- outline.outline.sizeDidChange();
- }));
-
- this.window.addListener(mxEvent.SHOW, mxUtils.bind(this, function()
- {
- outline.suspended = false;
- outline.outline.refresh();
- outline.update();
- }));
-
- this.window.addListener(mxEvent.HIDE, mxUtils.bind(this, function()
- {
- outline.suspended = true;
- }));
-
- this.window.addListener(mxEvent.NORMALIZE, mxUtils.bind(this, function()
- {
- outline.suspended = false;
- outline.update();
- }));
-
- this.window.addListener(mxEvent.MINIMIZE, mxUtils.bind(this, function()
- {
- outline.suspended = true;
- }));
- var outlineCreateGraph = outline.createGraph;
- outline.createGraph = function(container)
- {
- var g = outlineCreateGraph.apply(this, arguments);
- g.gridEnabled = false;
- g.pageScale = graph.pageScale;
- g.pageFormat = graph.pageFormat;
- g.background = graph.background;
- g.pageVisible = graph.pageVisible;
-
- var current = mxUtils.getCurrentStyle(graph.container);
- div.style.backgroundColor = current.backgroundColor;
-
- return g;
- };
-
- function update()
- {
- outline.outline.pageScale = graph.pageScale;
- outline.outline.pageFormat = graph.pageFormat;
- outline.outline.pageVisible = graph.pageVisible;
- outline.outline.background = graph.background;
-
- var current = mxUtils.getCurrentStyle(graph.container);
- div.style.backgroundColor = current.backgroundColor;
-
- if (graph.view.backgroundPageShape != null && outline.outline.view.backgroundPageShape != null)
- {
- outline.outline.view.backgroundPageShape.fill = graph.view.backgroundPageShape.fill;
- }
-
- outline.outline.refresh();
- };
- outline.init(div);
- editorUi.editor.addListener('resetGraphView', update);
- editorUi.addListener('pageFormatChanged', update);
- editorUi.addListener('backgroundColorChanged', update);
- editorUi.addListener('backgroundImageChanged', update);
- editorUi.addListener('pageViewChanged', function()
- {
- update();
- outline.update(true);
- });
-
- if (outline.outline.dialect == mxConstants.DIALECT_SVG)
- {
- var zoomInAction = editorUi.actions.get('zoomIn');
- var zoomOutAction = editorUi.actions.get('zoomOut');
-
- mxEvent.addMouseWheelListener(function(evt, up)
- {
- var outlineWheel = false;
- var source = mxEvent.getSource(evt);
-
- while (source != null)
- {
- if (source == outline.outline.view.canvas.ownerSVGElement)
- {
- outlineWheel = true;
- break;
- }
-
- source = source.parentNode;
- }
-
- if (outlineWheel)
- {
- if (up)
- {
- zoomInAction.funct();
- }
- else
- {
- zoomOutAction.funct();
- }
-
- mxEvent.consume(evt);
- }
- });
- }
- };
- /**
- *
- */
- var LayersWindow = function(editorUi, x, y, w, h)
- {
- var graph = editorUi.editor.graph;
-
- var div = document.createElement('div');
- div.style.userSelect = 'none';
- div.style.background = 'whiteSmoke';
- div.style.border = '1px solid whiteSmoke';
- div.style.height = '100%';
- div.style.marginBottom = '10px';
- div.style.overflow = 'auto';
- var tbarHeight = (!EditorUi.compactUi) ? '30px' : '26px';
-
- var listDiv = document.createElement('div')
- listDiv.style.backgroundColor = '#e5e5e5';
- listDiv.style.position = 'absolute';
- listDiv.style.overflow = 'auto';
- listDiv.style.left = '0px';
- listDiv.style.right = '0px';
- listDiv.style.top = '0px';
- listDiv.style.bottom = tbarHeight;
- div.appendChild(listDiv);
-
- var dragSource = null;
- var dropIndex = null;
-
- mxEvent.addListener(div, 'dragover', function(evt)
- {
- evt.dataTransfer.dropEffect = 'move';
- dropIndex = null;
- evt.stopPropagation();
- evt.preventDefault();
- });
- var layerCount = null;
- var selectionLayer = null;
-
- var ldiv = document.createElement('div');
-
- ldiv.className = 'geToolbarContainer';
- ldiv.style.position = 'absolute';
- ldiv.style.bottom = '0px';
- ldiv.style.left = '0px';
- ldiv.style.right = '0px';
- ldiv.style.height = tbarHeight;
- ldiv.style.overflow = 'hidden';
- ldiv.style.padding = (!EditorUi.compactUi) ? '1px' : '4px 0px 3px 0px';
- ldiv.style.backgroundColor = 'whiteSmoke';
- ldiv.style.borderWidth = '1px 0px 0px 0px';
- ldiv.style.borderColor = '#c3c3c3';
- ldiv.style.borderStyle = 'solid';
- ldiv.style.display = 'block';
- ldiv.style.whiteSpace = 'nowrap';
-
- if (mxClient.IS_QUIRKS)
- {
- ldiv.style.filter = 'none';
- }
-
- var link = document.createElement('a');
- link.className = 'geButton';
-
- if (mxClient.IS_QUIRKS)
- {
- link.style.filter = 'none';
- }
-
- var removeLink = link.cloneNode();
- removeLink.innerHTML = '<div class="geSprite geSprite-delete" style="display:inline-block;"></div>';
- mxEvent.addListener(removeLink, 'click', function(evt)
- {
- if (graph.isEnabled())
- {
- graph.model.beginUpdate();
- try
- {
- var index = graph.model.root.getIndex(selectionLayer);
- graph.removeCells([selectionLayer], false);
-
- // Creates default layer if no layer exists
- if (graph.model.getChildCount(graph.model.root) == 0)
- {
- graph.model.add(graph.model.root, new mxCell());
- graph.setDefaultParent(null);
- }
- else if (index > 0 && index <= graph.model.getChildCount(graph.model.root))
- {
- graph.setDefaultParent(graph.model.getChildAt(graph.model.root, index - 1));
- }
- else
- {
- graph.setDefaultParent(null);
- }
- }
- finally
- {
- graph.model.endUpdate();
- }
- }
-
- mxEvent.consume(evt);
- });
-
- if (!graph.isEnabled())
- {
- removeLink.className = 'geButton mxDisabled';
- }
-
- ldiv.appendChild(removeLink);
- var insertLink = link.cloneNode();
- insertLink.innerHTML = '<div class="geSprite geSprite-insert" style="display:inline-block;"></div>';
-
- mxEvent.addListener(insertLink, 'click', function(evt)
- {
- if (graph.isEnabled() && !graph.isSelectionEmpty())
- {
- graph.moveCells(graph.getSelectionCells(), 0, 0, false, selectionLayer);
- }
- });
- ldiv.appendChild(insertLink);
-
- var renameLink = link.cloneNode();
- renameLink.innerHTML = '<div class="geSprite geSprite-dots" style="display:inline-block;"></div>';
- renameLink.setAttribute('title', mxResources.get('rename'));
-
- function renameLayer(layer)
- {
- if (graph.isEnabled() && layer != null)
- {
- var dlg = new FilenameDialog(editorUi, layer.value || mxResources.get('background'), mxResources.get('rename'), mxUtils.bind(this, function(newValue)
- {
- if (newValue != null)
- {
- graph.getModel().setValue(layer, newValue);
- }
- }), mxResources.get('enterName'));
- editorUi.showDialog(dlg.container, 300, 100, true, true);
- dlg.init();
- }
- };
-
- mxEvent.addListener(renameLink, 'click', function(evt)
- {
- if (graph.isEnabled())
- {
- renameLayer(selectionLayer);
- }
-
- mxEvent.consume(evt);
- });
-
- if (!graph.isEnabled())
- {
- renameLink.className = 'geButton mxDisabled';
- }
-
- ldiv.appendChild(renameLink);
-
- var duplicateLink = link.cloneNode();
- duplicateLink.innerHTML = '<div class="geSprite geSprite-duplicate" style="display:inline-block;"></div>';
-
- mxEvent.addListener(duplicateLink, 'click', function(evt)
- {
- if (graph.isEnabled())
- {
- var newCell = null;
- graph.model.beginUpdate();
- try
- {
- newCell = graph.cloneCells([selectionLayer])[0];
- newCell.value = mxResources.get('untitledLayer');
- newCell.setVisible(true);
- newCell = graph.addCell(newCell, graph.model.root);
- graph.setDefaultParent(newCell);
- }
- finally
- {
- graph.model.endUpdate();
- }
- if (newCell != null && !graph.isCellLocked(newCell))
- {
- graph.selectAll(newCell);
- }
- }
- });
-
- if (!graph.isEnabled())
- {
- duplicateLink.className = 'geButton mxDisabled';
- }
- ldiv.appendChild(duplicateLink);
- var addLink = link.cloneNode();
- addLink.innerHTML = '<div class="geSprite geSprite-plus" style="display:inline-block;"></div>';
- addLink.setAttribute('title', mxResources.get('addLayer'));
-
- mxEvent.addListener(addLink, 'click', function(evt)
- {
- if (graph.isEnabled())
- {
- graph.model.beginUpdate();
-
- try
- {
- var cell = graph.addCell(new mxCell(mxResources.get('untitledLayer')), graph.model.root);
- graph.setDefaultParent(cell);
- }
- finally
- {
- graph.model.endUpdate();
- }
- }
-
- mxEvent.consume(evt);
- });
-
- if (!graph.isEnabled())
- {
- addLink.className = 'geButton mxDisabled';
- }
-
- ldiv.appendChild(addLink);
- div.appendChild(ldiv);
-
- function refresh()
- {
- layerCount = graph.model.getChildCount(graph.model.root)
- listDiv.innerHTML = '';
- function addLayer(index, label, child, defaultParent)
- {
- var ldiv = document.createElement('div');
- ldiv.className = 'geToolbarContainer';
- ldiv.style.overflow = 'hidden';
- ldiv.style.position = 'relative';
- ldiv.style.padding = '4px';
- ldiv.style.height = '22px';
- ldiv.style.display = 'block';
- ldiv.style.backgroundColor = 'whiteSmoke';
- ldiv.style.borderWidth = '0px 0px 1px 0px';
- ldiv.style.borderColor = '#c3c3c3';
- ldiv.style.borderStyle = 'solid';
- ldiv.style.whiteSpace = 'nowrap';
-
- var left = document.createElement('div');
- left.style.display = 'inline-block';
- left.style.width = '100%';
- left.style.textOverflow = 'ellipsis';
- left.style.overflow = 'hidden';
-
- mxEvent.addListener(ldiv, 'dragover', function(evt)
- {
- evt.dataTransfer.dropEffect = 'move';
- dropIndex = index;
- evt.stopPropagation();
- evt.preventDefault();
- });
-
- mxEvent.addListener(ldiv, 'dragstart', function(evt)
- {
- dragSource = ldiv;
-
- // Workaround for no DnD on DIV in FF
- if (mxClient.IS_FF)
- {
- // LATER: Check what triggers a parse as XML on this in FF after drop
- evt.dataTransfer.setData('Text', '<layer/>');
- }
- });
-
- mxEvent.addListener(ldiv, 'dragend', function(evt)
- {
- if (dragSource != null)
- {
- graph.addCell(child, graph.model.root, dropIndex);
- dragSource = null;
- dropIndex = null;
- }
-
- evt.stopPropagation();
- evt.preventDefault();
- });
- var btn = document.createElement('img');
- btn.setAttribute('draggable', 'false');
- btn.setAttribute('align', 'top');
- btn.setAttribute('border', '0');
- btn.style.cursor = 'pointer';
- btn.style.padding = '4px';
- btn.setAttribute('title', mxResources.get('lockUnlock'));
- var state = graph.view.getState(child);
- var style = (state != null) ? state.style : graph.getCellStyle(child);
- if (mxUtils.getValue(style, 'locked', '0') == '1')
- {
- btn.setAttribute('src', Dialog.prototype.lockedImage);
- }
- else
- {
- btn.setAttribute('src', Dialog.prototype.unlockedImage);
- }
-
- mxEvent.addListener(btn, 'click', function(evt)
- {
- if (graph.isEnabled())
- {
- var value = null;
- graph.getModel().beginUpdate();
- try
- {
- value = (mxUtils.getValue(style, 'locked', '0') == '1') ? null : '1';
- graph.setCellStyles('locked', value, [child]);
- }
- finally
- {
- graph.getModel().endUpdate();
- }
- if (value == '1')
- {
- graph.removeSelectionCells(graph.getModel().getDescendants(child));
- }
-
- mxEvent.consume(evt);
- }
- });
- left.appendChild(btn);
- var inp = document.createElement('input');
- inp.setAttribute('type', 'checkbox');
- inp.setAttribute('title', mxResources.get('hideIt', [child.value || mxResources.get('background')]));
- inp.style.marginLeft = '4px';
- inp.style.marginRight = '6px';
- inp.style.marginTop = '4px';
- left.appendChild(inp);
-
- if (!graph.isEnabled())
- {
- inp.setAttribute('disabled', 'disabled');
- }
- if (graph.model.isVisible(child))
- {
- inp.setAttribute('checked', 'checked');
- inp.defaultChecked = true;
- }
- mxEvent.addListener(inp, 'click', function(evt)
- {
- if (graph.isEnabled())
- {
- graph.model.setVisible(child, !graph.model.isVisible(child));
- mxEvent.consume(evt);
- }
- });
- mxUtils.write(left, label);
- ldiv.appendChild(left);
-
- if (graph.isEnabled())
- {
- // Fallback if no drag and drop is available
- if (mxClient.IS_TOUCH || mxClient.IS_POINTER || mxClient.IS_VML ||
- (mxClient.IS_IE && document.documentMode < 10))
- {
- var right = document.createElement('div');
- right.style.display = 'block';
- right.style.textAlign = 'right';
- right.style.whiteSpace = 'nowrap';
- right.style.position = 'absolute';
- right.style.right = '6px';
- right.style.top = '6px';
-
- // Poor man's change layer order
- if (index > 0)
- {
- var img2 = document.createElement('a');
-
- img2.setAttribute('title', mxResources.get('toBack'));
-
- img2.className = 'geButton';
- img2.style.cssFloat = 'none';
- img2.innerHTML = '▲';
- img2.style.width = '14px';
- img2.style.height = '14px';
- img2.style.fontSize = '14px';
- img2.style.margin = '0px';
- img2.style.marginTop = '-1px';
- right.appendChild(img2);
-
- mxEvent.addListener(img2, 'click', function(evt)
- {
- if (graph.isEnabled())
- {
- graph.addCell(child, graph.model.root, index - 1);
- }
-
- mxEvent.consume(evt);
- });
- }
-
- if (index >= 0 && index < layerCount - 1)
- {
- var img1 = document.createElement('a');
-
- img1.setAttribute('title', mxResources.get('toFront'));
-
- img1.className = 'geButton';
- img1.style.cssFloat = 'none';
- img1.innerHTML = '▼';
- img1.style.width = '14px';
- img1.style.height = '14px';
- img1.style.fontSize = '14px';
- img1.style.margin = '0px';
- img1.style.marginTop = '-1px';
- right.appendChild(img1);
-
- mxEvent.addListener(img1, 'click', function(evt)
- {
- if (graph.isEnabled())
- {
- graph.addCell(child, graph.model.root, index + 1);
- }
-
- mxEvent.consume(evt);
- });
- }
-
- ldiv.appendChild(right);
- }
-
- if (mxClient.IS_SVG && (!mxClient.IS_IE || document.documentMode >= 10))
- {
- ldiv.setAttribute('draggable', 'true');
- ldiv.style.cursor = 'move';
- }
- }
- mxEvent.addListener(ldiv, 'dblclick', function(evt)
- {
- var nodeName = mxEvent.getSource(evt).nodeName;
-
- if (nodeName != 'INPUT' && nodeName != 'IMG')
- {
- renameLayer(child);
- mxEvent.consume(evt);
- }
- });
- if (graph.getDefaultParent() == child)
- {
- ldiv.style.background = '#e6eff8';
- selectionLayer = child;
- }
- else
- {
- mxEvent.addListener(ldiv, 'click', function(evt)
- {
- if (graph.isEnabled())
- {
- graph.setDefaultParent(defaultParent);
- graph.view.setCurrentRoot(null);
- refresh();
- }
- });
- }
-
- listDiv.appendChild(ldiv);
- };
-
- // Cannot be moved or deleted
- for (var i = 0; i < layerCount; i++)
- {
- (mxUtils.bind(this, function(child)
- {
- addLayer(i, child.value || mxResources.get('background'), child, child);
- }))(graph.model.getChildAt(graph.model.root, i));
- }
-
- removeLink.setAttribute('title', mxResources.get('removeIt', [selectionLayer.value || mxResources.get('background')]));
- insertLink.setAttribute('title', mxResources.get('moveSelectionTo', [selectionLayer.value || mxResources.get('background')]));
- duplicateLink.setAttribute('title', mxResources.get('duplicateIt', [selectionLayer.value || mxResources.get('background')]));
- renameLink.setAttribute('title', mxResources.get('renameIt', [selectionLayer.value || mxResources.get('background')]));
-
- if (graph.isSelectionEmpty())
- {
- insertLink.className = 'geButton mxDisabled';
- }
- };
- refresh();
- graph.model.addListener(mxEvent.CHANGE, function()
- {
- refresh();
- });
- graph.selectionModel.addListener(mxEvent.CHANGE, function()
- {
- if (graph.isSelectionEmpty())
- {
- insertLink.className = 'geButton mxDisabled';
- }
- else
- {
- insertLink.className = 'geButton';
- }
- });
- this.window = new mxWindow(mxResources.get('layers'), div, x, y, w, h, true, true);
- this.window.destroyOnClose = false;
- this.window.setMaximizable(false);
- this.window.setResizable(true);
- this.window.setClosable(true);
- this.window.setVisible(true);
-
- // Make refresh available via instance
- this.refreshLayers = refresh;
-
- this.window.setLocation = function(x, y)
- {
- x = Math.max(0, x);
- y = Math.max(0, y);
- mxWindow.prototype.setLocation.apply(this, arguments);
- };
-
- mxEvent.addListener(window, 'resize', mxUtils.bind(this, function()
- {
- var iw = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
- var ih = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
-
- var x = this.window.getX();
- var y = this.window.getY();
-
- if (x + this.window.table.clientWidth > iw)
- {
- x = Math.max(0, iw - this.window.table.clientWidth);
- }
-
- if (y + this.window.table.clientHeight > ih)
- {
- y = Math.max(0, ih - this.window.table.clientHeight);
- }
-
- if (this.window.getX() != x || this.window.getY() != y)
- {
- this.window.setLocation(x, y);
- }
- }));
- };
|