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

x33g5p2x  于2022-01-30 转载在 其他  
字(7.7k)|赞(0)|评价(0)|浏览(167)

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

Scrollable.getShell介绍

暂无

代码示例

代码示例来源:origin: org.eclipse/org.eclipse.jdt.ui

  1. /**
  2. * Returns the shell for the given widget. If the widget doesn't represent
  3. * a SWT object that manage a shell, <code>null</code> is returned.
  4. *
  5. * @return the shell for the given widget
  6. */
  7. public static Shell getShell(Widget widget) {
  8. if (widget instanceof Control)
  9. return ((Control)widget).getShell();
  10. if (widget instanceof Caret)
  11. return ((Caret)widget).getParent().getShell();
  12. if (widget instanceof DragSource)
  13. return ((DragSource)widget).getControl().getShell();
  14. if (widget instanceof DropTarget)
  15. return ((DropTarget)widget).getControl().getShell();
  16. if (widget instanceof Menu)
  17. return ((Menu)widget).getParent().getShell();
  18. if (widget instanceof ScrollBar)
  19. return ((ScrollBar)widget).getParent().getShell();
  20. return null;
  21. }

代码示例来源:origin: org.eclipse.pde/org.eclipse.pde.ui

  1. /**
  2. * Returns the shell for the given widget. If the widget doesn't represent
  3. * a SWT object that manage a shell, <code>null</code> is returned.
  4. *
  5. * @return the shell for the given widget
  6. */
  7. public static Shell getShell(Widget widget) {
  8. if (widget instanceof Control)
  9. return ((Control) widget).getShell();
  10. if (widget instanceof Caret)
  11. return ((Caret) widget).getParent().getShell();
  12. if (widget instanceof DragSource)
  13. return ((DragSource) widget).getControl().getShell();
  14. if (widget instanceof DropTarget)
  15. return ((DropTarget) widget).getControl().getShell();
  16. if (widget instanceof Menu)
  17. return ((Menu) widget).getParent().getShell();
  18. if (widget instanceof ScrollBar)
  19. return ((ScrollBar) widget).getParent().getShell();
  20. return null;
  21. }

代码示例来源:origin: oyse/yedit

  1. /**
  2. * Returns the shell for the given widget. If the widget doesn't represent
  3. * a SWT object that manage a shell, <code>null</code> is returned.
  4. *
  5. * @return the shell for the given widget
  6. */
  7. public static Shell getShell(Widget widget) {
  8. if (widget instanceof Control)
  9. return ((Control)widget).getShell();
  10. if (widget instanceof Caret)
  11. return ((Caret)widget).getParent().getShell();
  12. if (widget instanceof DragSource)
  13. return ((DragSource)widget).getControl().getShell();
  14. if (widget instanceof DropTarget)
  15. return ((DropTarget)widget).getControl().getShell();
  16. if (widget instanceof Menu)
  17. return ((Menu)widget).getParent().getShell();
  18. if (widget instanceof ScrollBar)
  19. return ((ScrollBar)widget).getParent().getShell();
  20. return null;
  21. }

代码示例来源:origin: org.eclipse.xtext/ui

  1. /**
  2. * Returns the shell for the given widget. If the widget doesn't represent a
  3. * SWT object that manage a shell, <code>null</code> is returned.
  4. *
  5. * @param widget
  6. * the widget
  7. *
  8. * @return the shell for the given widget
  9. */
  10. public static Shell getShell(Widget widget) {
  11. if (widget instanceof Control)
  12. return ((Control) widget).getShell();
  13. if (widget instanceof Caret)
  14. return ((Caret) widget).getParent().getShell();
  15. if (widget instanceof DragSource)
  16. return ((DragSource) widget).getControl().getShell();
  17. if (widget instanceof DropTarget)
  18. return ((DropTarget) widget).getControl().getShell();
  19. if (widget instanceof Menu)
  20. return ((Menu) widget).getParent().getShell();
  21. if (widget instanceof ScrollBar)
  22. return ((ScrollBar) widget).getParent().getShell();
  23. return null;
  24. }

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.ui

  1. /**
  2. * Returns the shell for the given widget. If the widget doesn't represent
  3. * a SWT object that manage a shell, <code>null</code> is returned.
  4. * @param widget the widget
  5. *
  6. * @return the shell for the given widget
  7. */
  8. public static Shell getShell(Widget widget) {
  9. if (widget instanceof Control)
  10. return ((Control)widget).getShell();
  11. if (widget instanceof Caret)
  12. return ((Caret)widget).getParent().getShell();
  13. if (widget instanceof DragSource)
  14. return ((DragSource)widget).getControl().getShell();
  15. if (widget instanceof DropTarget)
  16. return ((DropTarget)widget).getControl().getShell();
  17. if (widget instanceof Menu)
  18. return ((Menu)widget).getParent().getShell();
  19. if (widget instanceof ScrollBar)
  20. return ((ScrollBar)widget).getParent().getShell();
  21. return null;
  22. }

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.ui

  1. /**
  2. * Returns the shell for the given widget. If the widget doesn't represent
  3. * a SWT object that manage a shell, <code>null</code> is returned.
  4. * @param widget the widget
  5. *
  6. * @return the shell for the given widget
  7. */
  8. public static Shell getShell(Widget widget) {
  9. if (widget instanceof Control)
  10. return ((Control)widget).getShell();
  11. if (widget instanceof Caret)
  12. return ((Caret)widget).getParent().getShell();
  13. if (widget instanceof DragSource)
  14. return ((DragSource)widget).getControl().getShell();
  15. if (widget instanceof DropTarget)
  16. return ((DropTarget)widget).getControl().getShell();
  17. if (widget instanceof Menu)
  18. return ((Menu)widget).getParent().getShell();
  19. if (widget instanceof ScrollBar)
  20. return ((ScrollBar)widget).getParent().getShell();
  21. return null;
  22. }

代码示例来源:origin: org.eclipse.platform/org.eclipse.ui.forms

  1. /**
  2. * Returns the shell for the given widget. If the widget doesn't represent
  3. * a SWT object that manage a shell, <code>null</code> is returned.
  4. *
  5. * @return the shell for the given widget
  6. */
  7. public static Shell getShell(Widget widget) {
  8. if (widget instanceof Control)
  9. return ((Control) widget).getShell();
  10. if (widget instanceof Caret)
  11. return ((Caret) widget).getParent().getShell();
  12. if (widget instanceof DragSource)
  13. return ((DragSource) widget).getControl().getShell();
  14. if (widget instanceof DropTarget)
  15. return ((DropTarget) widget).getControl().getShell();
  16. if (widget instanceof Menu)
  17. return ((Menu) widget).getParent().getShell();
  18. if (widget instanceof ScrollBar)
  19. return ((ScrollBar) widget).getParent().getShell();
  20. return null;
  21. }
  22. }

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

  1. /**
  2. * Returns the shell for the given widget. If the widget doesn't represent
  3. * a SWT object that manage a shell, <code>null</code> is returned.
  4. *
  5. * @param widget The widget to get the shell for
  6. * @return the shell for the given widget
  7. */
  8. public static Shell getShell(Widget widget) {
  9. if (widget instanceof Control)
  10. return ((Control)widget).getShell();
  11. if (widget instanceof Caret)
  12. return ((Caret)widget).getParent().getShell();
  13. if (widget instanceof DragSource)
  14. return ((DragSource)widget).getControl().getShell();
  15. if (widget instanceof DropTarget)
  16. return ((DropTarget)widget).getControl().getShell();
  17. if (widget instanceof Menu)
  18. return ((Menu)widget).getParent().getShell();
  19. if (widget instanceof ScrollBar)
  20. return ((ScrollBar)widget).getParent().getShell();
  21. return null;
  22. }

代码示例来源:origin: org.eclipse.platform/org.eclipse.search

  1. /**
  2. * Returns the shell for the given widget. If the widget doesn't represent
  3. * a SWT object that manage a shell, <code>null</code> is returned.
  4. *
  5. * @param widget The widget to get the shell for
  6. * @return the shell for the given widget
  7. */
  8. public static Shell getShell(Widget widget) {
  9. if (widget instanceof Control)
  10. return ((Control)widget).getShell();
  11. if (widget instanceof Caret)
  12. return ((Caret)widget).getParent().getShell();
  13. if (widget instanceof DragSource)
  14. return ((DragSource)widget).getControl().getShell();
  15. if (widget instanceof DropTarget)
  16. return ((DropTarget)widget).getControl().getShell();
  17. if (widget instanceof Menu)
  18. return ((Menu)widget).getParent().getShell();
  19. if (widget instanceof ScrollBar)
  20. return ((ScrollBar)widget).getParent().getShell();
  21. return null;
  22. }

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.ui.forms

  1. /**
  2. * Returns the shell for the given widget. If the widget doesn't represent
  3. * a SWT object that manage a shell, <code>null</code> is returned.
  4. *
  5. * @return the shell for the given widget
  6. */
  7. public static Shell getShell(Widget widget) {
  8. if (widget instanceof Control)
  9. return ((Control) widget).getShell();
  10. if (widget instanceof Caret)
  11. return ((Caret) widget).getParent().getShell();
  12. if (widget instanceof DragSource)
  13. return ((DragSource) widget).getControl().getShell();
  14. if (widget instanceof DropTarget)
  15. return ((DropTarget) widget).getControl().getShell();
  16. if (widget instanceof Menu)
  17. return ((Menu) widget).getParent().getShell();
  18. if (widget instanceof ScrollBar)
  19. return ((ScrollBar) widget).getParent().getShell();
  20. return null;
  21. }
  22. }

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

  1. void sendSelection () {
  2. NSWindow window = view.window ();
  3. if (target == null) parent.getShell().deferFlushing();
  4. int value = 0;
  5. if (target != null) {

相关文章

Scrollable类方法