Unable to switch JPanels after loading jcef browser window

I am trying to use jcef browser inside my swing application but am getting problems. First of all, I am unable to add the jcef browser as a JPanel component to a jFrame. Then I try to add directly to the jframe [code] getContentPane (). add (browser.getUIComponent (), BorderLayout.CENTER); [/ code]

Now when the browser window is loaded inside the JFrame, and if I want to switch from another Jpanel, then it does not work in any way I cannot switch the screen after loading the CEF browser. Can anyone point out what I need to do. Here is my test jframe.

import org.cef.CefApp;
import org.cef.CefClient;
import org.cef.browser.CefBrowser;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

public class CardLayoutTst extends JFrame {
static CefBrowser browser = null;
static CefClient client = null;
private static final long serialVersionUID = 1L;
private JPanel cardPanel, jp1, jp2, buttonPanel;
private JLabel jl1, jl2;
private JButton btn1, btn2;
private CardLayout cardLayout = new CardLayout();

public CardLayoutTst() {
    setTitle("Test med CardLayout");
    setSize(400, 300);
    cardPanel = new JPanel();
    buttonPanel = new JPanel();
    cardPanel.setLayout(cardLayout);
    jp1 = new JPanel();
    jp2 = new JPanel();
    jl1 = new JLabel("Card 1");
    jl2 = new JLabel("Card 2");
    jp1.add(jl1);
    jp2.add(jl2);
    cardPanel.add(jp1, "1");
    cardPanel.add(browser.getUIComponent(), "2");
    btn1 = new JButton("Show Card 1");
    btn1.addActionListener(new ActionListener() {

        public void actionPerformed(ActionEvent e) {
            cardLayout.show(cardPanel, "1");
        }
    });
    btn2 = new JButton("Show Card 2");
    btn2.addActionListener(new ActionListener() {

        public void actionPerformed(ActionEvent e) {
            cardLayout.show(cardPanel, "2");
        }
    });
    buttonPanel.add(btn1);
    buttonPanel.add(btn2);
    add(cardPanel, BorderLayout.NORTH);
    add(buttonPanel, BorderLayout.SOUTH);

    addWindowListener(new WindowAdapter() {
        @Override
        public void windowClosing(WindowEvent e) {
            CefApp.getInstance().dispose();
            dispose();
        }
    });

}

public static void main(String[] args) {
    client = CefApp.getInstance().createClient();
    browser = client.createBrowser("http://www.google.com", false, false);

    EventQueue.invokeLater(new Runnable() {
        @Override
        public void run() {
            CardLayoutTst frame = new CardLayoutTst();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
        }
    });
}

      

}

+3


source to share


1 answer


A bit late, but I had the same problem. My friend solved the problem.

You need to create CefSettings, set windowless_rendering_enabled to false and pass this settings object to getInstance call:



CefSettings settings = new CefSettings();
settings.windowless_rendering_enabled = false;

client = CefApp.getInstance(settings).createClient();

      

0


source







All Articles