Lines Matching defs:contentPane
82 * an optional <code>menuBar</code>, and a <code>contentPane</code>.
84 * and the <code>contentPane</code>.)
87 * Since the <code>glassPane</code> (like the <code>contentPane</code>)
94 * the <code>layeredPane</code>, <code>contentPane</code>,
99 * optional menu bar), you add the object to the <code>contentPane</code>
106 * the <code>contentPane</code> instead of on the <code>JRootPane</code>.
108 * <b>Note:</b> The default layout manager for the <code>contentPane</code> is
118 * The <code>contentPane</code> is adjusted in location and size to
120 * (The <code>JMenuBar</code> and the <code>contentPane</code> are added to the
126 * the grandparent of all components added to the <code>contentPane</code>.
151 * <LI>The <code>contentPane</code> fills the entire viewable area,
159 * change the layout manager for the <code>contentPane</code> rather than
305 protected Container contentPane;
362 * and <code>contentPane</code>.
514 * <code>contentPane</code>.
517 * @return the default <code>contentPane</code>
521 c.setName(this.getName()+".contentPane");
620 throw new IllegalComponentStateException("contentPane cannot be set to null.");
621 if(contentPane != null && contentPane.getParent() == layeredPane)
622 layeredPane.remove(contentPane);
623 contentPane = content;
625 layeredPane.add(contentPane, JLayeredPane.FRAME_CONTENT_LAYER);
634 public Container getContentPane() { return contentPane; }
636 // PENDING(klobad) Should this reparent the contentPane and MenuBar?
737 * The <code>glassPane</code> and <code>contentPane</code>
916 if(contentPane != null) {
917 rd = contentPane.getPreferredSize();
940 if(contentPane != null) {
941 rd = contentPane.getMinimumSize();
969 if(contentPane != null) {
970 rd = contentPane.getMaximumSize();
1007 if(contentPane != null) {
1008 contentPane.setBounds(0, contentY, w, h - contentY);