本文整理汇总了Java中java.awt.Container.getLayout方法的典型用法代码示例。如果您正苦于以下问题:Java Container.getLayout方法的具体用法?Java Container.getLayout怎么用?Java Container.getLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.awt.Container
的用法示例。
在下文中一共展示了Container.getLayout方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: GridBagInfoProvider
import java.awt.Container; //导入方法依赖的package包/类
public GridBagInfoProvider(Container container, LayoutSupportManager layoutManager) {
this.container = container;
this.layoutManager = layoutManager;
LayoutManager containerLayout = container.getLayout();
if (!(containerLayout instanceof GridBagLayout)) {
throw new IllegalArgumentException();
}
try {
tempXField = GridBagConstraints.class.getDeclaredField("tempX"); // NOI18N
tempXField.setAccessible(true);
tempYField = GridBagConstraints.class.getDeclaredField("tempY"); // NOI18N
tempYField.setAccessible(true);
tempHeightField = GridBagConstraints.class.getDeclaredField("tempHeight"); // NOI18N
tempHeightField.setAccessible(true);
tempWidthField = GridBagConstraints.class.getDeclaredField("tempWidth"); // NOI18N
tempWidthField.setAccessible(true);
} catch (NoSuchFieldException nsfex) {
FormUtils.LOGGER.log(Level.INFO, nsfex.getMessage(), nsfex);
}
containerEmphColor = deriveEmphColor(container);
}
示例2: resolveToolbarConstraint
import java.awt.Container; //导入方法依赖的package包/类
/**
* Package private method which returns either BorderLayout.NORTH,
* BorderLayout.SOUTH, BorderLayout.EAST, or BorderLayout.WEST depending
* on the location of the toolbar in its parent. The toolbar might be
* in PAGE_START, PAGE_END, CENTER, or some other position, but will be
* resolved to either NORTH,SOUTH,EAST, or WEST based on where the toolbar
* actually IS, with CENTER being NORTH.
*
* This code is used to determine where the border line should be drawn
* by the custom toolbar states, and also used by NimbusIcon to determine
* whether the handle icon needs to be shifted to look correct.
*
* Toollbars are unfortunately odd in the way these things are handled,
* and so this code exists to unify the logic related to toolbars so it can
* be shared among the static files such as NimbusIcon and generated files
* such as the ToolBar state classes.
*/
static Object resolveToolbarConstraint(JToolBar toolbar) {
//NOTE: we don't worry about component orientation or PAGE_END etc
//because the BasicToolBarUI always uses an absolute position of
//NORTH/SOUTH/EAST/WEST.
if (toolbar != null) {
Container parent = toolbar.getParent();
if (parent != null) {
LayoutManager m = parent.getLayout();
if (m instanceof BorderLayout) {
BorderLayout b = (BorderLayout)m;
Object con = b.getConstraints(toolbar);
if (con == SOUTH || con == EAST || con == WEST) {
return con;
}
return NORTH;
}
}
}
return NORTH;
}
示例3: addNewComponent
import java.awt.Container; //导入方法依赖的package包/类
/**
* Add a component to the PolicyTool window
*/
void addNewComponent(Container container, JComponent component,
int index, int gridx, int gridy, int gridwidth, int gridheight,
double weightx, double weighty, int fill, Insets is) {
if (container instanceof JFrame) {
container = ((JFrame)container).getContentPane();
} else if (container instanceof JDialog) {
container = ((JDialog)container).getContentPane();
}
// add the component at the specified gridbag index
container.add(component, index);
// set the constraints
GridBagLayout gbl = (GridBagLayout)container.getLayout();
GridBagConstraints gbc = new GridBagConstraints();
gbc.gridx = gridx;
gbc.gridy = gridy;
gbc.gridwidth = gridwidth;
gbc.gridheight = gridheight;
gbc.weightx = weightx;
gbc.weighty = weighty;
gbc.fill = fill;
if (is != null) gbc.insets = is;
gbl.setConstraints(component, gbc);
}
示例4: createButtonArea
import java.awt.Container; //导入方法依赖的package包/类
/**
* Creates and returns a Container containin the buttons. The buttons
* are created by calling <code>getButtons</code>.
*/
protected Container createButtonArea() {
Container b = super.createButtonArea();
if(b != null && b.getLayout() instanceof ButtonAreaLayout) {
((ButtonAreaLayout)b.getLayout()).setCentersChildren(false);
}
return b;
}
示例5: createInterfaceComponents
import java.awt.Container; //导入方法依赖的package包/类
private void createInterfaceComponents(Container pane) {
if (!(pane.getLayout() instanceof BorderLayout)) {
LOGGER.error("Container doesn't use BorderLayout!");
throw new UnexpectedError();
}
createConsoleTextare(pane);
createMenuButtons(pane);
}
示例6: getConstraintsForCell
import java.awt.Container; //导入方法依赖的package包/类
private static SpringLayout.Constraints getConstraintsForCell(int row, int col, Container parent, int cols) {
SpringLayout layout = (SpringLayout) parent.getLayout();
Component c = parent.getComponent(row * cols + col);
return layout.getConstraints(c);
}
示例7: getConstraintsForCell
import java.awt.Container; //导入方法依赖的package包/类
private static SpringLayout.Constraints getConstraintsForCell(int row, int col,
Container parent, int cols) {
SpringLayout layout = (SpringLayout) parent.getLayout();
Component c = parent.getComponent(row * cols + col);
return layout.getConstraints(c);
}