use of org.uberfire.client.workbench.events.ChangeTitleWidgetEvent in project kie-wb-common by kiegroup.
the class SessionDiagramEditorScreen method updateTitle.
private void updateTitle(final String title) {
// Change screen title.
SessionDiagramEditorScreen.this.title = title;
changeTitleNotificationEvent.fire(new ChangeTitleWidgetEvent(placeRequest, this.title));
}
use of org.uberfire.client.workbench.events.ChangeTitleWidgetEvent in project kie-wb-common by kiegroup.
the class UserHomePageMainPresenter method setupMainWidget.
private void setupMainWidget(SocialUser socialUser, SocialPaged socialPaged) {
String userName = (socialUser != null && socialUser.getRealName() != null && !socialUser.getRealName().isEmpty()) ? socialUser.getRealName() : socialUser.getUserName();
String title = Constants.INSTANCE.UserNameRecentActivities(userName);
changeTitleWidgetEvent.fire(new ChangeTitleWidgetEvent(place, title));
SimpleSocialTimelineWidgetModel model = new SimpleSocialTimelineWidgetModel(socialUser, new UserTimeLineOnlyUserActivityPredicate(socialUser), placeManager, socialPaged).withIcons(iconLocator.getResourceTypes()).withOnlyMorePagination(new Next() {
{
setText(Constants.INSTANCE.PaginationMore());
}
}).withLinkCommand(generateLinkCommand());
mainPresenter.setup(model);
}
use of org.uberfire.client.workbench.events.ChangeTitleWidgetEvent in project kie-wb-common by kiegroup.
the class AbstractProjectDiagramEditor method updateTitle.
protected void updateTitle(final String title) {
// Change editor's title.
this.title = formatTitle(title);
changeTitleNotification.fire(new ChangeTitleWidgetEvent(this.place, this.title));
}
use of org.uberfire.client.workbench.events.ChangeTitleWidgetEvent in project kie-wb-common by kiegroup.
the class DiagramEditorExplorerScreen method doUpdateTitle.
private void doUpdateTitle(final String title) {
// Change screen title.
DiagramEditorExplorerScreen.this.title = title;
changeTitleNotificationEvent.fire(new ChangeTitleWidgetEvent(placeRequest, this.title));
}
use of org.uberfire.client.workbench.events.ChangeTitleWidgetEvent in project kie-wb-common by kiegroup.
the class DMNDiagramEditor method updateTitle.
void updateTitle(final String title) {
// Change screen title.
DMNDiagramEditor.this.title = title;
changeTitleNotificationEvent.fire(new ChangeTitleWidgetEvent(placeRequest, this.title));
}
Aggregations