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

Contents of /jsampler/trunk/src/org/jsampler/view/fantasia/SidePane.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1329 - (show annotations) (download)
Sat Sep 8 18:33:05 2007 UTC (16 years, 7 months ago) by iliev
File size: 2209 byte(s)
* Implemented some UI enhancements for speeding up
  the MIDI instrument mapping process
* some minor bugfixes

1 /*
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.BorderLayout;
26
27 import javax.swing.BorderFactory;
28 import javax.swing.JScrollPane;
29 import javax.swing.JTabbedPane;
30
31 import static org.jsampler.view.fantasia.FantasiaI18n.i18n;
32 import static org.jsampler.view.fantasia.FantasiaPrefs.preferences;
33
34 /**
35 *
36 * @author Grigor Iliev
37 */
38 public class SidePane extends PixmapPane {
39 JTabbedPane tabbedPane = new JTabbedPane();
40 private final OrchestrasPane orchestraPane = new OrchestrasPane();
41 private final MidiInstrumentsPane midiInstrumentsPane = new MidiInstrumentsPane();
42
43 /** Creates a new instance of <code>SidePane</code> */
44 public
45 SidePane() {
46 super(Res.gfxRoundBg14);
47 setOpaque(false);
48 setPixmapInsets(new java.awt.Insets(6, 6, 6, 6));
49 setLayout(new BorderLayout());
50 JTabbedPane tp = tabbedPane;
51 tp.addTab(i18n.getLabel("SidePane.tabOrchestras"), orchestraPane);
52 tp.addTab(i18n.getLabel("SidePane.tabMidiInstruments"), midiInstrumentsPane);
53 add(tp);
54 setBorder(BorderFactory.createEmptyBorder(6, 6, 6, 6));
55
56 int i = preferences().getIntProperty("SidePane.tabIndex", 0);
57 if(tp.getTabCount() > i) tp.setSelectedIndex(i);
58 }
59
60 public void
61 savePreferences() {
62 orchestraPane.savePreferences();
63 midiInstrumentsPane.savePreferences();
64 int i = tabbedPane.getSelectedIndex();
65 if(i != -1) preferences().setIntProperty("SidePane.tabIndex", i);
66 }
67 }

  ViewVC Help
Powered by ViewVC