Examples of repaint()


Examples of org.freeplane.view.swing.features.filepreview.BitmapViewerComponent.repaint()

    viewer.setPreferredSize(size);
    viewer.setSize(size);
    viewer.setLocation(BORDER_WIDTH, BORDER_WIDTH);
    add(viewer);
    viewer.revalidate();
    viewer.repaint();
  }
}
View Full Code Here

Examples of org.freeplane.view.swing.map.MainView.repaint()

  public void dragExit(final DropTargetEvent e) {
    getNode(e).setMouseArea(MouseArea.OUT);
    stopUnfoldTimer();
    final MainView mainView = getNode(e);
    mainView.setDraggedOver(NodeView.DRAGGED_OVER_NO);
    mainView.repaint();
  }

  private MainView getNode(final DropTargetEvent e) {
      final Component draggedNode = e.getDropTargetContext().getComponent();
    final MainView mainView = (MainView) draggedNode;
View Full Code Here

Examples of org.freeplane.view.swing.map.MapView.repaint()

    final MapView mapView = nodeView.getMap();
    UITools.convertPointToAncestor(textfield, textFieldCoordinate, mapView);
    textfield.getParent().remove(textfield);
    parent.revalidate();
    parent.repaint();
    mapView.repaint(textFieldCoordinate.x, textFieldCoordinate.y, textFieldSize.width, textFieldSize.height);
    textfield = null;
  }

  private final ZoomableLabel parent;
  private NodeView nodeView;
View Full Code Here

Examples of org.jallinone.variants.client.ProductVariantsPanel.repaint()

      variantsPricesPanel.removeAll();
      variantsPricesPanel.getOtherGridParams().put(ApplicationConsts.ITEM,new ItemPK(vo.getCompanyCodeSys01(),vo.getItemCodeITM01()));
      variantsPricesPanel.getOtherGridParams().put(ApplicationConsts.PRICELIST,priceVO.getPricelistCodeSal01SAL02());
      variantsPricesPanel.initGrid(vo);
      variantsPricesPanel.revalidate();
      variantsPricesPanel.repaint();

      SaveButton saveButton = new SaveButton();
      saveButton.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
          Response res = ClientUtils.getData("updateVariantsPrices",new Object[]{
View Full Code Here

Examples of org.jfree.chart.ChartPanel.repaint()

        }

        panel.setSelectionShape(null);
        this.selectionRect = null;
        this.startPoint = null;
        panel.repaint();
        panel.clearLiveMouseHandler();
    }

   
    /**
 
View Full Code Here

Examples of org.jgraph.JGraph.repaint()

            (int) marqueeBounds.getY(),
            (int) marqueeBounds.getWidth() + 1,
            (int) marqueeBounds.getHeight() + 1);
        dirty.width++;
        dirty.height++;
        graph.repaint(dirty);
      }
    } finally {
      currentPoint = null;
      startPoint = null;
      marqueeBounds = null;
View Full Code Here

Examples of org.jitterbit.integration.client.ui.interchange.entity.transformation.tree.utils.MapArea_Migration.repaint()

          } else {
            System.out.println("Can't find new_node:"+(bIsInvert?s1:s2));
          }
        }
      }
      map.repaint();
    } catch (IOException e1) {
      e1.printStackTrace();
    }
  }
View Full Code Here

Examples of org.jwildfire.create.tina.swing.flamepanel.FlamePanel.repaint()

    if (!cfg.isNoControls()) {
      centerPanel.getParent().validate();
      centerPanel.repaint();
    }
    else {
      imgPanel.repaint();
    }
  }

  @Override
  public void refreshUI() {
View Full Code Here

Examples of org.jwildfire.swing.ImagePanel.repaint()

      if (bMovie == currMovie) {
        randomBatch.get(i).preview = null;
        ImagePanel pnl = randomBatch.get(i).getImgPanel();
        if (pnl != null) {
          pnl.replaceImage(randomBatch.get(i).getPreview(prefs.getTinaRenderPreviewQuality() / 2));
          pnl.repaint();
        }
        break;
      }
    }
  }
View Full Code Here

Examples of org.locationtech.udig.project.ui.render.displayAdapter.ViewportPane.repaint()

            }
        }
       
        Rectangle bounds = animation.getValidArea();
        if( bounds==null ){
            viewport.repaint();
        }else{
            viewport.repaint(bounds.x, bounds.y, bounds.width, bounds.height);
        }
    }
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.