Lines Matching defs:panel

128      * The panel in which the applet is being displayed.
130 AppletViewerPanel panel;
193 add("Center", panel = new AppletViewerPanel(doc, atts));
195 panel.init();
196 appletPanels.addElement(panel);
267 panel.addAppletListener(new AppletEventListener(this));
293 panel.sendEvent(AppletPanel.APPLET_LOAD);
294 panel.sendEvent(AppletPanel.APPLET_INIT);
295 panel.sendEvent(AppletPanel.APPLET_START);
308 panel.sendEvent(AppletPanel.APPLET_DISPOSE);
310 panel.sendEvent(AppletPanel.APPLET_LOAD);
312 panel.sendEvent(AppletPanel.APPLET_INIT);
314 panel.sendEvent(AppletPanel.APPLET_START);
316 panel.sendEvent(AppletPanel.APPLET_STOP);
318 panel.sendEvent(AppletPanel.APPLET_DESTROY);
320 panel.sendEvent(AppletPanel.APPLET_QUIT);
322 panel.sendEvent(AppletPanel.APPLET_ERROR);
328 while (!panel.emptyEventQueue()) ;
428 new SocketPermission(panel.getCodeBase().getHost(), "connect");
436 p.getDocumentBase().equals(panel.getDocumentBase())) {
457 new SocketPermission(panel.getCodeBase().getHost(), "connect");
461 if (p.getDocumentBase().equals(panel.getDocumentBase())) {
587 Dimension d = panel.size();
588 Insets in = panel.insets();
589 panel.atts.put("width",
591 panel.atts.put("height",
599 panel.sendEvent(AppletPanel.APPLET_STOP);
600 panel.sendEvent(AppletPanel.APPLET_DESTROY);
601 panel.sendEvent(AppletPanel.APPLET_INIT);
602 panel.sendEvent(AppletPanel.APPLET_START);
609 panel.sendEvent(AppletPanel.APPLET_STOP);
610 panel.sendEvent(AppletPanel.APPLET_DESTROY);
611 panel.sendEvent(AppletPanel.APPLET_DISPOSE);
618 AppletPanel.flushClassLoader(panel.getClassLoaderCacheKey());
625 panel.joinAppletThread();
626 panel.release();
631 panel.createAppletThread();
632 panel.sendEvent(AppletPanel.APPLET_LOAD);
633 panel.sendEvent(AppletPanel.APPLET_INIT);
634 panel.sendEvent(AppletPanel.APPLET_START);
648 // Since panel.sendEvent only queues the event, there is a
654 panel.sendEvent(AppletPanel.APPLET_STOP);
665 panel.sendEvent(AppletPanel.APPLET_START);
675 panel.applet.toString(), file.toString()));
676 os.writeObject(panel.applet);
680 panel.sendEvent(AppletPanel.APPLET_START);
694 panel.documentURL, (Hashtable)panel.atts.clone());
703 printTag(new PrintStream(out), panel.atts);
714 String str = panel.applet.getAppletInfo();
720 String atts[][] = panel.applet.getParameterInfo();
777 panel.applet.printAll(graphics);
798 panel.sendEvent(AppletPanel.APPLET_START);
805 panel.sendEvent(AppletPanel.APPLET_STOP);
831 final AppletPanel p = panel;