use of net.sourceforge.nattable.NatTable in project translationstudio8 by heartsome.
the class NatEventData method createInstanceFromEvent.
public static NatEventData createInstanceFromEvent(MouseEvent event) {
NatTable natTable = (NatTable) event.widget;
int columnPosition = natTable.getColumnPositionByX(event.x);
int rowPosition = natTable.getRowPositionByY(event.y);
return new NatEventData(natTable, natTable.getRegionLabelsByXY(event.x, event.y), columnPosition, rowPosition, event.data);
}
use of net.sourceforge.nattable.NatTable in project translationstudio8 by heartsome.
the class MenuItemProviders method renameColumnMenuItemProvider.
public static IMenuItemProvider renameColumnMenuItemProvider(final String label) {
return new IMenuItemProvider() {
public void addMenuItem(final NatTable natTable, final Menu popupMenu) {
MenuItem menuItem = new MenuItem(popupMenu, SWT.PUSH);
menuItem.setText(label);
menuItem.setEnabled(true);
menuItem.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent event) {
natTable.doCommand(new DisplayColumnRenameDialogCommand(natTable, getNatEventData(event).getColumnPosition()));
}
});
}
};
}
use of net.sourceforge.nattable.NatTable in project translationstudio8 by heartsome.
the class MenuItemProviders method autoResizeAllSelectedColumnMenuItemProvider.
public static IMenuItemProvider autoResizeAllSelectedColumnMenuItemProvider() {
return new IMenuItemProvider() {
public void addMenuItem(final NatTable natTable, final Menu popupMenu) {
MenuItem autoResizeColumns = new MenuItem(popupMenu, SWT.PUSH);
autoResizeColumns.setText("Auto resize all selected columns");
autoResizeColumns.setEnabled(true);
autoResizeColumns.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent event) {
int columnPosition = getNatEventData(event).getColumnPosition();
natTable.doCommand(new InitializeAutoResizeColumnsCommand(natTable, columnPosition, natTable.getConfigRegistry(), new GC(natTable)));
}
});
}
};
}
use of net.sourceforge.nattable.NatTable 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);
}
}
Aggregations