2011-08-07 18:59:20 -03:00
/ *
* Copyright [ 2011 ] [ wisemapping ]
*
* Licensed under WiseMapping Public License , Version 1.0 ( the "License" ) .
* It is basically the Apache License , Version 2.0 ( the "License" ) plus the
* "powered by wisemapping" text requirement on every single page ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the license at
*
* http : //www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing , software
* distributed under the License is distributed on an "AS IS" BASIS ,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
* See the License for the specific language governing permissions and
* limitations under the License .
* /
mindplot . widget . Menu = new Class ( {
2011-10-15 02:52:44 -03:00
initialize : function ( designer , containerId , mapId , readOnly ) {
2011-08-08 20:48:59 -03:00
$assert ( designer , "designer can not be null" ) ;
$assert ( containerId , "containerId can not be null" ) ;
2011-10-02 19:16:13 -03:00
var baseUrl = "../css/widget" ;
2011-08-08 20:48:59 -03:00
// Init variables ...
2011-08-07 18:59:20 -03:00
this . _designer = designer ;
this . _toolbarElems = [ ] ;
2011-08-08 20:48:59 -03:00
this . _containerId = containerId ;
// Stop event propagation ...
$ ( this . _containerId ) . addEvent ( 'click' , function ( event ) {
event . stopPropagation ( ) ;
2011-08-09 01:45:24 -03:00
return false ;
2011-08-08 20:48:59 -03:00
} ) ;
$ ( this . _containerId ) . addEvent ( 'dblclick' , function ( event ) {
event . stopPropagation ( ) ;
2011-08-09 01:45:24 -03:00
return false ;
2011-08-08 20:48:59 -03:00
} ) ;
2011-08-07 18:59:20 -03:00
2011-08-08 20:48:59 -03:00
// Create panels ...
2011-08-24 23:41:39 -03:00
var designerModel = designer . getModel ( ) ;
2011-08-07 18:59:20 -03:00
var fontFamilyModel = {
getValue : function ( ) {
2011-08-24 23:41:39 -03:00
var nodes = designerModel . filterSelectedTopics ( ) ;
2011-08-09 09:03:46 -03:00
var result = null ;
2011-08-24 23:41:39 -03:00
for ( var i = 0 ; i < nodes . length ; i ++ ) {
2011-08-09 09:03:46 -03:00
var fontFamily = nodes [ i ] . getFontFamily ( ) ;
if ( result != null && result != fontFamily ) {
result = null ;
break ;
}
result = fontFamily ;
2011-08-07 18:59:20 -03:00
}
2011-08-09 09:03:46 -03:00
return result ;
2011-08-07 18:59:20 -03:00
} ,
setValue : function ( value ) {
2011-08-21 12:42:00 -03:00
designer . changeFontFamily ( value ) ;
2011-08-07 18:59:20 -03:00
}
} ;
2011-08-08 20:48:59 -03:00
this . _toolbarElems . push ( new mindplot . widget . FontFamilyPanel ( "fontFamily" , fontFamilyModel ) ) ;
2011-08-07 18:59:20 -03:00
var fontSizeModel = {
getValue : function ( ) {
2011-08-24 23:41:39 -03:00
var nodes = designerModel . filterSelectedTopics ( ) ;
2011-08-09 09:03:46 -03:00
var result = null ;
2011-08-24 23:41:39 -03:00
for ( var i = 0 ; i < nodes . length ; i ++ ) {
2011-08-09 09:03:46 -03:00
var fontSize = nodes [ i ] . getFontSize ( ) ;
if ( result != null && result != fontSize ) {
result = null ;
break ;
}
result = fontSize ;
2011-08-07 18:59:20 -03:00
}
2011-08-09 09:03:46 -03:00
return result ;
2011-08-07 18:59:20 -03:00
} ,
setValue : function ( value ) {
2011-08-21 12:42:00 -03:00
designer . changeFontSize ( value ) ;
2011-08-07 18:59:20 -03:00
}
} ;
2011-08-08 20:48:59 -03:00
this . _toolbarElems . push ( new mindplot . widget . FontSizePanel ( "fontSize" , fontSizeModel ) ) ;
2011-08-07 18:59:20 -03:00
var topicShapeModel = {
getValue : function ( ) {
2011-08-24 23:41:39 -03:00
var nodes = designerModel . filterSelectedTopics ( ) ;
2011-08-09 09:03:46 -03:00
var result = null ;
2011-08-24 23:41:39 -03:00
for ( var i = 0 ; i < nodes . length ; i ++ ) {
2011-08-09 09:03:46 -03:00
var shapeType = nodes [ i ] . getShapeType ( ) ;
if ( result != null && result != shapeType ) {
result = null ;
break ;
}
result = shapeType ;
2011-08-07 18:59:20 -03:00
}
2011-08-09 09:03:46 -03:00
return result ;
2011-08-07 18:59:20 -03:00
} ,
setValue : function ( value ) {
2011-08-21 12:42:00 -03:00
designer . changeTopicShape ( value ) ;
2011-08-07 18:59:20 -03:00
}
} ;
2011-08-08 20:48:59 -03:00
this . _toolbarElems . push ( new mindplot . widget . TopicShapePanel ( "topicShape" , topicShapeModel ) ) ;
2011-08-07 18:59:20 -03:00
// Create icon panel dialog ...
var topicIconModel = {
getValue : function ( ) {
return null ;
} ,
setValue : function ( value ) {
2011-08-21 12:42:00 -03:00
designer . addIconType ( value ) ;
2011-08-07 18:59:20 -03:00
}
} ;
2011-08-08 20:48:59 -03:00
this . _toolbarElems . push ( new mindplot . widget . IconPanel ( 'topicIcon' , topicIconModel ) ) ;
2011-08-07 18:59:20 -03:00
2011-08-08 20:48:59 -03:00
// Topic color item ...
var topicColorModel =
{
getValue : function ( ) {
2011-08-24 23:41:39 -03:00
var nodes = designerModel . filterSelectedTopics ( ) ;
2011-08-09 09:03:46 -03:00
var result = null ;
2011-08-24 23:41:39 -03:00
for ( var i = 0 ; i < nodes . length ; i ++ ) {
2011-08-09 09:03:46 -03:00
var color = nodes [ i ] . getBackgroundColor ( ) ;
if ( result != null && result != color ) {
result = null ;
break ;
}
result = color ;
2011-08-09 01:45:24 -03:00
}
2011-08-09 09:03:46 -03:00
return result ;
2011-08-07 18:59:20 -03:00
} ,
2011-08-08 20:48:59 -03:00
setValue : function ( hex ) {
2011-08-21 12:42:00 -03:00
designer . changeBackgroundColor ( hex ) ;
2011-08-08 20:48:59 -03:00
}
2011-08-08 09:20:32 -03:00
} ;
2011-08-09 01:45:24 -03:00
this . _toolbarElems . push ( new mindplot . widget . ColorPalettePanel ( 'topicColor' , topicColorModel , baseUrl ) ) ;
2011-08-08 20:48:59 -03:00
// Border color item ...
var borderColorModel =
{
getValue : function ( ) {
2011-08-24 23:41:39 -03:00
var nodes = designerModel . filterSelectedTopics ( ) ;
2011-08-09 09:03:46 -03:00
var result = null ;
2011-08-24 23:41:39 -03:00
for ( var i = 0 ; i < nodes . length ; i ++ ) {
2011-08-09 09:03:46 -03:00
var color = nodes [ i ] . getBorderColor ( ) ;
if ( result != null && result != color ) {
result = null ;
break ;
}
result = color ;
2011-08-09 01:45:24 -03:00
}
2011-08-09 09:03:46 -03:00
return result ;
2011-08-07 18:59:20 -03:00
} ,
2011-08-08 20:48:59 -03:00
setValue : function ( hex ) {
2011-08-21 12:42:00 -03:00
designer . changeBorderColor ( hex ) ;
2011-08-08 20:48:59 -03:00
}
} ;
2011-08-09 01:45:24 -03:00
this . _toolbarElems . push ( new mindplot . widget . ColorPalettePanel ( 'topicBorder' , borderColorModel , baseUrl ) ) ;
2011-08-07 18:59:20 -03:00
2011-08-08 20:48:59 -03:00
// Font color item ...
var fontColorModel =
{
getValue : function ( ) {
2011-08-09 09:03:46 -03:00
var result = null ;
2011-08-24 23:41:39 -03:00
var nodes = designerModel . filterSelectedTopics ( ) ;
for ( var i = 0 ; i < nodes . length ; i ++ ) {
2011-08-09 09:03:46 -03:00
var color = nodes [ i ] . getFontColor ( ) ;
if ( result != null && result != color ) {
result = null ;
break ;
}
result = color ;
2011-08-09 01:45:24 -03:00
}
2011-08-09 09:03:46 -03:00
return result ;
2011-08-07 18:59:20 -03:00
} ,
2011-08-08 20:48:59 -03:00
setValue : function ( hex ) {
2011-08-21 12:42:00 -03:00
designer . changeFontColor ( hex ) ;
2011-08-08 20:48:59 -03:00
}
} ;
2011-08-09 01:45:24 -03:00
this . _toolbarElems . push ( new mindplot . widget . ColorPalettePanel ( 'fontColor' , fontColorModel , baseUrl ) ) ;
2011-08-08 20:48:59 -03:00
2011-10-04 01:16:29 -03:00
this . addButton ( 'zoomIn' , false , false , function ( ) {
2011-10-10 18:30:02 -03:00
designer . zoomIn ( ) ;
2011-10-04 01:16:29 -03:00
} ) ;
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this . addButton ( 'zoomOut' , false , false , function ( ) {
2011-10-10 18:30:02 -03:00
designer . zoomOut ( ) ;
2011-10-04 01:16:29 -03:00
} ) ;
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this . addButton ( 'undoEdition' , false , false , function ( ) {
2011-10-10 18:30:02 -03:00
designer . undo ( ) ;
2011-10-04 01:16:29 -03:00
} ) ;
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this . addButton ( 'redoEdition' , false , false , function ( ) {
2011-08-08 09:20:32 -03:00
designer . redo ( ) ;
2011-10-04 01:16:29 -03:00
} ) ;
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this . addButton ( 'addTopic' , true , false , function ( ) {
2011-09-14 08:51:38 -03:00
designer . createChildForSelectedNode ( ) ;
2011-10-04 01:16:29 -03:00
} ) ;
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this . addButton ( 'deleteTopic' , true , true , function ( ) {
2011-08-08 09:20:32 -03:00
designer . deleteCurrentNode ( ) ;
2011-10-04 01:16:29 -03:00
} ) ;
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this . addButton ( 'topicLink' , true , false , function ( ) {
2011-08-21 12:42:00 -03:00
designer . addLink ( ) ;
2011-10-04 01:16:29 -03:00
} ) ;
2011-08-08 09:20:32 -03:00
2011-10-09 17:59:16 -03:00
this . addButton ( 'topicRelation' , true , false , function ( event ) {
designer . showRelPivot ( event ) ;
2011-08-08 09:20:32 -03:00
} ) ;
2011-10-04 01:16:29 -03:00
this . addButton ( 'topicNote' , true , false , function ( ) {
2011-08-21 12:42:00 -03:00
designer . addNote ( ) ;
2011-10-04 01:16:29 -03:00
} ) ;
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this . addButton ( 'fontBold' , true , false , function ( ) {
2011-08-20 11:08:18 -03:00
designer . changeFontWeight ( ) ;
2011-08-08 09:20:32 -03:00
} ) ;
2011-10-04 01:16:29 -03:00
this . addButton ( 'fontItalic' , true , false , function ( ) {
2011-08-20 11:08:18 -03:00
designer . changeFontStyle ( ) ;
2011-08-08 09:20:32 -03:00
} ) ;
2011-10-15 02:52:44 -03:00
var saveElem = $ ( 'save' ) ;
2011-10-02 14:47:54 -03:00
if ( saveElem ) {
saveElem . addEvent ( 'click' , function ( ) {
if ( ! readOnly ) {
2011-10-15 02:52:44 -03:00
saveElem . setStyle ( 'cursor' , 'wait' ) ;
2011-10-02 14:47:54 -03:00
( function ( ) {
designer . save ( function ( ) {
saveElem . setStyle ( 'cursor' , 'pointer' ) ;
} , true ) ;
} ) . delay ( 1 ) ;
} else {
new Windoo . Confirm ( 'This option is not enabled in try mode. You must by signed in order to execute this action.<br/> to create an account click <a href="userRegistration.htm">here</a>' ,
{
'window' : { theme : Windoo . Themes . wise ,
title : ''
}
} ) ;
}
} ) ;
}
2011-10-15 02:52:44 -03:00
var discartElem = $ ( 'discart' ) ;
2011-10-02 14:47:54 -03:00
if ( discartElem ) {
discartElem . addEvent ( 'click' , function ( ) {
if ( ! readOnly ) {
displayLoading ( ) ;
window . document . location = "mymaps.htm" ;
} else {
displayLoading ( ) ;
window . document . location = "home.htm" ;
}
} ) ;
}
2011-10-15 02:52:44 -03:00
var tagElem = $ ( 'tagIt' ) ;
if ( tagElem ) {
tagElem . addEvent ( 'click' , function ( event ) {
var reqDialog = new MooDialog . Request ( '../c/tags.htm?mapId=' + mapId , null , { 'class' : 'MooDialogBig' } ) ;
// var reqDialog = new MooDialog.Request("embeddde.html",null,{'class': 'MooDialogBig'});
reqDialog . setRequestOptions ( {
onRequest : function ( ) {
reqDialog . setContent ( 'loading...' ) ;
}
} ) ;
2011-10-02 14:47:54 -03:00
} ) ;
2011-10-15 02:52:44 -03:00
}
var shareElem = $ ( 'shareIt' ) ;
if ( shareElem ) {
shareElem . addEvent ( 'click' , function ( ) {
2011-10-02 14:47:54 -03:00
} ) ;
2011-10-15 02:52:44 -03:00
}
2011-10-02 14:47:54 -03:00
2011-10-15 02:52:44 -03:00
var publishElem = $ ( 'publishIt' ) ;
if ( publishElem ) {
2011-10-02 14:47:54 -03:00
$ ( 'publishIt' ) . addEvent ( 'click' , function ( event ) {
new Windoo . Confirm ( 'This option is not enabled in try mode. You must by signed in order to execute this action.' ,
{
'window' : { theme : Windoo . Themes . wise ,
title : ''
}
} ) ;
} ) ;
2011-10-15 02:52:44 -03:00
}
var historyElem = $ ( 'history' ) ;
if ( historyElem ) {
historyElem . addEvent ( 'click' , function ( event ) {
2011-10-02 14:47:54 -03:00
new Windoo . Confirm ( 'This option is not enabled in try mode. You must by signed in order to execute this action.' ,
{
'window' : { theme : Windoo . Themes . wise ,
title : ''
}
} ) ;
} ) ;
}
2011-10-04 01:16:29 -03:00
this . _registerEvents ( designer ) ;
} ,
_registerEvents : function ( designer ) {
// Register on close events ...
this . _toolbarElems . forEach ( function ( elem ) {
elem . addEvent ( 'show' , function ( ) {
this . clear ( )
} . bind ( this ) ) ;
} . bind ( this ) ) ;
designer . addEvent ( 'onblur' , function ( ) {
var topics = designer . getModel ( ) . filterSelectedTopics ( ) ;
var rels = designer . getModel ( ) . filterSelectedRelations ( ) ;
this . _toolbarElems . forEach ( function ( button ) {
2011-10-04 23:59:21 -03:00
var disable = false ;
if ( button . isTopicAction ( ) && button . isRelAction ( ) ) {
disable = rels . length == 0 && topics . length == 0 ;
2011-10-10 18:30:02 -03:00
} else if ( ! button . isTopicAction ( ) && ! button . isRelAction ( ) ) {
disable = false ;
}
else if ( button . isTopicAction ( ) && topics . length == 0 ) {
2011-10-04 23:59:21 -03:00
disable = true ;
} else if ( button . isRelAction ( ) && rels . length == 0 ) {
disable = true ;
2011-10-04 01:16:29 -03:00
}
2011-10-04 23:59:21 -03:00
if ( disable ) {
2011-10-04 01:16:29 -03:00
button . disable ( ) ;
2011-10-10 18:30:02 -03:00
} else {
button . enable ( ) ;
2011-10-04 01:16:29 -03:00
}
2011-10-04 23:59:21 -03:00
2011-10-04 01:16:29 -03:00
} )
} . bind ( this ) ) ;
designer . addEvent ( 'onfocus' , function ( ) {
var topics = designer . getModel ( ) . filterSelectedTopics ( ) ;
var rels = designer . getModel ( ) . filterSelectedRelations ( ) ;
this . _toolbarElems . forEach ( function ( button ) {
if ( button . isTopicAction ( ) && topics . length > 0 ) {
button . enable ( ) ;
}
if ( button . isRelAction ( ) && rels . length > 0 ) {
button . enable ( ) ;
}
} )
} . bind ( this ) ) ;
2011-10-14 22:56:20 -03:00
// designer.addEvent("modelUpdate", function(event) {
// if (event.undoSteps > 0) {
// $("undoEdition").setStyle("background-image", "url(../nicons/undo.png)");
// } else {
// $("undoEdition").setStyle("background-image", "url(../nicons/undo.png)");
// }
//
// if (event.redoSteps > 0) {
// $("redoEdition").setStyle("background-image", "url(../nicons/redo.png)");
// } else {
// $("redoEdition").setStyle("background-image", "url(../nicons/redo.png)");
// }
//
// });
2011-10-04 01:16:29 -03:00
} ,
addButton : function ( buttonId , topic , rel , fn ) {
// Register Events ...
var button = new mindplot . widget . ToolbarItem ( buttonId , function ( event ) {
fn ( event ) ;
2011-10-10 18:30:02 -03:00
this . clear ( ) ;
2011-10-04 01:16:29 -03:00
} . bind ( this ) , { topicAction : topic , relAction : rel } ) ;
this . _toolbarElems . push ( button ) ;
2011-08-07 18:59:20 -03:00
} ,
clear : function ( ) {
2011-10-10 18:30:02 -03:00
this . _toolbarElems . forEach ( function ( item ) {
item . hide ( ) ;
2011-08-07 18:59:20 -03:00
} ) ;
}
2011-10-05 02:38:43 -03:00
} ) ;