|
From: <de...@us...> - 2014-02-14 09:50:07
|
Revision: 8619
http://sourceforge.net/p/fudaa/svn/8619
Author: deniger
Date: 2014-02-14 09:50:02 +0000 (Fri, 14 Feb 2014)
Log Message:
-----------
Modified Paths:
--------------
trunk/framework/ebli-common/src/main/java/org/fudaa/ebli/controle/BSelecteurCheckBox.java
trunk/framework/ebli-common/src/main/java/org/fudaa/ebli/repere/RepereMouseKeyController.java
trunk/framework/ebli-common/src/main/resources/org/fudaa/ebli/ressource/ebli_en.fr_txt
Modified: trunk/framework/ebli-common/src/main/java/org/fudaa/ebli/controle/BSelecteurCheckBox.java
===================================================================
--- trunk/framework/ebli-common/src/main/java/org/fudaa/ebli/controle/BSelecteurCheckBox.java 2014-02-14 08:34:06 UTC (rev 8618)
+++ trunk/framework/ebli-common/src/main/java/org/fudaa/ebli/controle/BSelecteurCheckBox.java 2014-02-14 09:50:02 UTC (rev 8619)
@@ -25,6 +25,7 @@
JToggleButton cb_;
public static final String PROP_VISIBLE = "visible";
+ public static final String PROP_USER_VISIBLE = "userVisible";
private boolean inverseResult_;
Modified: trunk/framework/ebli-common/src/main/java/org/fudaa/ebli/repere/RepereMouseKeyController.java
===================================================================
--- trunk/framework/ebli-common/src/main/java/org/fudaa/ebli/repere/RepereMouseKeyController.java 2014-02-14 08:34:06 UTC (rev 8618)
+++ trunk/framework/ebli-common/src/main/java/org/fudaa/ebli/repere/RepereMouseKeyController.java 2014-02-14 09:50:02 UTC (rev 8619)
@@ -90,9 +90,9 @@
}
if (_e.isControlDown()) {
if (_e.getWheelRotation() > 0) {
- target_.zoomOut();
+ target_.zoomOnMouse(_e, true);
} else {
- target_.zoomIn();
+ target_.zoomOnMouse(_e, false);
}
} else {
if (_e.getWheelRotation() < 0) {
Modified: trunk/framework/ebli-common/src/main/resources/org/fudaa/ebli/ressource/ebli_en.fr_txt
===================================================================
--- trunk/framework/ebli-common/src/main/resources/org/fudaa/ebli/ressource/ebli_en.fr_txt 2014-02-14 08:34:06 UTC (rev 8618)
+++ trunk/framework/ebli-common/src/main/resources/org/fudaa/ebli/ressource/ebli_en.fr_txt 2014-02-14 09:50:02 UTC (rev 8619)
@@ -227,6 +227,7 @@
D\xE9placer s\xE9lection=Move selection
D\xE9placer un point=Move a point
D\xE9truire=Destroy
+Supprimer=Delete
Ecart minimal entre 2 graduations successives=Minimal increment between 2 scale marks
Ecart=Variation
Echelle des vecteurs=Vectors scale
@@ -887,4 +888,5 @@
Raffinement\: {0} point(s) ajout\xE9(s)=Refinement\: {0} points{s) added
D\xE9cimation\: {0} point(s) enlev\xE9(s)=Decimation\: {0} point(s) removed
{0} objet(s) d\xE9plac\xE9(s)={0} object{s) moved
-Ajouter un sommet=Add a vertex
\ No newline at end of file
+Ajouter un sommet=Add a vertex
+{0} obj. s\xE9lect.={0} selected obj.
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|