mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
Attempt to make text in number boxes unselectable.
This commit is contained in:
parent
b8323ce896
commit
e648445346
@ -19,6 +19,13 @@ var Controller = function() {
|
|||||||
elem.unselectable = "on";
|
elem.unselectable = "on";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.makeSelectable = function(elem) {
|
||||||
|
elem.onselectstart = function() { };
|
||||||
|
elem.style.MozUserSelect = "auto";
|
||||||
|
elem.style.KhtmlUserSelect = "auto";
|
||||||
|
elem.unselectable = "off";
|
||||||
|
}
|
||||||
|
|
||||||
this.domElement = document.createElement('div');
|
this.domElement = document.createElement('div');
|
||||||
this.domElement.setAttribute('class', 'guidat-controller ' + this.type);
|
this.domElement.setAttribute('class', 'guidat-controller ' + this.type);
|
||||||
|
|
||||||
|
@ -43,10 +43,15 @@ var NumberController = function() {
|
|||||||
}, false);
|
}, false);
|
||||||
document.addEventListener('mouseup', function(e) {
|
document.addEventListener('mouseup', function(e) {
|
||||||
isClicked = false;
|
isClicked = false;
|
||||||
|
_this.makeSelectable(GUI.domElement);
|
||||||
|
_this.makeSelectable(button);
|
||||||
}, false);
|
}, false);
|
||||||
document.addEventListener('mousemove', function(e) {
|
document.addEventListener('mousemove', function(e) {
|
||||||
if(isClicked) {
|
if(isClicked) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
_this.makeUnselectable(GUI.domElement);
|
||||||
|
_this.makeUnselectable(button);
|
||||||
|
|
||||||
py = y;
|
py = y;
|
||||||
y = e.offsetY;
|
y = e.offsetY;
|
||||||
var dy = y - py;
|
var dy = y - py;
|
||||||
@ -64,8 +69,8 @@ var NumberController = function() {
|
|||||||
}
|
}
|
||||||
button.value = inc;
|
button.value = inc;
|
||||||
_this.setValue(inc);
|
_this.setValue(inc);
|
||||||
}
|
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
}, false);
|
}, false);
|
||||||
|
|
||||||
this.__defineSetter__("position", function(val) {
|
this.__defineSetter__("position", function(val) {
|
||||||
|
@ -11,6 +11,7 @@ var StringController = function() {
|
|||||||
var initialValue = this.getValue();
|
var initialValue = this.getValue();
|
||||||
|
|
||||||
input.setAttribute('value', initialValue);
|
input.setAttribute('value', initialValue);
|
||||||
|
input.setAttribute('spellcheck', 'false');
|
||||||
this.domElement.addEventListener('mouseup', function() {
|
this.domElement.addEventListener('mouseup', function() {
|
||||||
input.focus();
|
input.focus();
|
||||||
input.select();
|
input.select();
|
||||||
|
@ -3,12 +3,13 @@
|
|||||||
<link href="gui.css" media="screen" rel="stylesheet" type="text/css" />
|
<link href="gui.css" media="screen" rel="stylesheet" type="text/css" />
|
||||||
<link href="demo.css" media="screen" rel="stylesheet" type="text/css" />
|
<link href="demo.css" media="screen" rel="stylesheet" type="text/css" />
|
||||||
<!--<script type="text/javascript" src="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.js"></script>-->
|
<!--<script type="text/javascript" src="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.js"></script>-->
|
||||||
|
|
||||||
|
<script type="text/javascript" src="gui.js"></script>
|
||||||
<script type="text/javascript" src="controller.js"></script>
|
<script type="text/javascript" src="controller.js"></script>
|
||||||
<script type="text/javascript" src="controller.string.js"></script>
|
<script type="text/javascript" src="controller.string.js"></script>
|
||||||
<script type="text/javascript" src="controller.number.js"></script>
|
<script type="text/javascript" src="controller.number.js"></script>
|
||||||
<script type="text/javascript" src="controller.boolean.js"></script>
|
<script type="text/javascript" src="controller.boolean.js"></script>
|
||||||
<script type="text/javascript" src="controller.function.js"></script>
|
<script type="text/javascript" src="controller.function.js"></script>
|
||||||
<script type="text/javascript" src="gui.js"></script>
|
|
||||||
<script id="demo" type="text/javascript">
|
<script id="demo" type="text/javascript">
|
||||||
var controllableObject =
|
var controllableObject =
|
||||||
{
|
{
|
||||||
@ -41,8 +42,6 @@ window.onload = function() {
|
|||||||
|
|
||||||
// Creates a checkbox
|
// Creates a checkbox
|
||||||
GUI.add(controllableObject, "booleanProperty");
|
GUI.add(controllableObject, "booleanProperty");
|
||||||
// Creates a checkbox
|
|
||||||
GUI.add(controllableObject, "anotherBooleanProperty");
|
|
||||||
|
|
||||||
// Creates a button
|
// Creates a button
|
||||||
GUI.add(controllableObject, "functionProperty");
|
GUI.add(controllableObject, "functionProperty");
|
||||||
|
3
gui.css
3
gui.css
@ -78,7 +78,6 @@
|
|||||||
}
|
}
|
||||||
.guidat-controller.number input[type=number] {
|
.guidat-controller.number input[type=number] {
|
||||||
width: 45px;
|
width: 45px;
|
||||||
cursor: ns-resize;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.guidat-controller.boolean input {
|
.guidat-controller.boolean input {
|
||||||
@ -88,7 +87,7 @@ margin-top: 6px;
|
|||||||
|
|
||||||
|
|
||||||
.guidat-controller:last-child {
|
.guidat-controller:last-child {
|
||||||
|
border-bottom: none;
|
||||||
-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
|
-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
|
||||||
-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
|
-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
|
||||||
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
|
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
|
||||||
|
22
gui.js
22
gui.js
@ -17,8 +17,8 @@ var GUI = new function() {
|
|||||||
|
|
||||||
// Have we already added this?
|
// Have we already added this?
|
||||||
if (alreadyControlled(object, propertyName)) {
|
if (alreadyControlled(object, propertyName)) {
|
||||||
error("Controller for \"" + propertyName+"\" already added.");
|
// error("Controller for \"" + propertyName+"\" already added.");
|
||||||
return;
|
// return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var value = object[propertyName];
|
var value = object[propertyName];
|
||||||
@ -102,7 +102,7 @@ var GUI = new function() {
|
|||||||
|
|
||||||
// GUI ... GUI
|
// GUI ... GUI
|
||||||
|
|
||||||
var domElement;
|
this.domElement = null;
|
||||||
var controllerContainer;
|
var controllerContainer;
|
||||||
var started = false;
|
var started = false;
|
||||||
var open = false;
|
var open = false;
|
||||||
@ -112,8 +112,8 @@ var GUI = new function() {
|
|||||||
|
|
||||||
this.start = function() {
|
this.start = function() {
|
||||||
|
|
||||||
domElement = document.createElement('div');
|
this.domElement = document.createElement('div');
|
||||||
domElement.setAttribute('id', 'guidat');
|
this.domElement.setAttribute('id', 'guidat');
|
||||||
|
|
||||||
controllerContainer = document.createElement('div');
|
controllerContainer = document.createElement('div');
|
||||||
controllerContainer.setAttribute('id', 'guidat-controllers');
|
controllerContainer.setAttribute('id', 'guidat-controllers');
|
||||||
@ -127,12 +127,12 @@ var GUI = new function() {
|
|||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
}, false);
|
}, false);
|
||||||
|
|
||||||
domElement.appendChild(controllerContainer);
|
this.domElement.appendChild(controllerContainer);
|
||||||
domElement.appendChild(toggleButton);
|
this.domElement.appendChild(toggleButton);
|
||||||
|
|
||||||
domElement.style.marginTop = -domElementMarginTop+"px";
|
this.domElement.style.marginTop = -domElementMarginTop+"px";
|
||||||
|
|
||||||
document.body.appendChild(domElement);
|
document.body.appendChild(this.domElement);
|
||||||
|
|
||||||
started = true;
|
started = true;
|
||||||
|
|
||||||
@ -149,13 +149,13 @@ var GUI = new function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
this.show = function() {
|
this.show = function() {
|
||||||
domElement.style.marginTop = 0+"px";
|
this.domElement.style.marginTop = 0+"px";
|
||||||
toggleButton.innerHTML = "Hide Controls";
|
toggleButton.innerHTML = "Hide Controls";
|
||||||
open = true;
|
open = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.hide = function() {
|
this.hide = function() {
|
||||||
domElement.style.marginTop = -domElementMarginTop+"px";
|
this.domElement.style.marginTop = -domElementMarginTop+"px";
|
||||||
toggleButton.innerHTML = "Show Controls";
|
toggleButton.innerHTML = "Show Controls";
|
||||||
open = false;
|
open = false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user