Author: Paul_R
Date: 2008-07-30 15:03:54 +0200 (Wed, 30 Jul 2008)
New Revision: 1426

Modified:
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/components/tuxPanel.java
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/flippersDown.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/flippersUp.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconBattery.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconDown.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconLeft.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconMicro.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconRight.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconRun.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconStop.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconUp.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/leftEyeClosed.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/leftEyeOff.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/leftEyeOn.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/mouthClosed.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/mouthOpened.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/rightEyeClosed.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/rightEyeOff.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/rightEyeOn.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/spinCharging.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/spinLeft.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/spinOff.png
   
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/spinRight.png
   software_suite_v2/software/tools/tuxController/trunk/src/GUI/mainWindow.java
Log:
* Updated the pictures


Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/components/tuxPanel.java
===================================================================
--- 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/components/tuxPanel.java
       2008-07-30 12:32:13 UTC (rev 1425)
+++ 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/components/tuxPanel.java
       2008-07-30 13:03:54 UTC (rev 1426)
@@ -101,14 +101,14 @@
     private void createEyesImage() {
         win.imgRightEye = new JLabel();
         win.panImages.add(win.imgRightEye);
-        win.imgRightEye.setBounds(30, 10, 180, 79);
+        win.imgRightEye.setBounds(30, 10, 196, 80);
         win.imgRightEye.setIcon(win.eyeRightOn);
         
 
         /* Left eye */
         win.imgLeftEye = new JLabel();
         win.panImages.add(win.imgLeftEye);
-        win.imgLeftEye.setBounds(210, 10, 189, 79);
+        win.imgLeftEye.setBounds(226, 10, 193, 80);
         win.imgLeftEye.setIcon(win.eyeLeftOn);
         win.imgLeftEye.setBackground(new java.awt.Color(82,82,82));
     }
@@ -157,7 +157,7 @@
     private void createMouthImage() {
         win.imgMouth = new JLabel();
         win.panImages.add(win.imgMouth);
-        win.imgMouth.setBounds(30, 89, 367, 62);
+        win.imgMouth.setBounds(30, 90, 389, 62);
         win.imgMouth.setIcon(win.mouthClose);
     }
 
@@ -206,7 +206,7 @@
     private void createFlippersImage() {
         win.imgFlippers = new JLabel();
         win.panImages.add(win.imgFlippers);
-        win.imgFlippers.setBounds(30, 151, 367, 142);
+        win.imgFlippers.setBounds(30, 152, 389, 152);
         win.imgFlippers.setIcon(win.flippersDown);
     }
 
@@ -249,7 +249,7 @@
     private void createSpinImage() {
         win.imgSpin = new JLabel();
         win.panImages.add(win.imgSpin);
-        win.imgSpin.setBounds(30, 293, 367, 83);
+        win.imgSpin.setBounds(30, 304, 389, 69);
         win.imgSpin.setIcon(win.spinOff);
     }
 

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/flippersDown.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/flippersUp.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconBattery.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconDown.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconLeft.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconMicro.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconRight.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconRun.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconStop.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/iconUp.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/leftEyeClosed.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/leftEyeOff.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/leftEyeOn.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/mouthClosed.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/mouthOpened.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/rightEyeClosed.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/rightEyeOff.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/rightEyeOn.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/spinCharging.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/spinLeft.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/spinOff.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/images/spinRight.png
===================================================================
(Binary files differ)

Modified: 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/mainWindow.java
===================================================================
--- 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/mainWindow.java    
    2008-07-30 12:32:13 UTC (rev 1425)
+++ 
software_suite_v2/software/tools/tuxController/trunk/src/GUI/mainWindow.java    
    2008-07-30 13:03:54 UTC (rev 1426)
@@ -125,15 +125,15 @@
 
         
         setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
-        dimWin = new java.awt.Dimension(400, 590); // 396, 592
-        this.setPreferredSize(new java.awt.Dimension(400, 600)); // 756, 591
+        dimWin = new java.awt.Dimension(430, 590); // 396, 592
+        this.setPreferredSize(new java.awt.Dimension(430, 600)); // 756, 591
         this.setMinimumSize(dimWin);
         this.setSize(dimWin);
         this.setResizable(false);
         thisLayout.rowWeights = new double[] {0.1, 0.1, 0.1, 0.1};
         thisLayout.rowHeights = new int[] {80, 390, 90, 30};
         thisLayout.columnWeights = new double[] {0.0, 0.0, 1.0};
-        thisLayout.columnWidths = new int[] {396, 1, 1};
+        thisLayout.columnWidths = new int[] {430, 1, 1};
         getContentPane().setLayout(thisLayout);
         this.addWindowListener(new WindowAdapter() {
             public void windowClosing(WindowEvent evt) {
@@ -150,32 +150,32 @@
     private void resizeWindow() {
         if (chkAdvancedView.isSelected() && chkTTS.isSelected())
         {
-            dimWin.setSize(760, 700);
-            thisLayout.columnWidths = new int[] {396, 360, 1};
+            dimWin.setSize(790, 700);
+            thisLayout.columnWidths = new int[] {430, 360, 1};
             thisLayout.rowHeights = new int[] {80, 390, 90, 140};
             this.setSize(dimWin);
             this.setResizable(false);
         }
         else if (!chkAdvancedView.isSelected() && !chkTTS.isSelected())
         {
-            dimWin.setSize(400, 590);
-            thisLayout.columnWidths = new int[] {396, 1, 1};
+            dimWin.setSize(430, 590);
+            thisLayout.columnWidths = new int[] {430, 1, 1};
             thisLayout.rowHeights = new int[] {80, 390, 90, 30};
             this.setSize(dimWin);
             this.setResizable(false);
         }       
         else if (chkAdvancedView.isSelected() && !chkTTS.isSelected())
         {
-            dimWin.setSize(760, 590);
-            thisLayout.columnWidths = new int[] {396, 360, 1};
+            dimWin.setSize(790, 590);
+            thisLayout.columnWidths = new int[] {430, 360, 1};
             thisLayout.rowHeights = new int[] {80, 390, 90, 30};
             this.setSize(dimWin);
             this.setResizable(false);
         }       
         else if (!chkAdvancedView.isSelected() && chkTTS.isSelected())
         {
-            dimWin.setSize(400, 700);
-            thisLayout.columnWidths = new int[] {396, 1, 1};
+            dimWin.setSize(430, 700);
+            thisLayout.columnWidths = new int[] {430, 1, 1};
             thisLayout.rowHeights = new int[] {80, 390, 90, 140};
             this.setSize(dimWin);
             this.setResizable(false);


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Tux-droid-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tux-droid-svn

Reply via email to