Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

- Added shortcut keys support for #132

Open
wants to merge 2 commits into
base: gh-pages
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 75 additions & 1 deletion js/kitchensink/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,24 @@ function addAccessors($scope) {
canvas.add(textSample);
};

$scope.addTextbox = function() {
var text = 'Lorem ipsum dolor sit amet,\nconsectetur adipisicing elit,\nsed do eiusmod tempor incididunt\nut labore et dolore magna aliqua.\n' +
'Ut enim ad minim veniam,\nquis nostrud exercitation ullamco\nlaboris nisi ut aliquip ex ea commodo consequat.';

var textBoxSample = new fabric.Textbox(text, {
left: getRandomInt(350, 400),
top: getRandomInt(350, 400),
width: 500,
fontFamily: 'helvetica',
angle: getRandomInt(-10, 10),
fill: '#' + getRandomColor(),
scaleX: 0.5,
scaleY: 0.5,
});

canvas.add(textBoxSample);
};

var addShape = function(shapeName) {

console.log('adding shape', shapeName);
Expand Down Expand Up @@ -713,7 +731,27 @@ function addAccessors($scope) {
}
});

canvas.add(iText, iText2);
var textBox = new fabric.Textbox('foo bar\nbaz', {
left: 50,
top: 10,
fontFamily: 'Helvetica',
fill: '#333',
styles: {
0: {
0: { fill: 'red' },
1: { fill: 'red' },
2: { fill: 'red' }
},
2: {
0: { fill: 'blue' },
1: { fill: 'blue' },
2: { fill: 'blue' },
3: { fill: 'blue' }
}
}
});

canvas.add(iText, iText2, textBox);
}

addTexts();
Expand Down Expand Up @@ -899,6 +937,42 @@ function addAccessors($scope) {
return patternCanvas;
};
}

function bindShortcuts(){

$(document).keydown(function(event) {
// If Control for Windows and metaKey for Max
if((event.ctrlKey || event.metaKey) && event.which === 66 && $scope.getText()) { // 66 = B/b key event.preventDefault();
$scope.toggleBold();
return false;
}else if((event.ctrlKey || event.metaKey) && event.which === 73 && $scope.getText()){ // 73=I/i
event.preventDefault();
$scope.toggleItalic();
return false;
}else if((event.ctrlKey || event.metaKey) && event.which === 85 && $scope.getText()){ // 73=I/i
event.preventDefault();
$scope.toggleUnderline();
return false;
}else if((event.ctrlKey || event.metaKey) && event.which === 107 && $scope.getText()){ // 107 = +(plus)
event.preventDefault();
$scope.setFontSize(parseInt($scope.getFontSize(),10)+1);
$scope.toggleUnderline();
return false;
}else if((event.ctrlKey || event.metaKey) && event.which === 109 && $scope.getText()){ // 109 = -(minus)
event.preventDefault();
$scope.setFontSize(parseInt($scope.getFontSize(),10)-1);
$scope.toggleUnderline();
return false;
}else if(event.which === 46 || ((event.ctrlKey || event.metaKey) && event.which === 68)){ // 46 = DELETE key, 68 = D/d
event.preventDefault();
$scope.removeSelected();
return false;
}
});
}

bindShortcuts();

}

function watchCanvas($scope) {
Expand Down
1 change: 1 addition & 0 deletions posts/demos/_posts/2011-9-1-kitchensink.html
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@

<p>
<button class="btn" ng-click="addText()">Add text</button>
<button class="btn" ng-click="addTextbox()">Add textbox</button>
</p>

<p>Add <strong>images</strong> to canvas:</p>
Expand Down