private void layoutComponents(Editor editor, int imageWidth) {
BorderLayoutBuilder layout = BorderLayoutBuilder.from(ui, 0, 5);
layout.setBorder(Empty.border(6));
JComponent titlePanel = layoutTitlePanel();
JLabel imageLabel = createImageLabel(editor, imageWidth);
layout.north(titlePanel).center(imageLabel);
}
private JComponent layoutTitlePanel() {
TwoColumnPanel grid = new TwoColumnPanel();
grid.setLeftWeights(1.0, 0.0).setLeftFill(Fill.HORIZONTAL).setLeftAnchor(Anchor.WEST).setLeftInsets(0, 0, 0, 10);