Exemplo n.º 1
0
 public void setAttentionPoint(LayerNI layer, Point pt) {
   // set attention point to window
   if (mForm != null) {
     Font font = null;
     if (layer != null) {
       /*
       BaseBitmap bmp = layer.getMainImage();
       if( bmp != null )
       	font = bmp.getFontCanvas().getFont();
       */
     }
     mForm.setAttentionPoint(pt.x, pt.y, font);
   }
 }