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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1729 - (show annotations) (download)
Tue Apr 29 22:22:40 2008 UTC (15 years, 11 months ago) by iliev
File size: 2243 byte(s)
* Added support for handling lost files in the Instruments Database
  (In the Instruments Database window choose Actions/Check For Lost Files)
* Fantasia: Added option to show the Instruments Database
  on the Right-Side Pane of the Fantasia's main window
  (choose Edit/Preferences, then click the `View' tab)
* Added new menu item in the Instruments Database window: Edit/Find
* Some minor bugfixes and enhancements

1 /*
2 * JSampler - a java front-end for LinuxSampler
3 *
4 * Copyright (C) 2005-2008 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 LeftSidePane extends PixmapPane {
39 JTabbedPane tabbedPane = new JTabbedPane();
40 private final OrchestrasPane orchestraPane = new OrchestrasPane();
41 private final MidiInstrumentsPane midiInstrumentsPane = new MidiInstrumentsPane();
42
43 /**
44 * Creates a new instance of <code>LeftSidePane</code>
45 */
46 public
47 LeftSidePane() {
48 super(Res.gfxRoundBg14);
49 setOpaque(false);
50 setPixmapInsets(new java.awt.Insets(6, 6, 6, 6));
51 setLayout(new BorderLayout());
52 JTabbedPane tp = tabbedPane;
53 tp.addTab(i18n.getLabel("LeftSidePane.tabOrchestras"), orchestraPane);
54 tp.addTab(i18n.getLabel("LeftSidePane.tabMidiInstruments"), midiInstrumentsPane);
55 add(tp);
56 setBorder(BorderFactory.createEmptyBorder(6, 6, 6, 6));
57
58 int i = preferences().getIntProperty("leftSidePane.tabIndex", 0);
59 if(tp.getTabCount() > i) tp.setSelectedIndex(i);
60 }
61
62 public void
63 savePreferences() {
64 orchestraPane.savePreferences();
65 midiInstrumentsPane.savePreferences();
66 int i = tabbedPane.getSelectedIndex();
67 if(i != -1) preferences().setIntProperty("leftSidePane.tabIndex", i);
68 }
69 }

  ViewVC Help
Powered by ViewVC