Merge branch 'tbutton_fix' into 'master'
[fanfix.git] / src / jexer / TButton.java
index 29f37432826cf7fbc3556df35462117cc557ced8..964035fc5a0ee47241aed898cb59c63c5354746d 100644 (file)
@@ -68,6 +68,11 @@ public class TButton extends TWidget {
      */
     private TAction action;
 
+    /**
+     * The background color used for the button "shadow", or NULL for "no shadow".
+     */
+    private CellAttributes shadowColor;
+    
     // ------------------------------------------------------------------------
     // Constructors -----------------------------------------------------------
     // ------------------------------------------------------------------------
@@ -92,6 +97,11 @@ public class TButton extends TWidget {
         setY(y);
         setHeight(2);
         setWidth(mnemonic.getRawLabel().length() + 3);
+
+        shadowColor = new CellAttributes();
+        shadowColor.setTo(getWindow().getBackground());
+        shadowColor.setForeColor(Color.BLACK);
+        shadowColor.setBold(false);
     }
 
     /**
@@ -209,10 +219,6 @@ public class TButton extends TWidget {
     public void draw() {
         CellAttributes buttonColor;
         CellAttributes menuMnemonicColor;
-        CellAttributes shadowColor = new CellAttributes();
-        shadowColor.setTo(getWindow().getBackground());
-        shadowColor.setForeColor(Color.BLACK);
-        shadowColor.setBold(false);
 
         if (!isEnabled()) {
             buttonColor = getTheme().getColor("tbutton.disabled");
@@ -226,18 +232,20 @@ public class TButton extends TWidget {
         }
 
         if (inButtonPress) {
-            putCharXY(1, 0, ' ', buttonColor);
-            putStringXY(2, 0, mnemonic.getRawLabel(), buttonColor);
+               putCharXY(1, 0, ' ', buttonColor);
+               putStringXY(2, 0, mnemonic.getRawLabel(), buttonColor);
             putCharXY(getWidth() - 1, 0, ' ', buttonColor);
         } else {
             putCharXY(0, 0, ' ', buttonColor);
             putStringXY(1, 0, mnemonic.getRawLabel(), buttonColor);
             putCharXY(getWidth() - 2, 0, ' ', buttonColor);
-
-            putCharXY(getWidth() - 1, 0,
-                GraphicsChars.CP437[0xDC], shadowColor);
-            hLineXY(1, 1, getWidth() - 1,
-                GraphicsChars.CP437[0xDF], shadowColor);
+               
+            if (shadowColor != null) {
+                   putCharXY(getWidth() - 1, 0,
+                       GraphicsChars.CP437[0xDC], shadowColor);
+                   hLineXY(1, 1, getWidth() - 1,
+                       GraphicsChars.CP437[0xDF], shadowColor);
+            }
         }
         if (mnemonic.getShortcutIdx() >= 0) {
             if (inButtonPress) {
@@ -247,7 +255,6 @@ public class TButton extends TWidget {
                 putCharXY(1 + mnemonic.getShortcutIdx(), 0,
                     mnemonic.getShortcut(), menuMnemonicColor);
             }
-
         }
     }
 
@@ -275,4 +282,22 @@ public class TButton extends TWidget {
         }
     }
 
+    /**
+     * Set the background color used for the button "shadow".
+     * <p>
+     * Can be NULL for "no shadow".
+     *
+     * @param color the new background color, or NULL if none
+     */
+    public void setShadowColor(final CellAttributes color) {
+       if (color != null) {
+               shadowColor = new CellAttributes();
+               shadowColor.setTo(color);
+               shadowColor.setForeColor(Color.BLACK);
+               shadowColor.setBold(false);
+       } else {
+               shadowColor = null;
+       }
+    }
+
 }