[openrtm-commit:00671] r257 - trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/editor/figure
openrtm @ openrtm.org
openrtm @ openrtm.org
2012年 2月 7日 (火) 23:37:49 JST
Author: sakamoto
Date: 2012-02-07 23:37:49 +0900 (Tue, 07 Feb 2012)
New Revision: 257
Modified:
trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/editor/figure/InPortFigure.java
trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/editor/figure/OutPortFigure.java
trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/editor/figure/ServicePortFigure.java
Log:
Resize Port Figure #2294
Modified: trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/editor/figure/InPortFigure.java
===================================================================
--- trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/editor/figure/InPortFigure.java 2012-02-07 14:29:42 UTC (rev 256)
+++ trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/editor/figure/InPortFigure.java 2012-02-07 14:37:49 UTC (rev 257)
@@ -21,14 +21,14 @@
setFill(true);
PointList pointList = new PointList(5);
- pointList.addPoint(-5, -5);
- pointList.addPoint(-5, 5);
- pointList.addPoint(5, 5);
+ pointList.addPoint(-6, -6);
+ pointList.addPoint(-6, 6);
+ pointList.addPoint(6, 6);
pointList.addPoint(0, 0);
- pointList.addPoint(5, -5);
+ pointList.addPoint(6, -6);
setTemplate(pointList);
- setSize(20 + 1, 20 + 1);
+ setSize(24 + 1, 24 + 1);
setBackgroundColor(ColorConstants.darkBlue);
setForegroundColor(ColorConstants.red);
Modified: trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/editor/figure/OutPortFigure.java
===================================================================
--- trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/editor/figure/OutPortFigure.java 2012-02-07 14:29:42 UTC (rev 256)
+++ trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/editor/figure/OutPortFigure.java 2012-02-07 14:37:49 UTC (rev 257)
@@ -20,14 +20,14 @@
setFill(true);
PointList pointList = new PointList(5);
- pointList.addPoint(-5, -5);
- pointList.addPoint(0, -5);
- pointList.addPoint(5, 0);
- pointList.addPoint(0, 5);
- pointList.addPoint(-5, 5);
+ pointList.addPoint(-6, -6);
+ pointList.addPoint(0, -6);
+ pointList.addPoint(6, 0);
+ pointList.addPoint(0, 6);
+ pointList.addPoint(-6, 6);
setTemplate(pointList);
- setSize(20 + 1, 20 + 1);
+ setSize(24 + 1, 24 + 1);
setBackgroundColor(ColorConstants.darkGreen);
setForegroundColor(ColorConstants.red);
Modified: trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/editor/figure/ServicePortFigure.java
===================================================================
--- trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/editor/figure/ServicePortFigure.java 2012-02-07 14:29:42 UTC (rev 256)
+++ trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/editor/figure/ServicePortFigure.java 2012-02-07 14:37:49 UTC (rev 257)
@@ -21,13 +21,13 @@
setFill(true);
PointList pointList = new PointList(5);
- pointList.addPoint(-5, -5);
- pointList.addPoint(-5, 5);
- pointList.addPoint(5, 5);
- pointList.addPoint(5, -5);
+ pointList.addPoint(-6, -6);
+ pointList.addPoint(-6, 6);
+ pointList.addPoint(6, 6);
+ pointList.addPoint(6, -6);
setTemplate(pointList);
- setSize(20 + 1, 20 + 1);
+ setSize(24 + 1, 24 + 1);
setBackgroundColor(ColorConstants.lightBlue);
setForegroundColor(ColorConstants.red);
openrtm-commit メーリングリストの案内