Examples of reDraw()


Examples of org.eclipse.swt.widgets.Tree.redraw()

                  if (treeItem == null || treeItem.isDisposed()
                      || !sbEntry.swt_isVisible()) {
                    return;
                  }
                  Tree parent = treeItem.getParent();
                  parent.redraw(hitArea.x, hitArea.y + treeItem.getBounds().y,
                      hitArea.width, hitArea.height, true);
                  parent.update();
                }
              }
            });
View Full Code Here

Examples of org.gudy.azureus2.ui.swt.views.table.TableRowSWT.redraw()

    tvChosen.removeDataSources(datasources);
    tvChosen.processDataSourceQueue();
    for (int i = 0; i < datasources.length; i++) {
      TableRowSWT row = (TableRowSWT) tvAvail.getRow(datasources[i]);
      if (row != null) {
        row.redraw();
      }
    }
  }

  /**
 
View Full Code Here

Examples of org.openbp.cockpit.modeler.drawing.WorkspaceDrawingView.redraw()

          process.setSkinName(skin.getName());
          drawing.setProcess(process);

          currentModeler.endUndo();

          view.redraw();

          if (currentModeler.getPluginComponent().isShowing())
          {
            currentModeler.focusPlugin();
          }
View Full Code Here

Examples of org.projectforge.plugins.teamcal.dialog.TeamCalFilterDialog.redraw()

            target.add(templateChoice.getDropDownChoice());
            return;
          }
          dialog.openNew(target, newTemplateName);
          // Redraw the content:
          dialog.redraw().addContent(target);
        }
      }
    });

    final IconButtonPanel calendarButtonPanel = new AjaxIconButtonPanel(buttonGroupPanel.newChildId(), IconType.EDIT, new ResourceModel(
View Full Code Here

Examples of org.timepedia.chronoscope.client.Chart.redraw()

    XYPlot xyPlot = c.getPlot();
    xyPlot.getRangeAxis(0).setAutoZoomVisibleRange(az);

    xyPlot.getDomain().setEndpoints(domainOrigin, currentDomain);
    c.redraw();

    BufferedImage bimg = (BufferedImage) sicp.getImage();
    return bimg;
  }
}
View Full Code Here

Examples of org.timepedia.chronoscope.client.Chart.redraw()

            }
          }
        }
      }
      latch.decrement();
      chart.redraw();
    }
  }

  private static final char charCounter = 0;
View Full Code Here

Examples of org.timepedia.chronoscope.client.XYPlot.redraw()

  public void onSaveComment(ChartComment comment)
  {
    final XYPlot plot = chartPanel.getChart().getPlot();
    DomainBarMarker marker = new DomainBarMarker(comment.getDomainValue(), 1.0, comment.getTitle());
    plot.addOverlay(marker);
    plot.redraw();

    // keep reference
    overlayMapping.put(comment.getId(), marker);   
  }
View Full Code Here

Examples of org.timepedia.chronoscope.client.XYPlot.redraw()

  public void onDeleteComment(ChartComment comment)
  {
    Overlay marker = overlayMapping.get(comment.getId());
    final XYPlot plot = chartPanel.getChart().getPlot();
    plot.removeOverlay(marker);
    plot.redraw();

    resizeChartView(); // TODO: Why this?
  }

  public void onHighlightComment(ChartComment comment)
View Full Code Here

Examples of org.timepedia.chronoscope.client.plot.DefaultXYPlot.redraw()

      }
      // Set the current highlight region in the plot
      //  TODO - think about setting highlightPanel.bounds instead
      plot.setHighlight(startDomainX, endDomainX);
      plot.getDomain().setEndpoints(startDomainX, endDomainX);
      plot.redraw();
    }
    else if (hiliteBounds != null && isDragging) {
      chart.setAnimating(true);
     
      // hiliteLeftDomainX represents the domain-x value of the left edge
View Full Code Here

Examples of org.wicketstuff.menu.Menu.redraw()

              draggableDroppable2.enableDraggable(target);
              draggableAndResizable1.enableDraggable(target);
            }

            // Redraw menu
            menu2.redraw(target);
          }
        };
      }
    });
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.