2010-04-16 22:09:23 +00:00
|
|
|
// Title: items.js (revision-a)
|
2010-03-29 23:08:48 +00:00
|
|
|
// ##########
|
|
|
|
// An Item is an object that adheres to an interface consisting of these methods:
|
2010-04-02 00:20:59 +00:00
|
|
|
// reloadBounds: function()
|
2010-04-03 00:33:06 +00:00
|
|
|
// getBounds: function(), inherited from Item
|
2010-03-30 00:23:35 +00:00
|
|
|
// setBounds: function(rect, immediately)
|
2010-04-03 00:33:06 +00:00
|
|
|
// setPosition: function(left, top, immediately), inherited from Item
|
|
|
|
// setSize: function(width, height, immediately), inherited from Item
|
|
|
|
// getZ: function(), inherited from Item
|
|
|
|
// setZ: function(value)
|
2010-03-29 23:08:48 +00:00
|
|
|
// close: function()
|
|
|
|
// addOnClose: function(referenceObject, callback)
|
|
|
|
// removeOnClose: function(referenceObject)
|
|
|
|
//
|
2010-04-01 00:24:16 +00:00
|
|
|
// In addition, it must have these properties:
|
|
|
|
// isAnItem, set to true (set by Item)
|
|
|
|
// defaultSize, a Point
|
2010-04-02 00:20:59 +00:00
|
|
|
// bounds, a Rect (set by Item in _init() via reloadBounds())
|
|
|
|
// debug (set by Item)
|
|
|
|
// $debug (set by Item in _init())
|
|
|
|
// container, a DOM element (set by Item in _init())
|
2010-04-01 00:24:16 +00:00
|
|
|
//
|
2010-04-02 00:20:59 +00:00
|
|
|
// Its container must also have a jQuery data named 'item' that points to the item.
|
|
|
|
// This is set by Item in _init().
|
2010-03-29 23:08:48 +00:00
|
|
|
|
2010-04-08 23:36:11 +00:00
|
|
|
|
|
|
|
// Class: Item
|
|
|
|
// Superclass for all visible objects (tabs and groups).
|
2010-03-29 23:08:48 +00:00
|
|
|
window.Item = function() {
|
2010-04-08 23:36:11 +00:00
|
|
|
// Variable: isAnItem
|
|
|
|
// Always true for Items
|
2010-03-29 23:08:48 +00:00
|
|
|
this.isAnItem = true;
|
2010-04-08 23:36:11 +00:00
|
|
|
|
|
|
|
// Variable: bounds
|
|
|
|
// The position and size of this Item, represented as a <Rect>.
|
2010-04-02 00:20:59 +00:00
|
|
|
this.bounds = null;
|
2010-04-08 23:36:11 +00:00
|
|
|
|
|
|
|
// Variable: debug
|
|
|
|
// When set to true, displays a rectangle on the screen that corresponds with bounds.
|
|
|
|
// May be used for additional debugging features in the future.
|
2010-04-02 00:20:59 +00:00
|
|
|
this.debug = false;
|
2010-04-08 23:36:11 +00:00
|
|
|
|
|
|
|
// Variable: $debug
|
|
|
|
// If <debug> is true, this will be the jQuery object for the visible rectangle.
|
2010-04-02 00:20:59 +00:00
|
|
|
this.$debug = null;
|
2010-04-08 23:36:11 +00:00
|
|
|
|
|
|
|
// Variable: container
|
|
|
|
// The outermost DOM element that describes this item on screen.
|
2010-04-02 00:20:59 +00:00
|
|
|
this.container = null;
|
2010-04-17 00:21:03 +00:00
|
|
|
|
|
|
|
// Variable: locked
|
|
|
|
// Affects whether an item can be pushed, closed, renamed, etc
|
|
|
|
this.locked = false;
|
2010-04-26 20:37:39 +00:00
|
|
|
|
|
|
|
// Variable: parent
|
|
|
|
// The group that this item is a child of
|
|
|
|
this.parent = null;
|
2010-04-26 23:48:46 +00:00
|
|
|
|
|
|
|
// Variable: userSize
|
|
|
|
// A <Point> that describes the last size specifically chosen by the user.
|
|
|
|
// Used by unsquish.
|
|
|
|
this.userSize = null;
|
2010-04-29 00:18:02 +00:00
|
|
|
|
|
|
|
// Variable: locked
|
|
|
|
// True if the item should not be changed.
|
|
|
|
this.locked = false;
|
2010-03-29 23:08:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
window.Item.prototype = {
|
2010-04-02 00:20:59 +00:00
|
|
|
// ----------
|
2010-04-08 23:36:11 +00:00
|
|
|
// Function: _init
|
|
|
|
// Initializes the object. To be called from the subclass's intialization function.
|
|
|
|
//
|
|
|
|
// Parameters:
|
|
|
|
// container - the outermost DOM element that describes this item onscreen.
|
2010-04-02 00:20:59 +00:00
|
|
|
_init: function(container) {
|
|
|
|
this.container = container;
|
|
|
|
|
|
|
|
if(this.debug) {
|
|
|
|
this.$debug = $('<div />')
|
|
|
|
.css({
|
|
|
|
border: '2px solid green',
|
|
|
|
zIndex: -10,
|
|
|
|
position: 'absolute'
|
|
|
|
})
|
|
|
|
.appendTo($('body'));
|
|
|
|
}
|
|
|
|
|
|
|
|
this.reloadBounds();
|
|
|
|
$(this.container).data('item', this);
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------
|
2010-04-08 23:36:11 +00:00
|
|
|
// Function: getBounds
|
|
|
|
// Returns a copy of the Item's bounds as a <Rect>.
|
2010-04-02 00:20:59 +00:00
|
|
|
getBounds: function() {
|
|
|
|
return new Rect(this.bounds);
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------
|
2010-04-08 23:36:11 +00:00
|
|
|
// Function: setPosition
|
|
|
|
// Moves the Item to the specified location.
|
|
|
|
//
|
|
|
|
// Parameters:
|
|
|
|
// left - the new left coordinate relative to the window
|
|
|
|
// top - the new top coordinate relative to the window
|
|
|
|
// immediately - if false or omitted, animates to the new position;
|
|
|
|
// otherwise goes there immediately
|
2010-04-02 00:20:59 +00:00
|
|
|
setPosition: function(left, top, immediately) {
|
|
|
|
this.setBounds(new Rect(left, top, this.bounds.width, this.bounds.height), immediately);
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------
|
2010-04-08 23:36:11 +00:00
|
|
|
// Function: setSize
|
|
|
|
// Resizes the Item to the specified size.
|
|
|
|
//
|
|
|
|
// Parameters:
|
|
|
|
// width - the new width in pixels
|
|
|
|
// height - the new height in pixels
|
|
|
|
// immediately - if false or omitted, animates to the new size;
|
|
|
|
// otherwise resizes immediately
|
2010-04-02 00:20:59 +00:00
|
|
|
setSize: function(width, height, immediately) {
|
|
|
|
this.setBounds(new Rect(this.bounds.left, this.bounds.top, width, height), immediately);
|
|
|
|
},
|
|
|
|
|
2010-04-26 23:48:46 +00:00
|
|
|
// ----------
|
|
|
|
// Function: setUserSize
|
|
|
|
// Remembers the current size as one the user has chosen.
|
|
|
|
setUserSize: function() {
|
|
|
|
this.userSize = new Point(this.bounds.width, this.bounds.height);
|
|
|
|
},
|
|
|
|
|
2010-04-03 00:33:06 +00:00
|
|
|
// ----------
|
2010-04-08 23:36:11 +00:00
|
|
|
// Function: getZ
|
|
|
|
// Returns the zIndex of the Item.
|
2010-04-03 00:33:06 +00:00
|
|
|
getZ: function() {
|
|
|
|
return parseInt($(this.container).css('zIndex'));
|
|
|
|
},
|
2010-04-27 23:11:49 +00:00
|
|
|
|
|
|
|
// ----------
|
|
|
|
// Function: setRotation
|
|
|
|
// Rotates the object to the given number of degrees.
|
|
|
|
setRotation: function(degrees) {
|
|
|
|
var value = "rotate(%deg)".replace(/%/, degrees);
|
|
|
|
$(this.container).css({"-moz-transform": value});
|
|
|
|
},
|
2010-04-03 00:33:06 +00:00
|
|
|
|
2010-03-29 23:08:48 +00:00
|
|
|
// ----------
|
2010-04-08 23:36:11 +00:00
|
|
|
// Function: pushAway
|
|
|
|
// Pushes all other items away so none overlap this Item.
|
2010-03-29 23:08:48 +00:00
|
|
|
pushAway: function() {
|
|
|
|
var buffer = 10;
|
|
|
|
|
|
|
|
var items = Items.getTopLevelItems();
|
|
|
|
$.each(items, function(index, item) {
|
|
|
|
var data = {};
|
|
|
|
data.bounds = item.getBounds();
|
|
|
|
data.startBounds = new Rect(data.bounds);
|
|
|
|
data.generation = Infinity;
|
|
|
|
item.pushAwayData = data;
|
|
|
|
});
|
|
|
|
|
|
|
|
var itemsToPush = [this];
|
|
|
|
this.pushAwayData.generation = 0;
|
|
|
|
|
|
|
|
var pushOne = function(baseItem) {
|
|
|
|
var baseData = baseItem.pushAwayData;
|
|
|
|
var bb = new Rect(baseData.bounds);
|
|
|
|
bb.inset(-buffer, -buffer);
|
|
|
|
var bbc = bb.center();
|
|
|
|
|
|
|
|
$.each(items, function(index, item) {
|
2010-04-17 00:21:03 +00:00
|
|
|
if(item == baseItem || item.locked)
|
2010-03-29 23:08:48 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
var data = item.pushAwayData;
|
|
|
|
if(data.generation <= baseData.generation)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var bounds = data.bounds;
|
|
|
|
var box = new Rect(bounds);
|
|
|
|
box.inset(-buffer, -buffer);
|
|
|
|
if(box.intersects(bb)) {
|
|
|
|
var offset = new Point();
|
|
|
|
var center = box.center();
|
|
|
|
if(Math.abs(center.x - bbc.x) < Math.abs(center.y - bbc.y)) {
|
2010-04-17 00:21:03 +00:00
|
|
|
/* offset.x = Math.floor((Math.random() * 10) - 5); */
|
2010-03-29 23:08:48 +00:00
|
|
|
if(center.y > bbc.y)
|
|
|
|
offset.y = bb.bottom - box.top;
|
|
|
|
else
|
|
|
|
offset.y = bb.top - box.bottom;
|
|
|
|
} else {
|
2010-04-17 00:21:03 +00:00
|
|
|
/* offset.y = Math.floor((Math.random() * 10) - 5); */
|
2010-03-29 23:08:48 +00:00
|
|
|
if(center.x > bbc.x)
|
|
|
|
offset.x = bb.right - box.left;
|
|
|
|
else
|
|
|
|
offset.x = bb.left - box.right;
|
|
|
|
}
|
|
|
|
|
|
|
|
bounds.offset(offset);
|
|
|
|
data.generation = baseData.generation + 1;
|
2010-04-17 00:21:03 +00:00
|
|
|
data.pusher = baseItem;
|
2010-03-29 23:08:48 +00:00
|
|
|
itemsToPush.push(item);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
while(itemsToPush.length)
|
|
|
|
pushOne(itemsToPush.shift());
|
|
|
|
|
2010-04-17 00:21:03 +00:00
|
|
|
// ___ Squish!
|
2010-04-20 21:45:29 +00:00
|
|
|
var pageBounds = Items.getPageBounds();
|
2010-04-20 22:42:06 +00:00
|
|
|
if(Items.squishMode == 'squish') {
|
2010-04-17 00:21:03 +00:00
|
|
|
$.each(items, function(index, item) {
|
|
|
|
var data = item.pushAwayData;
|
|
|
|
if(data.generation == 0 || item.locked)
|
|
|
|
return;
|
|
|
|
|
2010-04-20 18:47:54 +00:00
|
|
|
function apply(item, posStep, posStep2, sizeStep) {
|
2010-04-17 00:21:03 +00:00
|
|
|
var data = item.pushAwayData;
|
|
|
|
if(data.generation == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var bounds = data.bounds;
|
|
|
|
bounds.width -= sizeStep.x;
|
|
|
|
bounds.height -= sizeStep.y;
|
|
|
|
bounds.left += posStep.x;
|
|
|
|
bounds.top += posStep.y;
|
|
|
|
|
2010-04-27 00:23:15 +00:00
|
|
|
if(!item.isAGroup) {
|
|
|
|
if(sizeStep.y > sizeStep.x) {
|
|
|
|
var newWidth = bounds.height * (TabItems.tabWidth / TabItems.tabHeight);
|
|
|
|
bounds.left += (bounds.width - newWidth) / 2;
|
|
|
|
bounds.width = newWidth;
|
|
|
|
} else {
|
|
|
|
var newHeight = bounds.width * (TabItems.tabHeight / TabItems.tabWidth);
|
|
|
|
bounds.top += (bounds.height - newHeight) / 2;
|
|
|
|
bounds.height = newHeight;
|
|
|
|
}
|
2010-04-17 00:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var pusher = data.pusher;
|
|
|
|
if(pusher)
|
|
|
|
apply(pusher, posStep.plus(posStep2), posStep2, sizeStep);
|
|
|
|
}
|
|
|
|
|
|
|
|
var bounds = data.bounds;
|
|
|
|
var posStep = new Point();
|
|
|
|
var posStep2 = new Point();
|
|
|
|
var sizeStep = new Point();
|
2010-04-20 18:47:54 +00:00
|
|
|
|
|
|
|
if(bounds.left < pageBounds.left) {
|
|
|
|
posStep.x = pageBounds.left - bounds.left;
|
|
|
|
sizeStep.x = posStep.x / data.generation;
|
|
|
|
posStep2.x = -sizeStep.x;
|
|
|
|
} else if(bounds.right > pageBounds.right) {
|
|
|
|
posStep.x = pageBounds.right - bounds.right;
|
|
|
|
sizeStep.x = -posStep.x / data.generation;
|
|
|
|
posStep.x += sizeStep.x;
|
|
|
|
posStep2.x = sizeStep.x;
|
|
|
|
}
|
|
|
|
|
2010-04-17 00:21:03 +00:00
|
|
|
if(bounds.top < pageBounds.top) {
|
|
|
|
posStep.y = pageBounds.top - bounds.top;
|
|
|
|
sizeStep.y = posStep.y / data.generation;
|
|
|
|
posStep2.y = -sizeStep.y;
|
|
|
|
} else if(bounds.bottom > pageBounds.bottom) {
|
|
|
|
posStep.y = pageBounds.bottom - bounds.bottom;
|
|
|
|
sizeStep.y = -posStep.y / data.generation;
|
|
|
|
posStep.y += sizeStep.y;
|
|
|
|
posStep2.y = sizeStep.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(posStep.x || posStep.y || sizeStep.x || sizeStep.y)
|
|
|
|
apply(item, posStep, posStep2, sizeStep);
|
|
|
|
});
|
2010-04-20 22:42:06 +00:00
|
|
|
} else if(Items.squishMode == 'all') {
|
|
|
|
var newPageBounds = null;
|
|
|
|
$.each(items, function(index, item) {
|
|
|
|
if(item.locked)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var data = item.pushAwayData;
|
|
|
|
var bounds = data.bounds;
|
|
|
|
newPageBounds = (newPageBounds ? newPageBounds.union(bounds) : new Rect(bounds));
|
|
|
|
});
|
|
|
|
|
|
|
|
var wScale = pageBounds.width / newPageBounds.width;
|
|
|
|
var hScale = pageBounds.height / newPageBounds.height;
|
|
|
|
var scale = Math.min(hScale, wScale);
|
|
|
|
$.each(items, function(index, item) {
|
|
|
|
if(item.locked)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var data = item.pushAwayData;
|
|
|
|
var bounds = data.bounds;
|
|
|
|
|
|
|
|
bounds.left -= newPageBounds.left;
|
|
|
|
bounds.left *= scale;
|
|
|
|
bounds.width *= scale;
|
|
|
|
|
|
|
|
bounds.top -= newPageBounds.top;
|
|
|
|
bounds.top *= scale;
|
|
|
|
bounds.height *= scale;
|
|
|
|
});
|
2010-04-17 00:21:03 +00:00
|
|
|
}
|
|
|
|
|
2010-04-20 21:45:29 +00:00
|
|
|
// ___ Unsquish
|
|
|
|
$.each(items, function(index, item) {
|
2010-04-20 22:42:06 +00:00
|
|
|
if(item.locked)
|
|
|
|
return;
|
|
|
|
|
2010-04-20 21:45:29 +00:00
|
|
|
var data = item.pushAwayData;
|
|
|
|
var bounds = data.bounds;
|
2010-04-20 22:42:06 +00:00
|
|
|
var newBounds = new Rect(bounds);
|
2010-04-26 23:48:46 +00:00
|
|
|
|
|
|
|
var newSize;
|
|
|
|
if(item.userSize)
|
|
|
|
newSize = new Point(item.userSize);
|
|
|
|
else
|
|
|
|
newSize = new Point(TabItems.tabWidth, TabItems.tabHeight);
|
2010-04-20 21:45:29 +00:00
|
|
|
|
2010-04-26 23:48:46 +00:00
|
|
|
if(item.isAGroup) {
|
|
|
|
newBounds.width = Math.max(newBounds.width, newSize.x);
|
|
|
|
newBounds.height = Math.max(newBounds.height, newSize.y);
|
|
|
|
} else {
|
|
|
|
if(bounds.width < newSize.x) {
|
|
|
|
newBounds.width = newSize.x;
|
|
|
|
newBounds.height = newSize.y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
newBounds.left -= (newBounds.width - bounds.width) / 2;
|
|
|
|
newBounds.top -= (newBounds.height - bounds.height) / 2;
|
|
|
|
|
2010-04-20 22:42:06 +00:00
|
|
|
var offset = new Point();
|
|
|
|
if(newBounds.left < pageBounds.left)
|
|
|
|
offset.x = pageBounds.left - newBounds.left;
|
|
|
|
else if(newBounds.right > pageBounds.right)
|
|
|
|
offset.x = pageBounds.right - newBounds.right;
|
2010-04-20 21:45:29 +00:00
|
|
|
|
2010-04-20 22:42:06 +00:00
|
|
|
if(newBounds.top < pageBounds.top)
|
|
|
|
offset.y = pageBounds.top - newBounds.top;
|
|
|
|
else if(newBounds.bottom > pageBounds.bottom)
|
|
|
|
offset.y = pageBounds.bottom - newBounds.bottom;
|
2010-04-20 21:45:29 +00:00
|
|
|
|
2010-04-20 22:42:06 +00:00
|
|
|
newBounds.offset(offset);
|
|
|
|
|
|
|
|
if(!bounds.equals(newBounds)) {
|
2010-04-20 21:45:29 +00:00
|
|
|
var blocked = false;
|
|
|
|
$.each(items, function(index, item2) {
|
|
|
|
if(item2 == item)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var data2 = item2.pushAwayData;
|
|
|
|
var bounds2 = data2.bounds;
|
|
|
|
if(bounds2.intersects(newBounds)) {
|
|
|
|
blocked = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2010-04-22 21:26:57 +00:00
|
|
|
if(!blocked) {
|
2010-04-20 21:45:29 +00:00
|
|
|
data.bounds = newBounds;
|
2010-04-22 21:26:57 +00:00
|
|
|
}
|
2010-04-20 21:45:29 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2010-04-17 00:21:03 +00:00
|
|
|
// ___ Apply changes
|
2010-03-29 23:08:48 +00:00
|
|
|
$.each(items, function(index, item) {
|
|
|
|
var data = item.pushAwayData;
|
2010-04-17 00:21:03 +00:00
|
|
|
var bounds = data.bounds;
|
|
|
|
if(!bounds.equals(data.startBounds)) {
|
|
|
|
item.setBounds(bounds);
|
|
|
|
}
|
2010-03-29 23:08:48 +00:00
|
|
|
});
|
2010-04-02 00:20:59 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// ----------
|
2010-04-08 23:36:11 +00:00
|
|
|
// Function: _updateDebugBounds
|
|
|
|
// Called by a subclass when its bounds change, to update the debugging rectangles on screen.
|
|
|
|
// This functionality is enabled only by the debug property.
|
2010-04-02 00:20:59 +00:00
|
|
|
_updateDebugBounds: function() {
|
|
|
|
if(this.$debug) {
|
|
|
|
this.$debug.css({
|
|
|
|
left: this.bounds.left,
|
|
|
|
top: this.bounds.top,
|
|
|
|
width: this.bounds.width,
|
|
|
|
height: this.bounds.height
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2010-03-29 23:08:48 +00:00
|
|
|
};
|
|
|
|
|
2010-03-29 18:55:13 +00:00
|
|
|
// ##########
|
2010-04-08 23:36:11 +00:00
|
|
|
// Class: Items
|
|
|
|
// Keeps track of all Items.
|
2010-03-29 18:55:13 +00:00
|
|
|
window.Items = {
|
2010-04-20 22:42:06 +00:00
|
|
|
// ----------
|
|
|
|
// Variable: squishMode
|
|
|
|
// How to deal when things go off the edge.
|
|
|
|
// Options include: all, squish, push
|
|
|
|
squishMode: 'squish',
|
|
|
|
|
2010-04-20 21:45:29 +00:00
|
|
|
// ----------
|
|
|
|
// Function: init
|
|
|
|
// Initialize the object
|
|
|
|
init: function() {
|
|
|
|
},
|
|
|
|
|
2010-03-29 23:08:48 +00:00
|
|
|
// ----------
|
2010-04-08 23:36:11 +00:00
|
|
|
// Function: item
|
|
|
|
// Given a DOM element representing an Item, returns the Item.
|
2010-03-29 23:08:48 +00:00
|
|
|
item: function(el) {
|
|
|
|
return $(el).data('item');
|
|
|
|
},
|
|
|
|
|
2010-03-29 18:55:13 +00:00
|
|
|
// ----------
|
2010-04-08 23:36:11 +00:00
|
|
|
// Function: getTopLevelItems
|
|
|
|
// Returns an array of all Items not grouped into groups.
|
2010-03-29 18:55:13 +00:00
|
|
|
getTopLevelItems: function() {
|
|
|
|
var items = [];
|
|
|
|
|
2010-04-01 00:24:16 +00:00
|
|
|
$('.tab, .group').each(function() {
|
2010-03-29 18:55:13 +00:00
|
|
|
$this = $(this);
|
2010-04-26 20:37:39 +00:00
|
|
|
var item = $this.data('item');
|
|
|
|
if(!item.parent && !$this.hasClass('phantom'))
|
|
|
|
items.push(item);
|
2010-03-29 18:55:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return items;
|
2010-04-15 00:12:06 +00:00
|
|
|
},
|
|
|
|
|
2010-04-17 00:21:03 +00:00
|
|
|
// ----------
|
|
|
|
// Function: getPageBounds
|
|
|
|
// Returns a <Rect> defining the area of the page <Item>s should stay within.
|
|
|
|
getPageBounds: function() {
|
|
|
|
var top = 20;
|
|
|
|
var bottom = TabItems.tabHeight + 10; // MAGIC NUMBER: giving room for the "new tabs" group
|
2010-04-26 23:48:46 +00:00
|
|
|
var width = Math.max(100, window.innerWidth);
|
|
|
|
var height = Math.max(100, window.innerHeight - (top + bottom));
|
|
|
|
return new Rect(0, top, width, height);
|
2010-04-17 00:21:03 +00:00
|
|
|
},
|
|
|
|
|
2010-04-15 00:12:06 +00:00
|
|
|
// ----------
|
|
|
|
// Function: arrange
|
|
|
|
// Arranges the given items in a grid within the given bounds,
|
|
|
|
// maximizing item size but maintaining standard tab aspect ratio for each
|
|
|
|
//
|
|
|
|
// Parameters:
|
|
|
|
// items - an array of <Item>s
|
|
|
|
// bounds - a <Rect> defining the space to arrange within
|
|
|
|
// options - an object with options. If options.animate is false, doesn't animate, otherwise it does.
|
2010-04-29 00:18:02 +00:00
|
|
|
// If options.z is defined, set all of the items to that z, otherwise leave their z alone.
|
2010-04-15 00:12:06 +00:00
|
|
|
arrange: function(items, bounds, options) {
|
|
|
|
var animate;
|
|
|
|
if(!options || typeof(options.animate) == 'undefined')
|
|
|
|
animate = true;
|
|
|
|
else
|
|
|
|
animate = options.animate;
|
|
|
|
|
|
|
|
if(typeof(options) == 'undefined')
|
|
|
|
options = {};
|
|
|
|
|
|
|
|
var tabAspect = TabItems.tabHeight / TabItems.tabWidth;
|
|
|
|
var count = items.length;
|
|
|
|
if(!count)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var columns = 1;
|
|
|
|
var padding = options.padding || 0;
|
|
|
|
var yScale = 1.1; // to allow for titles
|
|
|
|
var rows;
|
|
|
|
var tabWidth;
|
|
|
|
var tabHeight;
|
|
|
|
var totalHeight;
|
|
|
|
|
|
|
|
function figure() {
|
|
|
|
rows = Math.ceil(count / columns);
|
|
|
|
tabWidth = (bounds.width - (padding * (columns - 1))) / columns;
|
|
|
|
tabHeight = tabWidth * tabAspect;
|
|
|
|
totalHeight = (tabHeight * yScale * rows) + (padding * (rows - 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
figure();
|
|
|
|
|
|
|
|
while(rows > 1 && totalHeight > bounds.height) {
|
|
|
|
columns++;
|
|
|
|
figure();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(rows == 1) {
|
2010-04-27 23:11:49 +00:00
|
|
|
tabWidth = Math.min(bounds.width / Math.max(2, count), bounds.height / tabAspect);
|
2010-04-15 00:12:06 +00:00
|
|
|
tabHeight = tabWidth * tabAspect;
|
|
|
|
}
|
|
|
|
|
|
|
|
var box = new Rect(bounds.left, bounds.top, tabWidth, tabHeight);
|
|
|
|
var row = 0;
|
|
|
|
var column = 0;
|
|
|
|
var immediately;
|
|
|
|
|
|
|
|
$.each(items, function(index, item) {
|
|
|
|
/*
|
|
|
|
if(animate == 'sometimes')
|
|
|
|
immediately = (typeof(item.groupData.row) == 'undefined' || item.groupData.row == row);
|
|
|
|
else
|
|
|
|
*/
|
|
|
|
immediately = !animate;
|
|
|
|
|
2010-04-29 00:18:02 +00:00
|
|
|
if(!item.locked) {
|
|
|
|
item.setBounds(box, immediately);
|
|
|
|
item.setRotation(0);
|
|
|
|
if(options.z)
|
|
|
|
item.setZ(options.z);
|
|
|
|
}
|
|
|
|
|
2010-04-15 00:12:06 +00:00
|
|
|
/*
|
|
|
|
item.groupData.column = column;
|
|
|
|
item.groupData.row = row;
|
|
|
|
*/
|
|
|
|
|
|
|
|
box.left += box.width + padding;
|
|
|
|
column++;
|
|
|
|
if(column == columns) {
|
|
|
|
box.left = bounds.left;
|
|
|
|
box.top += (box.height * yScale) + padding;
|
|
|
|
column = 0;
|
|
|
|
row++;
|
|
|
|
}
|
|
|
|
});
|
2010-03-29 18:55:13 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-04-20 21:45:29 +00:00
|
|
|
window.Items.init();
|
|
|
|
|