use of com.cubrid.common.ui.query.control.EditorToolBar in project cubrid-manager by CUBRID.
the class QueryEditorPart method createToolBar.
public void createToolBar() {
final Composite toolBarComposite = new Composite(topComposite, SWT.NONE);
toolBarComposite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
GridLayout gridLayout = new GridLayout();
gridLayout.marginHeight = 0;
gridLayout.horizontalSpacing = 0;
gridLayout.marginWidth = 0;
toolBarComposite.setLayout(gridLayout);
qeToolBar = new EditorToolBar(toolBarComposite, this);
fillInToolbar();
}
Aggregations