Lines Matching refs:activeGroup

6264       var activeGroup = this.getActiveGroup();
6270 if (activeGroup) {
6271 activeGroup.setCoords();
6470 activeGroup = this.getActiveGroup();
6487 this._renderObjects(canvasToDrawOn, activeGroup);
6488 this._renderActiveGroup(canvasToDrawOn, activeGroup);
6510 _renderObjects: function(ctx, activeGroup) { argument
6514 if (!activeGroup || this.preserveObjectStacking) {
6521 if (this._objects[i] && !activeGroup.contains(this._objects[i])) {
6533 _renderActiveGroup: function(ctx, activeGroup) { argument
6536 if (activeGroup) {
6541 if (activeGroup.contains(object)) {
6545 activeGroup._set('objects', sortedObjects);
6546 this._draw(ctx, activeGroup);
6609 var activeGroup = this.getActiveGroup();
6610 if (activeGroup) {
6611 activeGroup.render(ctx);
8215 var activeGroup = this.getActiveGroup(),
8219 activeGroup &&
8221 activeGroup.contains(object)),
8225 lt = new fabric.Point(activeGroup.left, activeGroup.top);
8265 var activeGroup = this.getActiveGroup(),
8272 activeGroup &&
8273 !activeGroup.contains(target) &&
8274 activeGroup !== target &&
8699 var activeGroup = this.getActiveGroup();
8700 if (activeGroup && !skipGroup && this.containsPoint(e, activeGroup)) {
8701 return activeGroup;
9062 var activeGroup = this.getActiveGroup();
9063 if (activeGroup) {
9064 this._drawGroupControls(ctx, activeGroup);
9074 _drawGroupControls: function(ctx, activeGroup) { argument
9075 activeGroup._renderControls(ctx);
9799 var activeGroup = this.getActiveGroup(),
9802 && (!activeGroup || !activeGroup.contains(target))
9903 var activeGroup = this.getActiveGroup();
9905 if (activeGroup.contains(target)) {
9907 activeGroup.removeWithUpdate(target);
9908 this._resetObjectTransform(activeGroup);
9911 if (activeGroup.size() === 1) {
9915 this.setActiveObject(activeGroup.item(0));
9920 activeGroup.addWithUpdate(target);
9921 this._resetObjectTransform(activeGroup);
9923 this.fire('selection:created', { target: activeGroup, e: e });
9924 activeGroup.set('active', true);
10034 var activeGroup = this.getActiveGroup();
10035 if (activeGroup) {
10036 activeGroup.setObjectsCoords().setCoords();
10037 activeGroup.isMoving = false;
10169 activeGroup = this.getActiveGroup(),
10197 if (activeGroup) {
10199 this._tempRemoveBordersControlsFromGroup(activeGroup);
10217 if (activeGroup) {
10218 this._restoreBordersControlsOnGroup(activeGroup);