org.eclipse.swt.widgets.TableColumn.addListener()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(9.4k)|赞(0)|评价(0)|浏览(152)

本文整理了Java中org.eclipse.swt.widgets.TableColumn.addListener()方法的一些代码示例,展示了TableColumn.addListener()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。TableColumn.addListener()方法的具体详情如下:
包路径:org.eclipse.swt.widgets.TableColumn
类名称:TableColumn
方法名:addListener

TableColumn.addListener介绍

暂无

代码示例

代码示例来源:origin: pentaho/pentaho-kettle

  1. public void addColumnResizeListeners( Table table ) {
  2. TableColumn[] columns = table.getColumns();
  3. int len = Math.min( weights.length, columns.length );
  4. for ( int i = 0; i < len - 1; i++ ) {
  5. if ( weights[i] > 0 ) {
  6. columns[i].addListener( SWT.Resize, getColumnResizeListener( i ) );
  7. }
  8. }
  9. }

代码示例来源:origin: pentaho/pentaho-kettle

  1. tablecolumn[i].addListener( SWT.Selection, lsSort );

代码示例来源:origin: net.sf.okapi.lib/okapi-lib-verification-ui

  1. void linkTable (Table newTable,
  2. Listener sortListener)
  3. {
  4. table = newTable;
  5. TableColumn col = new TableColumn(table, SWT.NONE);
  6. col.addListener(SWT.Selection, sortListener);
  7. col = new TableColumn(table, SWT.NONE);
  8. col.addListener(SWT.Selection, sortListener);
  9. col = new TableColumn(table, SWT.NONE);
  10. col.setText("Text Unit");
  11. col.addListener(SWT.Selection, sortListener);
  12. col = new TableColumn(table, SWT.NONE);
  13. col.setText("Seg");
  14. col.addListener(SWT.Selection, sortListener);
  15. col = new TableColumn(table, SWT.NONE);
  16. col.setText("Description");
  17. col.addListener(SWT.Selection, sortListener);
  18. }

代码示例来源:origin: stackoverflow.com

  1. for (int i = 0; i < 4; i++)
  2. {
  3. final TableColumn column = new TableColumn(table, SWT.NONE);
  4. column.setText("Column " + i);
  5. column.addListener(SWT.Selection, new Listener()
  6. {
  7. @Override
  8. public void handleEvent(Event arg0)
  9. {
  10. System.out.println(column.getText());
  11. }
  12. });
  13. }

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

  1. /**
  2. * Adds the listener to the collection of listeners who will
  3. * be notified when the control is moved or resized, by sending
  4. * it one of the messages defined in the <code>ControlListener</code>
  5. * interface.
  6. *
  7. * @param listener the listener which should be notified
  8. *
  9. * @exception IllegalArgumentException <ul>
  10. * <li>ERROR_NULL_ARGUMENT - if the listener is null</li>
  11. * </ul>
  12. * @exception SWTException <ul>
  13. * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
  14. * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
  15. * </ul>
  16. *
  17. * @see ControlListener
  18. * @see #removeControlListener
  19. */
  20. public void addControlListener(ControlListener listener) {
  21. checkWidget ();
  22. if (listener == null) error (SWT.ERROR_NULL_ARGUMENT);
  23. TypedListener typedListener = new TypedListener (listener);
  24. addListener (SWT.Resize,typedListener);
  25. addListener (SWT.Move,typedListener);
  26. }

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

  1. /**
  2. * Adds the listener to the collection of listeners who will
  3. * be notified when the control is moved or resized, by sending
  4. * it one of the messages defined in the <code>ControlListener</code>
  5. * interface.
  6. *
  7. * @param listener the listener which should be notified
  8. *
  9. * @exception IllegalArgumentException <ul>
  10. * <li>ERROR_NULL_ARGUMENT - if the listener is null</li>
  11. * </ul>
  12. * @exception SWTException <ul>
  13. * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
  14. * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
  15. * </ul>
  16. *
  17. * @see ControlListener
  18. * @see #removeControlListener
  19. */
  20. public void addControlListener(ControlListener listener) {
  21. checkWidget();
  22. if (listener == null) error (SWT.ERROR_NULL_ARGUMENT);
  23. TypedListener typedListener = new TypedListener (listener);
  24. addListener (SWT.Resize,typedListener);
  25. addListener (SWT.Move,typedListener);
  26. }

代码示例来源:origin: org.eclipse.swt.cocoa.macosx/x86_64

  1. if (listener == null) error (SWT.ERROR_NULL_ARGUMENT);
  2. TypedListener typedListener = new TypedListener (listener);
  3. addListener (SWT.Selection,typedListener);
  4. addListener (SWT.DefaultSelection,typedListener);

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

  1. if (listener == null) error (SWT.ERROR_NULL_ARGUMENT);
  2. TypedListener typedListener = new TypedListener (listener);
  3. addListener (SWT.Selection,typedListener);
  4. addListener (SWT.DefaultSelection,typedListener);

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

  1. /**
  2. * Adds the listener to the collection of listeners who will
  3. * be notified when the control is moved or resized, by sending
  4. * it one of the messages defined in the <code>ControlListener</code>
  5. * interface.
  6. *
  7. * @param listener the listener which should be notified
  8. *
  9. * @exception IllegalArgumentException <ul>
  10. * <li>ERROR_NULL_ARGUMENT - if the listener is null</li>
  11. * </ul>
  12. * @exception SWTException <ul>
  13. * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
  14. * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
  15. * </ul>
  16. *
  17. * @see ControlListener
  18. * @see #removeControlListener
  19. */
  20. public void addControlListener(ControlListener listener) {
  21. checkWidget();
  22. if (listener == null) error (SWT.ERROR_NULL_ARGUMENT);
  23. TypedListener typedListener = new TypedListener (listener);
  24. addListener (SWT.Resize,typedListener);
  25. addListener (SWT.Move,typedListener);
  26. }

代码示例来源:origin: org.eclipse.swt.cocoa.macosx/x86_64

  1. /**
  2. * Adds the listener to the collection of listeners who will
  3. * be notified when the control is moved or resized, by sending
  4. * it one of the messages defined in the <code>ControlListener</code>
  5. * interface.
  6. *
  7. * @param listener the listener which should be notified
  8. *
  9. * @exception IllegalArgumentException <ul>
  10. * <li>ERROR_NULL_ARGUMENT - if the listener is null</li>
  11. * </ul>
  12. * @exception SWTException <ul>
  13. * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
  14. * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
  15. * </ul>
  16. *
  17. * @see ControlListener
  18. * @see #removeControlListener
  19. */
  20. public void addControlListener(ControlListener listener) {
  21. checkWidget ();
  22. if (listener == null) error (SWT.ERROR_NULL_ARGUMENT);
  23. TypedListener typedListener = new TypedListener (listener);
  24. addListener (SWT.Resize,typedListener);
  25. addListener (SWT.Move,typedListener);
  26. }

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

  1. /**
  2. * Adds the listener to the collection of listeners who will
  3. * be notified when the control is moved or resized, by sending
  4. * it one of the messages defined in the <code>ControlListener</code>
  5. * interface.
  6. *
  7. * @param listener the listener which should be notified
  8. *
  9. * @exception IllegalArgumentException <ul>
  10. * <li>ERROR_NULL_ARGUMENT - if the listener is null</li>
  11. * </ul>
  12. * @exception SWTException <ul>
  13. * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
  14. * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
  15. * </ul>
  16. *
  17. * @see ControlListener
  18. * @see #removeControlListener
  19. */
  20. public void addControlListener(ControlListener listener) {
  21. checkWidget();
  22. if (listener == null) error (SWT.ERROR_NULL_ARGUMENT);
  23. TypedListener typedListener = new TypedListener (listener);
  24. addListener (SWT.Resize,typedListener);
  25. addListener (SWT.Move,typedListener);
  26. }

代码示例来源:origin: org.eclipse.rap/org.eclipse.rap.rwt

  1. /**
  2. * Adds the listener to the collection of listeners who will
  3. * be notified when the control is moved or resized, by sending
  4. * it one of the messages defined in the <code>ControlListener</code>
  5. * interface.
  6. *
  7. * @param listener the listener which should be notified
  8. *
  9. * @exception IllegalArgumentException <ul>
  10. * <li>ERROR_NULL_ARGUMENT - if the listener is null</li>
  11. * </ul>
  12. * @exception SWTException <ul>
  13. * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
  14. * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
  15. * </ul>
  16. *
  17. * @see ControlListener
  18. * @see #removeControlListener
  19. */
  20. public void addControlListener( ControlListener listener ) {
  21. checkWidget();
  22. if( listener == null ) {
  23. error( SWT.ERROR_NULL_ARGUMENT );
  24. }
  25. TypedListener typedListener = new TypedListener( listener );
  26. addListener( SWT.Move, typedListener );
  27. addListener( SWT.Resize, typedListener );
  28. }

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

  1. if (listener == null) error (SWT.ERROR_NULL_ARGUMENT);
  2. TypedListener typedListener = new TypedListener (listener);
  3. addListener (SWT.Selection,typedListener);
  4. addListener (SWT.DefaultSelection,typedListener);

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

  1. if (listener == null) error (SWT.ERROR_NULL_ARGUMENT);
  2. TypedListener typedListener = new TypedListener (listener);
  3. addListener (SWT.Selection,typedListener);
  4. addListener (SWT.DefaultSelection,typedListener);

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

  1. if (listener == null) error (SWT.ERROR_NULL_ARGUMENT);
  2. TypedListener typedListener = new TypedListener (listener);
  3. addListener (SWT.Selection,typedListener);
  4. addListener (SWT.DefaultSelection,typedListener);

代码示例来源:origin: org.eclipse.rap/org.eclipse.rap.rwt

  1. addListener( SWT.Selection, typedListener );
  2. addListener( SWT.DefaultSelection, typedListener );

代码示例来源:origin: org.eclipse.swt.cocoa.macosx/x86_64

  1. column.addListener(SWT.Dispose, disposeColumnListener);
  2. column.addListener(SWT.Move, resizeListener);
  3. column.addListener(SWT.Resize, resizeListener);
  4. table.showColumn(column);

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

  1. column.addListener(SWT.Dispose, disposeColumnListener);
  2. column.addListener(SWT.Move, resizeListener);
  3. column.addListener(SWT.Resize, resizeListener);
  4. table.showColumn(column);

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

  1. column.addListener(SWT.Dispose, disposeColumnListener);
  2. column.addListener(SWT.Move, resizeListener);
  3. column.addListener(SWT.Resize, resizeListener);
  4. table.showColumn(column);

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

  1. column.addListener(SWT.Dispose, disposeColumnListener);
  2. column.addListener(SWT.Move, resizeListener);
  3. column.addListener(SWT.Resize, resizeListener);
  4. table.showColumn(column);

相关文章