You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Ilya Okomin (JIRA)" <ji...@apache.org> on 2006/11/16 12:04:37 UTC

[jira] Created: (HARMONY-2209) [classlib][swing] Toolbar can be attached on top of another toolbar

[classlib][swing] Toolbar can be attached on top of another toolbar
-------------------------------------------------------------------

                 Key: HARMONY-2209
                 URL: http://issues.apache.org/jira/browse/HARMONY-2209
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Ilya Okomin
            Priority: Minor


Steps to reproduce:

1. Run the test case (written below): It creates 2 toolbars. 
2. Drag one toolbar on top of another: The frame around the dragging window becomes dark which means
that the toolbar can be attached here which is wrong. 
3. Drop the toolbar: Both toolbars are attached to the same position which is also wrong.

---------test.java----------

import java.awt.BorderLayout;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JToolBar;

public class test {
    public static void main(String[] args) {
        JFrame f = new JFrame("Toolbar demo");
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JToolBar toolBar = new JToolBar("Toolbar1");
        toolBar.add(new JButton("1"));
        f.getContentPane().add(toolBar, BorderLayout.PAGE_START);

        toolBar = new JToolBar("ToolBar2");
        toolBar.add(new JButton("2"));
        f.getContentPane().add(toolBar, BorderLayout.PAGE_END);

        f.setSize(300, 200);
        f.setVisible(true);
    }
}

--------------------------


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira