/[svn]/jsampler/trunk/src/org/jsampler/view/fantasia/basic/PixmapToggleButton.java
ViewVC logotype

Annotation of /jsampler/trunk/src/org/jsampler/view/fantasia/basic/PixmapToggleButton.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2146 - (hide annotations) (download)
Mon Oct 11 09:31:27 2010 UTC (13 years, 6 months ago) by iliev
File size: 2017 byte(s)
* Fantasia: Migrated to substance 6.1
* Fantasia: Some minor GUI enhancements

1 iliev 1785 /*
2     * JSampler - a java front-end for LinuxSampler
3     *
4 iliev 2146 * Copyright (C) 2005-2010 Grigor Iliev <grigor@grigoriliev.com>
5 iliev 1785 *
6     * This file is part of JSampler.
7     *
8     * JSampler is free software; you can redistribute it and/or modify
9     * it under the terms of the GNU General Public License version 2
10     * as published by the Free Software Foundation.
11     *
12     * JSampler is distributed in the hope that it will be useful,
13     * but WITHOUT ANY WARRANTY; without even the implied warranty of
14     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15     * GNU General Public License for more details.
16     *
17     * You should have received a copy of the GNU General Public License
18     * along with JSampler; if not, write to the Free Software
19     * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20     * MA 02111-1307 USA
21     */
22    
23     package org.jsampler.view.fantasia.basic;
24    
25     import java.awt.Cursor;
26     import java.awt.Dimension;
27     import java.awt.Insets;
28    
29     import javax.swing.ImageIcon;
30     import javax.swing.JToggleButton;
31    
32 iliev 2146 import javax.swing.plaf.basic.BasicToggleButtonUI;
33 iliev 1785
34    
35     /**
36     *
37     * @author Grigor Iliev
38     */
39     public class PixmapToggleButton extends JToggleButton {
40     private ImageIcon defaultIcon;
41     private ImageIcon selectedIcon;
42    
43     /** Creates a new instance of PixmapToggleButton */
44     public
45     PixmapToggleButton(ImageIcon defaultIcon, ImageIcon selectedIcon) {
46     this.defaultIcon = defaultIcon;
47     this.selectedIcon = selectedIcon;
48    
49     setContentAreaFilled(false);
50 iliev 2146 setOpaque(false);
51 iliev 1785 setFocusPainted(false);
52 iliev 2146 setBorder(javax.swing.BorderFactory.createEmptyBorder());
53 iliev 1785 setMargin(new Insets(0, 0, 0, 0));
54 iliev 2146
55 iliev 1785 setIcon(defaultIcon);
56     setSelectedIcon(selectedIcon);
57     setRolloverEnabled(false);
58     setPressedIcon(defaultIcon);
59     Dimension d = new Dimension(defaultIcon.getIconWidth(), defaultIcon.getIconHeight());
60     setPreferredSize(d);
61     setMaximumSize(d);
62 iliev 1915 setMinimumSize(d);
63 iliev 1785
64     setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
65     }
66 iliev 2146
67     @Override
68     public void
69     updateUI() { setUI(new BasicToggleButtonUI()); }
70 iliev 1785 }

  ViewVC Help
Powered by ViewVC