use of org.eclipse.scout.rt.client.ui.action.keystroke.IKeyStroke in project scout.rt by eclipse.
the class AbstractTable method initConfig.
protected void initConfig() {
m_eventHistory = createEventHistory();
m_eventBuffer = createEventBuffer();
m_uiFacade = BEANS.get(ModelContextProxy.class).newProxy(createUIFacade(), ModelContext.copyCurrent());
m_contributionHolder = new ContributionComposite(this);
setEnabled(true);
setLoading(false);
setGroupingStyle(getConfiguredGroupingStyle());
setTitle(getConfiguredTitle());
setAutoDiscardOnDelete(getConfiguredAutoDiscardOnDelete());
setSortEnabled(getConfiguredSortEnabled());
setDefaultIconId(getConfiguredDefaultIconId());
setCssClass((getConfiguredCssClass()));
setRowIconVisible(getConfiguredRowIconVisible());
setHeaderVisible(getConfiguredHeaderVisible());
setHeaderEnabled(getConfiguredHeaderEnabled());
setAutoResizeColumns(getConfiguredAutoResizeColumns());
setCheckable(getConfiguredCheckable());
setMultiCheck(getConfiguredMultiCheck());
setMultiSelect(getConfiguredMultiSelect());
setInitialMultilineText(getConfiguredMultilineText());
setMultilineText(getConfiguredMultilineText());
setKeyboardNavigation(getConfiguredKeyboardNavigation());
setDragType(getConfiguredDragType());
setDropType(getConfiguredDropType());
setDropMaximumSize(getConfiguredDropMaximumSize());
setScrollToSelection(getConfiguredScrollToSelection());
setTableStatusVisible(getConfiguredTableStatusVisible());
if (getTableCustomizer() == null) {
setTableCustomizer(createTableCustomizer());
}
// columns
createColumnsInternal();
// table controls
createTableControlsInternal();
// menus
initMenus();
// key strokes
List<Class<? extends IKeyStroke>> ksClasses = getConfiguredKeyStrokes();
List<IKeyStroke> ksList = new ArrayList<IKeyStroke>(ksClasses.size());
for (Class<? extends IKeyStroke> clazz : ksClasses) {
IKeyStroke ks = ConfigurationUtility.newInnerInstance(this, clazz);
ks.initAction();
if (ks.getKeyStroke() != null) {
ksList.add(ks);
}
}
// add ENTER key stroke when default menu is used or execRowAction has an override
Class<? extends IMenu> defaultMenuType = getDefaultMenuInternal();
if (defaultMenuType != null || ConfigurationUtility.isMethodOverwrite(AbstractTable.class, "execRowAction", new Class[] { ITableRow.class }, this.getClass())) {
ksList.add(new KeyStroke("ENTER") {
@Override
protected void execAction() {
fireRowAction(getSelectedRow());
}
});
}
// add keystroke contributions
List<IKeyStroke> contributedKeyStrokes = m_contributionHolder.getContributionsByClass(IKeyStroke.class);
ksList.addAll(contributedKeyStrokes);
setKeyStrokes(ksList);
m_tableOrganizer = BEANS.get(ITableOrganizerProvider.class).createTableOrganizer(this);
// add Convenience observer for drag & drop callbacks, event history and ui sort possible check
addTableListener(new TableAdapter() {
@Override
public void tableChanged(TableEvent e) {
// event history
IEventHistory<TableEvent> h = getEventHistory();
if (h != null) {
h.notifyEvent(e);
}
// dnd
switch(e.getType()) {
case TableEvent.TYPE_ROWS_DRAG_REQUEST:
{
if (e.getDragObject() == null) {
try {
e.setDragObject(interceptDrag(e.getRows()));
} catch (RuntimeException ex) {
BEANS.get(ExceptionHandler.class).handle(ex);
}
}
break;
}
case TableEvent.TYPE_ROW_DROP_ACTION:
{
if (e.getDropObject() != null && isEnabled()) {
try {
interceptDrop(e.getFirstRow(), e.getDropObject());
} catch (RuntimeException ex) {
BEANS.get(ExceptionHandler.class).handle(ex);
}
}
break;
}
case TableEvent.TYPE_ROWS_COPY_REQUEST:
{
if (e.getCopyObject() == null) {
try {
e.setCopyObject(interceptCopy(e.getRows()));
} catch (RuntimeException ex) {
BEANS.get(ExceptionHandler.class).handle(ex);
}
}
break;
}
case TableEvent.TYPE_ALL_ROWS_DELETED:
case TableEvent.TYPE_ROWS_DELETED:
case TableEvent.TYPE_ROWS_INSERTED:
case TableEvent.TYPE_ROWS_UPDATED:
{
if (isValueChangeTriggerEnabled()) {
try {
interceptContentChanged();
} catch (RuntimeException ex) {
BEANS.get(ExceptionHandler.class).handle(ex);
}
}
break;
}
case TableEvent.TYPE_ROWS_CHECKED:
try {
interceptRowsChecked(e.getRows());
} catch (RuntimeException ex) {
BEANS.get(ExceptionHandler.class).handle(ex);
}
break;
case TableEvent.TYPE_COLUMN_HEADERS_UPDATED:
case TableEvent.TYPE_COLUMN_STRUCTURE_CHANGED:
checkIfColumnPreventsUiSortForTable();
break;
}
}
});
}
use of org.eclipse.scout.rt.client.ui.action.keystroke.IKeyStroke in project scout.rt by eclipse.
the class AbstractDesktop method initConfig.
protected void initConfig() {
m_eventHistory = createEventHistory();
// add convenience observer for event history
addDesktopListener(new DesktopListener() {
@Override
public void desktopChanged(DesktopEvent e) {
IEventHistory<DesktopEvent> h = getEventHistory();
if (h != null) {
h.notifyEvent(e);
}
}
});
ClientSessionProvider.currentSession().getMemoryPolicy().registerDesktop(this);
BEANS.get(IDeviceTransformationService.class).install(this);
initDesktopExtensions();
setTitle(getConfiguredTitle());
setCssClass(getConfiguredCssClass());
setSelectViewTabsKeyStrokesEnabled(getConfiguredSelectViewTabsKeyStrokesEnabled());
setSelectViewTabsKeyStrokeModifier(getConfiguredSelectViewTabsKeyStrokeModifier());
setLogoId(getConfiguredLogoId());
setDisplayStyle(getConfiguredDisplayStyle());
initDisplayStyle(getDisplayStyle());
setCacheSplitterPosition(getConfiguredCacheSplitterPosition());
List<IDesktopExtension> extensions = getDesktopExtensions();
m_contributionHolder = new ContributionComposite(this);
// outlines
OrderedCollection<IOutline> outlines = new OrderedCollection<IOutline>();
for (IDesktopExtension ext : extensions) {
try {
ext.contributeOutlines(outlines);
} catch (Exception t) {
LOG.error("contributing outlines by {}", ext, t);
}
}
List<IOutline> contributedOutlines = m_contributionHolder.getContributionsByClass(IOutline.class);
outlines.addAllOrdered(contributedOutlines);
// move outlines
ExtensionUtility.moveModelObjects(outlines);
setAvailableOutlines(outlines.getOrderedList());
// actions (keyStroke, menu, viewButton, toolButton)
List<IAction> actionList = new ArrayList<IAction>();
for (IDesktopExtension ext : extensions) {
try {
ext.contributeActions(actionList);
} catch (Exception t) {
LOG.error("contributing actions by {}", ext, t);
}
}
List<IAction> contributedActions = m_contributionHolder.getContributionsByClass(IAction.class);
actionList.addAll(contributedActions);
// build complete menu and viewButton lists
// only top level menus
OrderedComparator orderedComparator = new OrderedComparator();
List<IMenu> menuList = new ActionFinder().findActions(actionList, IMenu.class, false);
ExtensionUtility.moveModelObjects(menuList);
Collections.sort(menuList, orderedComparator);
m_menus = menuList;
List<IViewButton> viewButtonList = new ActionFinder().findActions(actionList, IViewButton.class, false);
ExtensionUtility.moveModelObjects(viewButtonList);
Collections.sort(viewButtonList, orderedComparator);
m_viewButtons = viewButtonList;
// add dynamic keyStrokes
List<IKeyStroke> ksList = new ActionFinder().findActions(actionList, IKeyStroke.class, true);
for (IKeyStroke ks : ksList) {
try {
ks.initAction();
} catch (RuntimeException | PlatformError e) {
LOG.error("could not initialize key stroke '{}'.", ks, e);
}
}
addKeyStrokes(ksList.toArray(new IKeyStroke[ksList.size()]));
// init outlines
for (IOutline o : m_availableOutlines) {
try {
o.initTree();
} catch (Exception e) {
LOG.error("Could not init outline {}", o, e);
}
}
addPropertyChangeListener(new P_LocalPropertyChangeListener());
}
use of org.eclipse.scout.rt.client.ui.action.keystroke.IKeyStroke in project scout.rt by eclipse.
the class AbstractDesktop method addKeyStrokes.
@Override
public void addKeyStrokes(IKeyStroke... keyStrokes) {
if (keyStrokes != null && keyStrokes.length > 0) {
Map<String, IKeyStroke> map = new HashMap<String, IKeyStroke>();
for (IKeyStroke ks : getKeyStrokes()) {
map.put(ks.getKeyStroke(), ks);
}
for (IKeyStroke ks : keyStrokes) {
map.put(ks.getKeyStroke(), ks);
}
setKeyStrokes(map.values());
}
}
use of org.eclipse.scout.rt.client.ui.action.keystroke.IKeyStroke in project scout.rt by eclipse.
the class AbstractDesktop method removeKeyStrokes.
@Override
public void removeKeyStrokes(IKeyStroke... keyStrokes) {
if (keyStrokes != null && keyStrokes.length > 0) {
Map<String, IKeyStroke> map = new HashMap<String, IKeyStroke>();
for (IKeyStroke ks : getKeyStrokes()) {
map.put(ks.getKeyStroke(), ks);
}
for (IKeyStroke ks : keyStrokes) {
map.remove(ks.getKeyStroke());
}
setKeyStrokes(map.values());
}
}
use of org.eclipse.scout.rt.client.ui.action.keystroke.IKeyStroke in project scout.rt by eclipse.
the class AbstractFormField method initLocalKeyStrokes.
protected List<IKeyStroke> initLocalKeyStrokes() {
List<Class<? extends IKeyStroke>> configuredKeyStrokes = getConfiguredKeyStrokes();
List<IKeyStroke> contributedKeyStrokes = m_contributionHolder.getContributionsByClass(IKeyStroke.class);
Map<String, IKeyStroke> ksMap = new HashMap<String, IKeyStroke>(configuredKeyStrokes.size() + contributedKeyStrokes.size());
for (Class<? extends IKeyStroke> keystrokeClazz : configuredKeyStrokes) {
IKeyStroke ks = ConfigurationUtility.newInnerInstance(this, keystrokeClazz);
ks.initAction();
if (ks.getKeyStroke() != null) {
ksMap.put(ks.getKeyStroke().toUpperCase(), ks);
}
}
for (IKeyStroke ks : contributedKeyStrokes) {
try {
ks.initAction();
if (ks.getKeyStroke() != null) {
ksMap.put(ks.getKeyStroke().toUpperCase(), ks);
}
} catch (Exception e) {
BEANS.get(ExceptionHandler.class).handle(new ProcessingException("error initializing key stroke '" + ks.getClass().getName() + "'.", e));
}
}
return CollectionUtility.arrayListWithoutNullElements(ksMap.values());
}
Aggregations