Hi,
ich habe ein kleines Problem mit einer GUI-Anwendung:
Ich versuche in einem JFrame eine Toolbar einzufügen, allerdings ohne Erfolg.
Das TabbedPane und die Menübar werden korrekt hinzugefügt, nur die Toolbar will nicht...
Stehe irgendwie grad im Wald. Hat jemand nen Wegweiser?
ich habe ein kleines Problem mit einer GUI-Anwendung:
Ich versuche in einem JFrame eine Toolbar einzufügen, allerdings ohne Erfolg.
Code:
private void init()
{
openFiles = new Vector<ExtendetTextPane>();
//at first, read the correct settings
try {
options = Preferences.readFromFile(new File("settings.ini"));
} catch(IOException e) {
System.out.println("Could not read existing settings.ini. Creating new file.");
options = new Preferences();
}
this.setTitle(TITLE + " " + VERSION);
this.setResizable(true);
this.setJMenuBar(setMenuBar());
this.setLayout(new BorderLayout());
this.add(BorderLayout.NORTH, setToolBar());
tabbedPane = new JTabbedPane(JTabbedPane.TOP,
JTabbedPane.SCROLL_TAB_LAYOUT
);
tabbedPane.addContainerListener(this);
this.setContentPane(tabbedPane);
manager = new WindowManager(this);
}
Code:
private Component setToolBar()
{
if (toolBar == null) {
System.out.println("toolbar");
toolBar = new JToolBar();
toolBar.add(new JButton("Test"));
toolBar.addSeparator();
toolBar.add(new JButton("Test2"));
toolBar.add(Box.createHorizontalStrut(5));
toolBar.add(Box.createHorizontalGlue());
toolBar.setFloatable(false);
}
return toolBar;
}
Das TabbedPane und die Menübar werden korrekt hinzugefügt, nur die Toolbar will nicht...
Stehe irgendwie grad im Wald. Hat jemand nen Wegweiser?