summaryrefslogtreecommitdiff
path: root/morphic.js
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2013-05-15 16:03:56 +0200
committerjmoenig <jens@moenig.org>2013-05-15 16:03:56 +0200
commitb74695d4a0318d5850d24ccf5353e6281354b423 (patch)
treea293a4576201d69c969e1cbf9c780b51b8c6eeeb /morphic.js
parenta1ff3bfec5b18d83491494a5538737d9e3ab7a87 (diff)
downloadsnap-b74695d4a0318d5850d24ccf5353e6281354b423.tar.gz
snap-b74695d4a0318d5850d24ccf5353e6281354b423.zip
"Flat" GUI design options
preparing for "flat" GUI skins
Diffstat (limited to 'morphic.js')
-rw-r--r--morphic.js16
1 files changed, 9 insertions, 7 deletions
diff --git a/morphic.js b/morphic.js
index 233e60f..d7ad164 100644
--- a/morphic.js
+++ b/morphic.js
@@ -1035,7 +1035,7 @@
/*global window, HTMLCanvasElement, getMinimumFontHeight, FileReader, Audio,
FileList, getBlurredShadowSupport*/
-var morphicVersion = '2013-May-06';
+var morphicVersion = '2013-May-15';
var modules = {}; // keep track of additional loaded modules
var useBlurredShadows = getBlurredShadowSupport(); // check for Chrome-bug
@@ -1054,7 +1054,8 @@ var standardSettings = {
useSliderForInput: false,
useVirtualKeyboard: true,
isTouchDevice: false, // turned on by touch events, don't set
- rasterizeSVGs: false
+ rasterizeSVGs: false,
+ isFlat: false
};
var touchScreenSettings = {
@@ -1072,7 +1073,8 @@ var touchScreenSettings = {
useSliderForInput: true,
useVirtualKeyboard: true,
isTouchDevice: false,
- rasterizeSVGs: false
+ rasterizeSVGs: false,
+ isFlat: false
};
var MorphicPreferences = standardSettings;
@@ -5464,7 +5466,7 @@ SliderButtonMorph.prototype.init = function (orientation) {
this.color = new Color(80, 80, 80);
this.highlightColor = new Color(90, 90, 140);
this.pressColor = new Color(80, 80, 160);
- this.is3D = true;
+ this.is3D = false;
this.hasMiddleDip = true;
SliderButtonMorph.uber.init.call(this, orientation);
};
@@ -5477,21 +5479,21 @@ SliderButtonMorph.prototype.drawNew = function () {
var colorBak = this.color.copy();
SliderButtonMorph.uber.drawNew.call(this);
- if (this.is3D) {
+ if (this.is3D || !MorphicPreferences.isFlat) {
this.drawEdges();
}
this.normalImage = this.image;
this.color = this.highlightColor.copy();
SliderButtonMorph.uber.drawNew.call(this);
- if (this.is3D) {
+ if (this.is3D || !MorphicPreferences.isFlat) {
this.drawEdges();
}
this.highlightImage = this.image;
this.color = this.pressColor.copy();
SliderButtonMorph.uber.drawNew.call(this);
- if (this.is3D) {
+ if (this.is3D || !MorphicPreferences.isFlat) {
this.drawEdges();
}
this.pressImage = this.image;