I want to provide a Java application with a Microsoft Ribbon view. After a quick search, I found the flamingo project useful. The problem is that I want to have a ribbon menu from right to left, and I cannot. I just want to know if the API supports any support for tape tasks from right to left, tape tapes, etc.
I tried to set the component orientation for the JRibbonBand instance this way:
JRibbonBand band1 = new JRibbonBand band1.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
as well as for the main tape:
frame.getRibbon().setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
Unfortunately, this did not work, except for the application menu button (round button on top).
Is there any other way to do this?
source
share