Issue 2 : Upon clicking a flyout menu, the other flyout menus should collapse, patch by codedread

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@26 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Narendra Sisodiya
2009-06-04 07:13:31 +00:00
parent 848ad0fc40
commit 936afe0c98
3 changed files with 28 additions and 29 deletions

View File

@@ -116,7 +116,7 @@
border-bottom: 1px solid #808080; border-bottom: 1px solid #808080;
} }
#tools_rect, #tools_ellipse { .tools_flyout {
position: absolute; position: absolute;
display: none; display: none;
height: 28px; height: 28px;

View File

@@ -23,13 +23,13 @@
<div id="tools_rect"> <div id="tools_rect">
<div id="tool_square" title="Square"></div> <div id="tool_square" title="Square"></div>
<div id="tool_rect" title="Rectangle"></div> <div id="tool_rect" class="tools_flyout" title="Rectangle"></div>
<div id="tool_fhrect" title="Free-Hand Rectangle"></div> <div id="tool_fhrect" title="Free-Hand Rectangle"></div>
</div> </div>
<div id="tools_ellipse"> <div id="tools_ellipse">
<div id="tool_circle" title="Circle"></div> <div id="tool_circle" title="Circle"></div>
<div id="tool_ellipse" title="Ellipse"></div> <div id="tool_ellipse" class="tools_flyout" title="Ellipse"></div>
<div id="tool_fhellipse" title="Free-Hand Ellipse"></div> <div id="tool_fhellipse" title="Free-Hand Ellipse"></div>
</div> </div>

View File

@@ -42,71 +42,66 @@ $(document).ready(function(){
} }
SvgCanvas.setStrokeColor(color); SvgCanvas.setStrokeColor(color);
}); });
// This is a common function used when a tool has been clicked (chosen)
// It does several common things:
// - hides any flyout menus
// - removes the tool_button_current class from whatever tool currently has it
// - adds the tool_button_current class to the button passed in
var toolButtonClick = function(button){
$('.tools_flyout').hide();
$('.tool_button_current').removeClass('tool_button_current').addClass('tool_button');
$(button).addClass('tool_button_current');
};
$('#tool_select').click(function(){ $('#tool_select').click(function(){
toolButtonClick(this);
SvgCanvas.setMode('select'); SvgCanvas.setMode('select');
$('.tool_button_current').removeClass('tool_button_current').addClass('tool_button');
$(this).addClass('tool_button_current');
}); });
$('#tool_path').click(function(){ $('#tool_path').click(function(){
toolButtonClick(this);
SvgCanvas.setMode('path'); SvgCanvas.setMode('path');
$('.tool_button_current').removeClass('tool_button_current').addClass('tool_button');
$(this).addClass('tool_button_current');
}); });
$('#tool_line').click(function(){ $('#tool_line').click(function(){
toolButtonClick(this);
SvgCanvas.setMode('line'); SvgCanvas.setMode('line');
$('.tool_button_current').removeClass('tool_button_current').addClass('tool_button');
$(this).addClass('tool_button_current');
}); });
$('#tool_square').click(function(){ $('#tool_square').click(function(){
toolButtonClick('#tools_rect_show');
SvgCanvas.setMode('square'); SvgCanvas.setMode('square');
$('#tools_rect').hide();
$('.tool_button_current').removeClass('tool_button_current').addClass('tool_button');
$('#tools_rect_show').addClass('tool_button_current');
}); });
$('#tool_rect').click(function(){ $('#tool_rect').click(function(){
toolButtonClick('#tools_rect_show');
SvgCanvas.setMode('rect'); SvgCanvas.setMode('rect');
$('#tools_rect').hide();
$('.tool_button_current').removeClass('tool_button_current').addClass('tool_button');
$('#tools_rect_show').addClass('tool_button_current');
}); });
$('#tool_fhrect').click(function(){ $('#tool_fhrect').click(function(){
toolButtonClick('#tools_rect_show');
SvgCanvas.setMode('fhrect'); SvgCanvas.setMode('fhrect');
$('#tools_rect').hide();
$('.tool_button_current').removeClass('tool_button_current').addClass('tool_button');
$('#tools_rect_show').addClass('tool_button_current');
}); });
$('#tool_circle').click(function(){ $('#tool_circle').click(function(){
toolButtonClick('#tools_ellipse_show');
SvgCanvas.setMode('circle'); SvgCanvas.setMode('circle');
$('#tools_ellipse').hide();
$('.tool_button_current').removeClass('tool_button_current').addClass('tool_button');
$('#tools_ellipse_show').addClass('tool_button_current');
}); });
$('#tool_ellipse').click(function(){ $('#tool_ellipse').click(function(){
toolButtonClick('#tools_ellipse_show');
SvgCanvas.setMode('ellipse'); SvgCanvas.setMode('ellipse');
$('#tools_ellipse').hide();
$('.tool_button_current').removeClass('tool_button_current').addClass('tool_button');
$('#tools_ellipse_show').addClass('tool_button_current');
}); });
$('#tool_fhellipse').click(function(){ $('#tool_fhellipse').click(function(){
toolButtonClick('#tools_ellipse_show');
SvgCanvas.setMode('fhellipse'); SvgCanvas.setMode('fhellipse');
$('#tools_ellipse').hide();
$('.tool_button_current').removeClass('tool_button_current').addClass('tool_button');
$('#tools_ellipse_show').addClass('tool_button_current');
}); });
$('#tool_delete').click(function(){ $('#tool_delete').click(function(){
toolButtonClick(this);
SvgCanvas.setMode('delete'); SvgCanvas.setMode('delete');
$('.tool_button_current').removeClass('tool_button_current').addClass('tool_button');
$(this).addClass('tool_button_current');
}); });
$('#tool_clear').click(function(){ $('#tool_clear').click(function(){
@@ -155,7 +150,9 @@ $(document).ready(function(){
picker.setColor($(this).attr('value')); picker.setColor($(this).attr('value'));
}); });
// This hides any flyouts and then shows the rect flyout
$('#tools_rect_show').click(function(){ $('#tools_rect_show').click(function(){
$('.tools_flyout').hide();
$('#tools_rect').show(); $('#tools_rect').show();
}); });
/* /*
@@ -163,7 +160,9 @@ $(document).ready(function(){
$('#tools_rect').hide(); $('#tools_rect').hide();
}); });
*/ */
// This hides any flyouts and then shows the circle flyout
$('#tools_ellipse_show').click(function(){ $('#tools_ellipse_show').click(function(){
$('.tools_flyout').hide();
$('#tools_ellipse').show(); $('#tools_ellipse').show();
}); });
/* /*