[Title] paint bug fix
authorLee <jy.exe.lee@samsung.com>
Wed, 19 Sep 2012 05:23:06 +0000 (14:23 +0900)
committerLee <jy.exe.lee@samsung.com>
Wed, 19 Sep 2012 05:23:06 +0000 (14:23 +0900)
[Type] bug fix
[Module] Dynamic Analyzer
[Priority] major
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

org.tizen.dynamicanalyzer.widgets/src/org/tizen/dynamicanalyzer/widgets/button/DACustomButton.java [changed mode: 0644->0755]
org.tizen.dynamicanalyzer.widgets/src/org/tizen/dynamicanalyzer/widgets/timer/TimerClock.java [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 5f906c0..ba84073
@@ -44,8 +44,6 @@ import org.tizen.dynamicanalyzer.widgets.helper.ColorResources;
 
 public class DACustomButton extends Canvas {
        
-       private static int drawCount = 0;
-       
     public static final int MAX_SIZE = 100;
 
     public static final int STATE_NORMAL = 0;
@@ -154,7 +152,6 @@ public class DACustomButton extends Canvas {
 
         @Override
         public void paintControl(PaintEvent e) {
-               System.out.println("draw button : " + drawCount++ + " text : " + attr.getText());
             buttonRenderer.draw(e.gc, (Canvas) e.widget, state, attr);
         }
     };
old mode 100644 (file)
new mode 100755 (executable)
index 441022b..259b337
@@ -65,7 +65,7 @@ public class TimerClock extends Canvas {
        private static final int MIN = 60000;
        private static final int SEC = 1000;
        private static final int TWO_DIGIT = 10;
-       private static final int TIMER_PERIOD = 10;
+       private static final int TIMER_PERIOD = 1000;
        private static final String ZERO = "0";
 
        private Timer timer;
@@ -81,8 +81,8 @@ public class TimerClock extends Canvas {
        public TimerClock(Composite parent, int style) {
                super(parent, style);
                me = this;
-               me.addPaintListener(paintListener);
-               me.setBackground(ColorResources.RED);
+               addPaintListener(paintListener);
+               setBackground(ColorResources.RED);
        }
 
        private PaintListener paintListener = new PaintListener() {
@@ -93,8 +93,6 @@ public class TimerClock extends Canvas {
                        Rectangle myRect = me.getClientArea();
 
                        if (bgImage != null) {
-                               Rectangle imgRect = bgImage.getBounds();
-                               me.setSize(imgRect.width, imgRect.height);
                                myRect = me.getClientArea();
                                gc.drawImage(bgImage, myRect.x, myRect.y);
                        } else {