Java Code Examples for sun.swing.SwingUtilities2#setSkipClickCount()

The following examples show how to use sun.swing.SwingUtilities2#setSkipClickCount() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BasicTreeUI.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
MouseInputHandler(Component source, Component destination,
                  MouseEvent event, Component focusComponent) {
    this.source = source;
    this.destination = destination;
    this.source.addMouseListener(this);
    this.source.addMouseMotionListener(this);

    SwingUtilities2.setSkipClickCount(destination,
                                      event.getClickCount() - 1);

    /* Dispatch the editing event! */
    destination.dispatchEvent(SwingUtilities.convertMouseEvent
                                  (source, event, destination));
    this.focusComponent = focusComponent;
}
 
Example 2
Source File: BasicTableUI.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
private void setDispatchComponent(MouseEvent e) {
    Component editorComponent = table.getEditorComponent();
    Point p = e.getPoint();
    Point p2 = SwingUtilities.convertPoint(table, p, editorComponent);
    dispatchComponent =
            SwingUtilities.getDeepestComponentAt(editorComponent,
                    p2.x, p2.y);
    SwingUtilities2.setSkipClickCount(dispatchComponent,
                                      e.getClickCount() - 1);
}
 
Example 3
Source File: BasicTreeUI.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
MouseInputHandler(Component source, Component destination,
                  MouseEvent event, Component focusComponent) {
    this.source = source;
    this.destination = destination;
    this.source.addMouseListener(this);
    this.source.addMouseMotionListener(this);

    SwingUtilities2.setSkipClickCount(destination,
                                      event.getClickCount() - 1);

    /* Dispatch the editing event! */
    destination.dispatchEvent(SwingUtilities.convertMouseEvent
                                  (source, event, destination));
    this.focusComponent = focusComponent;
}
 
Example 4
Source File: BasicTableUI.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
private void setDispatchComponent(MouseEvent e) {
    Component editorComponent = table.getEditorComponent();
    Point p = e.getPoint();
    Point p2 = SwingUtilities.convertPoint(table, p, editorComponent);
    dispatchComponent =
            SwingUtilities.getDeepestComponentAt(editorComponent,
                    p2.x, p2.y);
    SwingUtilities2.setSkipClickCount(dispatchComponent,
                                      e.getClickCount() - 1);
}
 
Example 5
Source File: BasicTreeUI.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
MouseInputHandler(Component source, Component destination,
                  MouseEvent event, Component focusComponent) {
    this.source = source;
    this.destination = destination;
    this.source.addMouseListener(this);
    this.source.addMouseMotionListener(this);

    SwingUtilities2.setSkipClickCount(destination,
                                      event.getClickCount() - 1);

    /* Dispatch the editing event! */
    destination.dispatchEvent(SwingUtilities.convertMouseEvent
                                  (source, event, destination));
    this.focusComponent = focusComponent;
}
 
Example 6
Source File: BasicTableUI.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
private void setDispatchComponent(MouseEvent e) {
    Component editorComponent = table.getEditorComponent();
    Point p = e.getPoint();
    Point p2 = SwingUtilities.convertPoint(table, p, editorComponent);
    dispatchComponent =
            SwingUtilities.getDeepestComponentAt(editorComponent,
                    p2.x, p2.y);
    SwingUtilities2.setSkipClickCount(dispatchComponent,
                                      e.getClickCount() - 1);
}
 
Example 7
Source File: BasicTreeUI.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
MouseInputHandler(Component source, Component destination,
                  MouseEvent event, Component focusComponent) {
    this.source = source;
    this.destination = destination;
    this.source.addMouseListener(this);
    this.source.addMouseMotionListener(this);

    SwingUtilities2.setSkipClickCount(destination,
                                      event.getClickCount() - 1);

    /* Dispatch the editing event! */
    destination.dispatchEvent(SwingUtilities.convertMouseEvent
                                  (source, event, destination));
    this.focusComponent = focusComponent;
}
 
Example 8
Source File: BasicTableUI.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
private void setDispatchComponent(MouseEvent e) {
    Component editorComponent = table.getEditorComponent();
    Point p = e.getPoint();
    Point p2 = SwingUtilities.convertPoint(table, p, editorComponent);
    dispatchComponent =
            SwingUtilities.getDeepestComponentAt(editorComponent,
                    p2.x, p2.y);
    SwingUtilities2.setSkipClickCount(dispatchComponent,
                                      e.getClickCount() - 1);
}
 
Example 9
Source File: BasicTableUI.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
private void setDispatchComponent(MouseEvent e) {
    Component editorComponent = table.getEditorComponent();
    Point p = e.getPoint();
    Point p2 = SwingUtilities.convertPoint(table, p, editorComponent);
    dispatchComponent =
            SwingUtilities.getDeepestComponentAt(editorComponent,
                    p2.x, p2.y);
    SwingUtilities2.setSkipClickCount(dispatchComponent,
                                      e.getClickCount() - 1);
}
 
Example 10
Source File: BasicTreeUI.java    From Java8CN with Apache License 2.0 5 votes vote down vote up
MouseInputHandler(Component source, Component destination,
                  MouseEvent event, Component focusComponent) {
    this.source = source;
    this.destination = destination;
    this.source.addMouseListener(this);
    this.source.addMouseMotionListener(this);

    SwingUtilities2.setSkipClickCount(destination,
                                      event.getClickCount() - 1);

    /* Dispatch the editing event! */
    destination.dispatchEvent(SwingUtilities.convertMouseEvent
                                  (source, event, destination));
    this.focusComponent = focusComponent;
}
 
Example 11
Source File: TableUIBridge.java    From darklaf with MIT License 5 votes vote down vote up
/**
 * Sets dispatch component.
 *
 * @param e the e
 */
protected void setDispatchComponent(final MouseEvent e) {
    Component editorComponent = table.getEditorComponent();
    Point p = e.getPoint();
    Point p2 = SwingUtilities.convertPoint(table, p, editorComponent);
    dispatchComponent = SwingUtilities.getDeepestComponentAt(editorComponent, p2.x, p2.y);
    SwingUtilities2.setSkipClickCount(dispatchComponent, e.getClickCount() - 1);
}
 
Example 12
Source File: BasicTableUI.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
private void setDispatchComponent(MouseEvent e) {
    Component editorComponent = table.getEditorComponent();
    Point p = e.getPoint();
    Point p2 = SwingUtilities.convertPoint(table, p, editorComponent);
    dispatchComponent =
            SwingUtilities.getDeepestComponentAt(editorComponent,
                    p2.x, p2.y);
    SwingUtilities2.setSkipClickCount(dispatchComponent,
                                      e.getClickCount() - 1);
}
 
Example 13
Source File: BasicTreeUI.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
MouseInputHandler(Component source, Component destination,
                  MouseEvent event, Component focusComponent) {
    this.source = source;
    this.destination = destination;
    this.source.addMouseListener(this);
    this.source.addMouseMotionListener(this);

    SwingUtilities2.setSkipClickCount(destination,
                                      event.getClickCount() - 1);

    /* Dispatch the editing event! */
    destination.dispatchEvent(SwingUtilities.convertMouseEvent
                                  (source, event, destination));
    this.focusComponent = focusComponent;
}
 
Example 14
Source File: BasicTreeUI.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
MouseInputHandler(Component source, Component destination,
                  MouseEvent event, Component focusComponent) {
    this.source = source;
    this.destination = destination;
    this.source.addMouseListener(this);
    this.source.addMouseMotionListener(this);

    SwingUtilities2.setSkipClickCount(destination,
                                      event.getClickCount() - 1);

    /* Dispatch the editing event! */
    destination.dispatchEvent(SwingUtilities.convertMouseEvent
                                  (source, event, destination));
    this.focusComponent = focusComponent;
}
 
Example 15
Source File: BasicTableUI.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
private void setDispatchComponent(MouseEvent e) {
    Component editorComponent = table.getEditorComponent();
    Point p = e.getPoint();
    Point p2 = SwingUtilities.convertPoint(table, p, editorComponent);
    dispatchComponent =
            SwingUtilities.getDeepestComponentAt(editorComponent,
                    p2.x, p2.y);
    SwingUtilities2.setSkipClickCount(dispatchComponent,
                                      e.getClickCount() - 1);
}
 
Example 16
Source File: BasicTableUI.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
private void setDispatchComponent(MouseEvent e) {
    Component editorComponent = table.getEditorComponent();
    Point p = e.getPoint();
    Point p2 = SwingUtilities.convertPoint(table, p, editorComponent);
    dispatchComponent =
            SwingUtilities.getDeepestComponentAt(editorComponent,
                    p2.x, p2.y);
    SwingUtilities2.setSkipClickCount(dispatchComponent,
                                      e.getClickCount() - 1);
}
 
Example 17
Source File: BasicTreeUI.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
MouseInputHandler(Component source, Component destination,
                  MouseEvent event, Component focusComponent) {
    this.source = source;
    this.destination = destination;
    this.source.addMouseListener(this);
    this.source.addMouseMotionListener(this);

    SwingUtilities2.setSkipClickCount(destination,
                                      event.getClickCount() - 1);

    /* Dispatch the editing event! */
    destination.dispatchEvent(SwingUtilities.convertMouseEvent
                                  (source, event, destination));
    this.focusComponent = focusComponent;
}
 
Example 18
Source File: BasicTableUI.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
private void setDispatchComponent(MouseEvent e) {
    Component editorComponent = table.getEditorComponent();
    Point p = e.getPoint();
    Point p2 = SwingUtilities.convertPoint(table, p, editorComponent);
    dispatchComponent =
            SwingUtilities.getDeepestComponentAt(editorComponent,
                    p2.x, p2.y);
    SwingUtilities2.setSkipClickCount(dispatchComponent,
                                      e.getClickCount() - 1);
}
 
Example 19
Source File: BasicTreeUI.java    From jdk1.8-source-analysis with Apache License 2.0 5 votes vote down vote up
MouseInputHandler(Component source, Component destination,
                  MouseEvent event, Component focusComponent) {
    this.source = source;
    this.destination = destination;
    this.source.addMouseListener(this);
    this.source.addMouseMotionListener(this);

    SwingUtilities2.setSkipClickCount(destination,
                                      event.getClickCount() - 1);

    /* Dispatch the editing event! */
    destination.dispatchEvent(SwingUtilities.convertMouseEvent
                                  (source, event, destination));
    this.focusComponent = focusComponent;
}
 
Example 20
Source File: BasicTableUI.java    From Java8CN with Apache License 2.0 5 votes vote down vote up
private void setDispatchComponent(MouseEvent e) {
    Component editorComponent = table.getEditorComponent();
    Point p = e.getPoint();
    Point p2 = SwingUtilities.convertPoint(table, p, editorComponent);
    dispatchComponent =
            SwingUtilities.getDeepestComponentAt(editorComponent,
                    p2.x, p2.y);
    SwingUtilities2.setSkipClickCount(dispatchComponent,
                                      e.getClickCount() - 1);
}