Search in sources :

Example 6 with IConfigRegistry

use of net.sourceforge.nattable.config.IConfigRegistry in project translationstudio8 by heartsome.

the class HsMultiCellEditorControl method activeSourceAndTargetCell.

public static void activeSourceAndTargetCell(XLIFFEditorImplWithNatTable xliffEditor) {
    if (xliffEditor == null) {
        return;
    }
    int[] selectedRowIndexs = xliffEditor.getSelectedRows();
    if (selectedRowIndexs.length == 0) {
        return;
    }
    Arrays.sort(selectedRowIndexs);
    int rowIndex = selectedRowIndexs[selectedRowIndexs.length - 1];
    if (!xliffEditor.isHorizontalLayout()) {
        // source index
        rowIndex = rowIndex * 2;
    }
    NatTable natTable = xliffEditor.getTable();
    IConfigRegistry configRegistry = natTable.getConfigRegistry();
    ViewportLayer vLayer = LayerUtil.getLayer(natTable, ViewportLayer.class);
    int rowPosition = vLayer.getRowPositionByIndex(rowIndex);
    rowPosition += 1;
    if (rowPosition < 1) {
        return;
    }
    int columnIndex = xliffEditor.getSrcColumnIndex();
    HsMultiCellEditor srcCellEditor = activeCell(vLayer, xliffEditor, configRegistry, columnIndex, rowIndex, rowPosition, NatTableConstant.SOURCE);
    if (srcCellEditor == null) {
        return;
    }
    if (!xliffEditor.isHorizontalLayout()) {
        // target
        rowIndex = rowIndex + 1;
        rowPosition = vLayer.getRowPositionByIndex(rowIndex);
        rowPosition += 1;
        if (rowPosition < 1) {
            return;
        }
    }
    columnIndex = xliffEditor.getTgtColumnIndex();
    HsMultiCellEditor tgtCellEditor = activeCell(vLayer, xliffEditor, configRegistry, columnIndex, rowIndex, rowPosition, NatTableConstant.TARGET);
    if (tgtCellEditor == null) {
        return;
    }
    HsMultiActiveCellEditor.activateCellEditors(srcCellEditor, tgtCellEditor, natTable);
    // 目标文本段一进入焦点就进行一次拼写检查 robert 2013-01-22
    // UNDO 这里错误单词提示并没有修改颜色。
    String tgtLang = xliffEditor.getTgtColumnName();
    spellTrigger = RealTimeSpellCheckTrigger.getInstance();
    if (spellTrigger != null && spellTrigger.checkSpellAvailable(tgtLang)) {
        tgtTextFirstRealTimeSpellCheck(tgtLang, tgtCellEditor);
        tgtTextRealTimeSpellCheck(tgtLang, tgtCellEditor);
    }
    List<String> terms = xliffEditor.getTermsCache().get(selectedRowIndexs[0]);
    if (terms != null && terms.size() > 0) {
        srcCellEditor.highlightedTerms(terms);
    }
}
Also used : IConfigRegistry(net.sourceforge.nattable.config.IConfigRegistry) NatTable(net.sourceforge.nattable.NatTable) ViewportLayer(net.sourceforge.nattable.viewport.ViewportLayer)

Aggregations

IConfigRegistry (net.sourceforge.nattable.config.IConfigRegistry)6 NatTable (net.sourceforge.nattable.NatTable)2 Composite (org.eclipse.swt.widgets.Composite)2 Language (net.heartsome.cat.common.locale.Language)1 AutoResizeCurrentRowsCommandHandler (net.heartsome.cat.ts.ui.xliffeditor.nattable.handler.AutoResizeCurrentRowsCommandHandler)1 UpdateDataAndAutoResizeCommandHandler (net.heartsome.cat.ts.ui.xliffeditor.nattable.handler.UpdateDataAndAutoResizeCommandHandler)1 HorizontalViewportLayer (net.heartsome.cat.ts.ui.xliffeditor.nattable.layer.HorizontalViewportLayer)1 RowHeightCalculator (net.heartsome.cat.ts.ui.xliffeditor.nattable.layer.RowHeightCalculator)1 VerticalViewportLayer (net.heartsome.cat.ts.ui.xliffeditor.nattable.layer.VerticalViewportLayer)1 BodyMenuConfiguration (net.heartsome.cat.ts.ui.xliffeditor.nattable.menu.BodyMenuConfiguration)1 FindReplaceCommandHandler (net.heartsome.cat.ts.ui.xliffeditor.nattable.search.command.FindReplaceCommandHandler)1 ConfigRegistry (net.sourceforge.nattable.config.ConfigRegistry)1 DefaultNatTableStyleConfiguration (net.sourceforge.nattable.config.DefaultNatTableStyleConfiguration)1 PositionCoordinate (net.sourceforge.nattable.coordinate.PositionCoordinate)1 ICellEditor (net.sourceforge.nattable.edit.editor.ICellEditor)1 DefaultColumnHeaderDataProvider (net.sourceforge.nattable.grid.data.DefaultColumnHeaderDataProvider)1 CompositeLayer (net.sourceforge.nattable.layer.CompositeLayer)1 ILayer (net.sourceforge.nattable.layer.ILayer)1 ColumnOverrideLabelAccumulator (net.sourceforge.nattable.layer.cell.ColumnOverrideLabelAccumulator)1 LayerCell (net.sourceforge.nattable.layer.cell.LayerCell)1