本文整理汇总了Java中java.awt.peer.FramePeer.setState方法的典型用法代码示例。如果您正苦于以下问题:Java FramePeer.setState方法的具体用法?Java FramePeer.setState怎么用?Java FramePeer.setState使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.awt.peer.FramePeer
的用法示例。
在下文中一共展示了FramePeer.setState方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setExtendedState
import java.awt.peer.FramePeer; //导入方法依赖的package包/类
/**
* @since 1.4
*/
public void setExtendedState(int state)
{
if (getToolkit().isFrameStateSupported(state))
{
this.state = state;
FramePeer p = (FramePeer) peer;
if (p != null)
p.setState(state);
}
}
示例2: setExtendedState
import java.awt.peer.FramePeer; //导入方法依赖的package包/类
/**
* Sets the state of this frame. The state is
* represented as a bitwise mask.
* <ul>
* <li><code>NORMAL</code>
* <br>Indicates that no state bits are set.
* <li><code>ICONIFIED</code>
* <li><code>MAXIMIZED_HORIZ</code>
* <li><code>MAXIMIZED_VERT</code>
* <li><code>MAXIMIZED_BOTH</code>
* <br>Concatenates <code>MAXIMIZED_HORIZ</code>
* and <code>MAXIMIZED_VERT</code>.
* </ul>
* <p>Note that if the state is not supported on a
* given platform, neither the state nor the return
* value of the {@link #getExtendedState} method will
* be changed. The application may determine whether
* a specific state is supported via the {@link
* java.awt.Toolkit#isFrameStateSupported} method.
* <p><b>If the frame is currently visible on the
* screen</b> (the {@link #isShowing} method returns
* {@code true}), the developer should examine the
* return value of the {@link
* java.awt.event.WindowEvent#getNewState} method of
* the {@code WindowEvent} received through the
* {@link java.awt.event.WindowStateListener} to
* determine that the state has actually been
* changed.
* <p><b>If the frame is not visible on the
* screen</b>, the events may or may not be
* generated. In this case the developer may assume
* that the state changes immediately after this
* method returns. Later, when the {@code
* setVisible(true)} method is invoked, the frame
* will attempt to apply this state. Receiving any
* {@link
* java.awt.event.WindowEvent#WINDOW_STATE_CHANGED}
* events is not guaranteed in this case also.
*
* @param state a bitwise mask of frame state constants
* @since 1.4
* @see java.awt.Window#addWindowStateListener
*/
public void setExtendedState(int state) {
if ( !isFrameStateSupported( state ) ) {
return;
}
synchronized (getObjectLock()) {
this.state = state;
}
// peer.setState must be called outside of object lock
// synchronization block to avoid possible deadlock
FramePeer peer = (FramePeer)this.peer;
if (peer != null) {
peer.setState(state);
}
}
示例3: setExtendedState
import java.awt.peer.FramePeer; //导入方法依赖的package包/类
/**
* Sets the state of this frame. The state is
* represented as a bitwise mask.
* <ul>
* <li>{@code NORMAL}
* <br>Indicates that no state bits are set.
* <li>{@code ICONIFIED}
* <li>{@code MAXIMIZED_HORIZ}
* <li>{@code MAXIMIZED_VERT}
* <li>{@code MAXIMIZED_BOTH}
* <br>Concatenates {@code MAXIMIZED_HORIZ}
* and {@code MAXIMIZED_VERT}.
* </ul>
* <p>Note that if the state is not supported on a
* given platform, neither the state nor the return
* value of the {@link #getExtendedState} method will
* be changed. The application may determine whether
* a specific state is supported via the {@link
* java.awt.Toolkit#isFrameStateSupported} method.
* <p><b>If the frame is currently visible on the
* screen</b> (the {@link #isShowing} method returns
* {@code true}), the developer should examine the
* return value of the {@link
* java.awt.event.WindowEvent#getNewState} method of
* the {@code WindowEvent} received through the
* {@link java.awt.event.WindowStateListener} to
* determine that the state has actually been
* changed.
* <p><b>If the frame is not visible on the
* screen</b>, the events may or may not be
* generated. In this case the developer may assume
* that the state changes immediately after this
* method returns. Later, when the {@code
* setVisible(true)} method is invoked, the frame
* will attempt to apply this state. Receiving any
* {@link
* java.awt.event.WindowEvent#WINDOW_STATE_CHANGED}
* events is not guaranteed in this case also.
*
* @param state a bitwise mask of frame state constants
* @since 1.4
* @see java.awt.Window#addWindowStateListener
*/
public void setExtendedState(int state) {
if ( !isFrameStateSupported( state ) ) {
return;
}
synchronized (getObjectLock()) {
this.state = state;
}
// peer.setState must be called outside of object lock
// synchronization block to avoid possible deadlock
FramePeer peer = (FramePeer)this.peer;
if (peer != null) {
peer.setState(state);
}
}
示例4: setExtendedState
import java.awt.peer.FramePeer; //导入方法依赖的package包/类
/**
* Sets the state of this frame. The state is
* represented as a bitwise mask.
* <ul>
* <li><code>NORMAL</code>
* <br>Indicates that no state bits are set.
* <li><code>ICONIFIED</code>
* <li><code>MAXIMIZED_HORIZ</code>
* <li><code>MAXIMIZED_VERT</code>
* <li><code>MAXIMIZED_BOTH</code>
* <br>Concatenates <code>MAXIMIZED_HORIZ</code>
* and <code>MAXIMIZED_VERT</code>.
* </ul>
* <p>Note that if the state is not supported on a
* given platform, nothing will happen. The application
* may determine if a specific state is available via
* the <code>java.awt.Toolkit#isFrameStateSupported(int state)</code>
* method.
*
* @param state a bitwise mask of frame state constants
* @see #getExtendedState
* @see java.awt.Toolkit#isFrameStateSupported(int)
* @since 1.4
*/
public synchronized void setExtendedState(int state) {
if ( !isFrameStateSupported( state ) ) {
return;
}
this.state = state;
FramePeer peer = (FramePeer)this.peer;
if (peer != null) {
peer.setState(state);
}
}