SWT виджет в Swing

У меня есть простой JFrame и JPanel внутри.

public class TestPanel extends JFrame {

    private JPanel contentPane;

    /**
     * Launch the application.
     */
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    TestPanel frame = new TestPanel();
                    frame.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    /**
     * Create the frame.
     */
    public TestPanel() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setBounds(100, 100, 450, 300);
        contentPane = new JPanel();
        contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
        setContentPane(contentPane);
        contentPane.setLayout(new BorderLayout(0, 0));

        JPanel panel = new JPanel();
        contentPane.add(panel, BorderLayout.CENTER);
    }

}

И у меня есть виджет SWT (Диаграмма Туманности Ганта). -> http://hexapixel.com/software/ganttwidget

Я хотел бы добавить этот виджет SWT в JPanel, фактически встроить его.

Каковы возможные способы сделать это? Спасибо за помощь!:-)

0 ответов

Другие вопросы по тегам