Change the position of tabs and buttons of minimize frames

Hello, i’ll writing my new program with Common library. I have two SingleCDockable in the left side and one CWorkingArea. How can I change the position of the tab with title of opened frames in the workingArea? The default Theme shows they at bottom, but Eclipse theme on top. Can I use default theme but shows on top?

If I minimize the SingleCDockable at left side the button are on top of my Frame. Can i show it at left?

Thanks
Monica

Position of tabs: have a look here.

Position of buttons:

dockable.setDefaultLocation( ExtendedMode.MINIMIZED, CLocation.base().minimalWest() );```
.. that will only work if there is not yet a position stored for "dockable", otherwise the location is just ignored.

Thank you Beni.
I’m currently using version 1.0.7 because it’s stable, I’ll download the 1.0.8 version and try the property for tab position

Monica