I can not find anywhere how to add a button to the upper right corner of the Eclipse form, as in the screenshot.

The button seems to be part of the namespace of the form, is it part of the functionality of the form, or is it just another composite that looks like the title of the form? Any source code examples (even drafts) are highly appreciated.
Edit:
I managed to add buttons to the section, but still not in the form itself, I used the example given here:
http://svn.regilo.org/repository/regilo/trunk/org.regilo.menu/src/org/regilo/menu/editor/page/MenuPageMaster.java
private void createSectionToolbar(Section section, FormToolkit toolkit) { ToolBarManager toolBarManager = new ToolBarManager(SWT.FLAT); ToolBar toolbar = toolBarManager.createControl(section); final Cursor handCursor = new Cursor(Display.getCurrent(), SWT.CURSOR_HAND); toolbar.setCursor(handCursor);
Still no luck with the form itself.
source share