コード例 #1
0
 /**
  * Open a new view for this application containing a view of the drawing of the currently
  * activated window.
  */
 public void newView() {
   if (view() == null) {
     return;
   }
   DrawApplication window = createApplication();
   window.open(view());
   if (view().drawing().getTitle() != null) {
     window.setDrawingTitle(view().drawing().getTitle() + " (View)");
   } else {
     window.setDrawingTitle(getDefaultDrawingTitle() + " (View)");
   }
 }