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

Annotation of /jsampler/trunk/src/org/jsampler/view/fantasia/FantasiaComboBox.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1730 - (hide annotations) (download)
Wed Apr 30 23:31:08 2008 UTC (16 years ago) by iliev
File size: 2398 byte(s)
* Implemented pluggable channel view
* Some UI changes due to some substance changes

1 iliev 1286 /*
2     * JSampler - a java front-end for LinuxSampler
3     *
4     * Copyright (C) 2005-2007 Grigor Iliev <grigor@grigoriliev.com>
5     *
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;
24    
25     import java.awt.Graphics;
26     import java.awt.Insets;
27    
28     import javax.swing.BorderFactory;
29     import javax.swing.JComboBox;
30     import javax.swing.JTextField;
31     import javax.swing.UIManager;
32    
33     import javax.swing.plaf.basic.BasicComboBoxEditor;
34    
35     import org.jvnet.substance.SubstanceLookAndFeel;
36    
37     /**
38     *
39     * @author Grigor Iliev
40     */
41     public class FantasiaComboBox extends JComboBox {
42     public
43     FantasiaComboBox() {
44     setUI(new FantasiaComboBoxUI());
45     setOpaque(true);
46     setBackground(new java.awt.Color(0x818181));
47     setBorder(BorderFactory.createEmptyBorder());
48     setRenderer(new FantasiaListCellRenderer());
49 iliev 1730 putClientProperty(SubstanceLookAndFeel.COLORIZATION_FACTOR, 1.0);
50 iliev 1286 //putClientProperty(SubstanceLookAndFeel.FLAT_PROPERTY, Boolean.TRUE);
51     //putClientProperty(SubstanceLookAndFeel.PAINT_ACTIVE_PROPERTY, Boolean.TRUE);
52     }
53    
54    
55     }
56    
57     class FantasiaComboBoxEditor extends BasicComboBoxEditor {
58    
59     /** Creates a new instance of <code>FantasiaComboBoxEditor</code> */
60     public
61     FantasiaComboBoxEditor() {
62     }
63    
64     protected JTextField
65     createEditorComponent() { return new TextEditor(); }
66    
67     static class TextEditor extends JTextField {
68     private static Insets pixmapInsets = new Insets(1, 1, 1, 1);
69    
70     TextEditor() {
71     setOpaque(false);
72     setBorder(BorderFactory.createEmptyBorder());
73     }
74    
75     public void
76     setText(String s) {
77     if(getText().equals(s)) return;
78     setText(s);
79     }
80    
81     protected void
82     paintComponent(Graphics g) {
83     super.paintComponent(g);
84    
85     PixmapPane.paintComponent(this, g, Res.gfxTextField, pixmapInsets);
86     }
87     }
88     }

  ViewVC Help
Powered by ViewVC