JTextArea не будет сокращаться внутри JPanel с менеджером макета - PullRequest
0 голосов
/ 01 ноября 2011

У меня есть пользовательский макет, где основное поведение заключается в том, чтобы увеличивать и уменьшать дочернюю JTextArea, когда JScrollPane меняет свою ширину. На панели прокрутки отключена горизонтальная полоса прокрутки, а текстовая область должна расширяться и сжиматься, чтобы избежать необходимости в полосе прокрутки horz. В течение нескольких месяцев я работал над этим, используя один из стандартных менеджеров компоновки, но теперь я нужен какой-то другой функционал.

Что происходит, когда пользователь расширяет область прокрутки по горизонтали, вызывается метод layoutContainer менеджера компоновки. Он изменяет размер текстовой области, и текст корректно перерисовывается. Однако при уменьшении области прокрутки layoutContainer не вызывается, и текстовая область остается фиксированной. Я поместил некоторые printlns в метод layoutContainer, чтобы было понятно, когда он работает, а что нет.

Важно отметить, что проблема возникает, когда вызывается JTextArea setColumns. Я могу закомментировать это, и layoutContainer вызывается во время изменения размера. (Конечно, тогда размер текстовой области не изменяется.) Я также пытался использовать JTextArea.setSize, с теми же результатами.

Заранее спасибо за любые идеи.

Вот код:

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
@SuppressWarnings("serial")
class XTextArea extends JTextArea
{
    XTextArea (String text)
    {
        super (text);
    }

    public int getColumnWidth()
    {
        return super.getColumnWidth();
    }
}

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
class PackLeftLayout implements LayoutManager
{
    Component viewPort;
    Component flexWidthComponent;

    int preferredWidth = 0;
    int preferredHeight = 0;

    //----------------------------------------------------------------------------
    // viewPort - if null, compute width as sum of component's preferred width;
    //  otherwise width will be the viewPort's width.
    // flexWidthComponent - if not null, this component width will be sized to right
    //   justify rightmost component.
    public PackLeftLayout (Component viewPort, Component flexWidthComponent)
    {
        super ();
        this.viewPort = viewPort;
        this.flexWidthComponent = flexWidthComponent;
    }

    //----------------------------------------------------------------------------
    public void addLayoutComponent(String name, Component comp)
    {
    }

    //----------------------------------------------------------------------------
    public void removeLayoutComponent(Component comp)
    {
    }

    //----------------------------------------------------------------------------
    // Calculates the preferred size dimensions for the specified container, given the
    // components it contains.
    // parent - the container to be laid out
    // Components layed out left-to-right with no additional spacing.
    public Dimension preferredLayoutSize (Container parent)
    {
        Insets insets = parent.getInsets();
        int width = 0;
        int height = 0; // will become max of all component's preferred height

        // calculate sum of fixed width components - skip the flexwidth component
        width = insets.left + insets.right;
        for (int i = 0, limit = parent.getComponentCount();  i < limit;  i++)
        {
            Component c = parent.getComponent(i);
            if (c.isVisible())
            {
                if (c != flexWidthComponent)
                {
                    Dimension size = c.getPreferredSize();
                    if (size.height > height)
                    height = size.height;
                    width += size.width;
                }
            }
        }

        // determine width of flex width component
        if (flexWidthComponent != null)
        {
            int flexWidth = viewPort.getWidth() - width;
            if (flexWidth < 1)
                flexWidth = 1;

            if (flexWidthComponent instanceof XTextArea)
            {
                // some trickery here to get the xtextarea to tell us its preferred height
                // given a specific width.
                int colWidth = ((XTextArea)flexWidthComponent).getColumnWidth();

                // the following line causes the failure:
                ((XTextArea)flexWidthComponent).setColumns (flexWidth / colWidth);

                Dimension taSize = flexWidthComponent.getPreferredSize();
                width += taSize.width;

                if (taSize.height > height)
                    height = taSize.height;
            }
            else
            {
                Dimension size = flexWidthComponent.getPreferredSize();
                width += flexWidth;
                if (size.height > height)
                    height = size.height;
            }
        }

        preferredWidth = width; // already include insets
        preferredHeight = height + insets.top + insets.bottom;

        return new Dimension (preferredWidth, preferredHeight);
    }

    //----------------------------------------------------------------------------
    // Calculates the minimum size dimensions for the specified container, given the
    // components it contains.
    // parent - the component to be laid out
    public Dimension minimumLayoutSize(Container parent)
    {
      return new Dimension (10, 10); //???
    }

    static int k = 0;
    //----------------------------------------------------------------------------
    public void layoutContainer(Container parent)
    {
        System.out.println ("layout" + (k++));
        Insets insets = parent.getInsets();
        int left = insets.left;

        if (preferredWidth == 0 || preferredHeight == 0)
            preferredLayoutSize (parent);

        for (int i = 0, limit = parent.getComponentCount();  i < limit;  i++)
        {
            Component c = parent.getComponent(i);
            Dimension size = c.getPreferredSize();

            c.setBounds (left, insets.top, size.width, preferredHeight);

            left += size.width;
        }

        // force another layout calc
        preferredWidth = 0;
    }
}

public class ResizablePane extends JFrame
{

    public static void main(String[] args)
    {
        javax.swing.SwingUtilities.invokeLater(
            new Runnable() {public void run()
            {
                new ResizablePane();
            }});
    }

    ResizablePane ()
    {
        super ("ResizableDemo");

        // put a button and text area into a panel, then into a scroll pane
        JButton button = new JButton ("button");
        XTextArea text = new XTextArea (
            "For three years I ran as fast as I could, trying to live and love and learn at " +
            "double speed to make up for what Anne-Marie lost.  Trying to anesthetize myself " +
            "from what Id lost.  When I decided to read a book a day and write about it, Id " +
            "finally stopped running away.");

        text.setLineWrap (true);
        text.setWrapStyleWord (true);

        JScrollPane scroll = new JScrollPane();
        JPanel panel = new JPanel();
        panel.setLayout (new PackLeftLayout(scroll.getViewport(), text));
        panel.add (button);
        panel.add (text);

        scroll.setHorizontalScrollBarPolicy (ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
        scroll.setViewportView (panel);

        getContentPane().add(scroll);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        pack();
        setVisible(true);
    }
}

Ответы [ 2 ]

2 голосов
/ 11 апреля 2017

JTextArea не будет сокращаться внутри JPanel

Вам необходимо установить минимальный размер текстовой области:

textArea.SetMinimumSize(new Dimension(100,100));

пс. Я использую GridLayout в своей панели только с одним компонентом.

0 голосов
/ 16 октября 2015

Это старый вопрос, но я надеюсь, что он кому-нибудь пригодится.У меня работали:

jScrollPane = new JScrollPane(textArea); jScrollPane.setPreferredSize(jScrollPane.getPreferredSize());

...