RCP 4 Toggle a button in the toolbar

1.5k Views Asked by At

I am trying to do the following:

  1. Create a button in the toolbar (Already done as a 'handled tool item')
  2. Click on the button and have the button look like it's pressed in (I read something about using IAction.AS_CHECK_BOX, but I can't find any clear RCP 4 examples on how to do this). When the button is pressed in a certain action can be performed (For the sake of this example let's call it "Action A")
  3. Click on the button again and have the button look like it's no longer pressed in. When the button is no longer pressed in a different action can be performed ("For the sake of this example let's call it "Action B")

A more concrete example would be a text editor program. Let's say the toolbar has a 'Bold' button. The user presses the 'Bold' button and the button icon now looks like it has been pressed in. At this point, everything the user types into the text area will be in bold. The user then presses the 'Bold' button again and the button no longer looks like it is pressed in. At this point, everything the user types into the text area is in regular font.

I have tried searching around but cannot find any examples that clearly show how to do it. Any help would be appreciated!

2

There are 2 best solutions below

0
On BEST ANSWER

When you add the 'Handler Tool Item' to the Toolbar in the Application.e4xmi you can specify the 'Type' as 'Check' to get the pressed / not pressed behavior.

In your Handler for the item you can inject the 'MToolItem' so that you can test the checked state:

@Execute
public void execute(final MToolItem item)
{
  if (item.isSelected())
    ... button pressed in
  else
    ... button not pressed
}
0
On

Instead of 'Bold Button' for a text editor, I implemented of a toggle button for “white space character painter”. i.e. a toggle button to show non printable characters as space, tab or return. The following can be used for multiple pages text editors. The toggle button is only activated at the parts/editors which have been previous selected to show non printable chararcters.

At 'Handler Tool Item' to the Toolbar in the Application.e4xmi specify the button 'Type' as 'Check' and, give any ID = “zzzz.handledtoolitem.whitespacespainter.button” At the handler class inject the MtoolItem and the EventBroker, so the broker sends the status of the button to the rest of the application:

public class WhiteSpacePainterHandler {
boolean buttonStatus;
@Execute
public void execute(final MToolItem item, IEventBroker broker) {
    if (item.isSelected()){
        buttonStatus = true;
    }
    else{
        buttonStatus = false;
    }
    broker.post("BUTTON_STATUS", buttonStatus); 
}
}

At the text editor part

public class SampleEditorPart {
private boolean buttonStatus = false;
public StyledText st = null;
public TextViewer tv = null;
@Inject MPart parte;
@Inject EModelService modelService;
@Inject MApplication app;
public WhitespaceCharacterPainter whitespaceCharacterPainter;
//More code here...

@PostConstruct
public void postConstruct(Composite parent){
    //...
    tv = new TextViewer(parent,SWT.MULTI | SWT.V_SCROLL );
    st = tv.getTextWidget();
    whitespaceCharacterPainter = new  WhitespaceCharacterPainter(tv);
    //...
}
@Inject
@Optional
public void updatePartByButton(@UIEventTopic("BUTTON_STATUS") boolean newButtonStatus) {
    final MElementContainer<MUIElement>container = parte.getParent();
    if (parte.equals((MPart)container.getSelectedElement())){
        if(buttonStatus != newButtonStatus)
        {
        buttonStatus = newButtonStatus;
        MToolItem item = (MToolItem) modelService.find("zzzz.handledtoolitem.boton",app);
        item.setSelected(buttonStatus);
        if(buttonStatus){
            sv.addPainter(whitespaceCharacterPainter);
        }
        else{
            sv.removePainter(whitespaceCharacterPainter);
        }
    }
}
@Inject
@Optional
public void updateButtonByPart(@Named(IServiceConstants.ACTIVE_PART) MPart activePart) {
    if (parte.equals(activePart)) {
        MToolItem item = (MToolItem) modelService.find("zzzz.handledtoolitem.boton",app);
        item.setSelected(buttonStatus);
     }
} 
}