Searched defs:opposite (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/
H A DTimedWindowEvent.java39 public TimedWindowEvent(Window source, int id, Window opposite, long time) { argument
40 super(source, id, opposite);
44 public TimedWindowEvent(Window source, int id, Window opposite, argument
47 super(source, id, opposite, oldState, newState);
H A DCausedFocusEvent.java67 Component opposite, Cause cause) {
68 super(source, id, temporary, opposite);
66 CausedFocusEvent(Component source, int id, boolean temporary, Component opposite, Cause cause) argument
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DFocusEvent.java104 * no other Component, then the opposite Component is null.
109 transient Component opposite; field in class:FocusEvent
118 * specified temporary state and opposite <code>Component</code>.
119 * The opposite <code>Component</code> is the other
126 * or with no other <code>Component</code>, then the opposite
138 * @param opposite The other Component involved in the focus change,
148 Component opposite) {
151 this.opposite = opposite;
217 if (opposite
147 FocusEvent(Component source, int id, boolean temporary, Component opposite) argument
[all...]
H A DWindowEvent.java160 transient Window opposite; field in class:WindowEvent
186 * @param opposite The other window involved in the focus or activation
200 public WindowEvent(Window source, int id, Window opposite, argument
204 this.opposite = opposite;
211 * specified opposite <code>Window</code>. The opposite
222 * <code>Window</code>, then the opposite Window is <code>null</code>.
237 * because the opposite <code>Window</code> of other event types
239 * @param opposite Th
247 WindowEvent(Window source, int id, Window opposite) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DPlatformEventNotifier.java41 void notifyActivation(boolean activation, LWWindowPeer opposite); argument
H A DLWWindowPeer.java743 public void notifyActivation(boolean activation, LWWindowPeer opposite) { argument
744 Window oppositeWindow = (opposite == null)? null : opposite.getTarget();
1225 Window opposite = LWKeyboardFocusManagerPeer.getInstance().
1241 // Ensure the opposite is natively active and suppress sending events.
1244 focusLog.fine("the opposite is " + currentActivePeer);
1254 changeFocusedWindow(true, opposite);
1261 changeFocusedWindow(true, opposite);
1294 private void changeFocusedWindow(boolean becomesFocused, Window opposite) { argument
1319 // - when the opposite (gainin
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformResponder.java242 void handleWindowFocusEvent(boolean gained, LWWindowPeer opposite) { argument
243 eventNotifier.notifyActivation(gained, opposite);
H A DCWarningWindow.java182 public void notifyActivation(boolean activation, LWWindowPeer opposite) { argument
H A DCPlatformWindow.java929 private void deliverWindowFocusEvent(boolean gained, CPlatformWindow opposite){ argument
936 LWWindowPeer oppositePeer = (opposite == null)? null : opposite.getPeer();
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.h406 void SendFocusEvent(jint id, HWND opposite);
496 virtual MsgRouting WmActivate(UINT nState, BOOL fMinimized, HWND opposite) argument
H A Dawt_Frame.cpp907 MsgRouting AwtFrame::WmActivate(UINT nState, BOOL fMinimized, HWND opposite) argument
913 CheckActivateActualFocusedWindow(opposite))
921 if (!::IsWindow(AwtWindow::GetModalBlocker(opposite))) {
928 if (m_grabbedWindow->GetHWnd() == opposite) {
936 if (!m_grabbedWindow->IsOneOfOwnersOf((AwtWindow*)AwtComponent::GetComponent(opposite))) {
941 CheckRetainActualFocusedWindow(opposite);
949 SendWindowEvent(type, opposite);
974 // Check that the opposite window is not this frame, nor an owned window of this frame
H A Dawt_Window.cpp1158 // The behavior is slightly opposite to the WinNT (and up), where
1471 void AwtWindow::SendWindowEvent(jint id, HWND opposite, argument
1528 if (opposite != NULL) {
1529 AwtComponent *awtOpposite = AwtComponent::GetComponent(opposite);
1607 MsgRouting AwtWindow::WmActivate(UINT nState, BOOL fMinimized, HWND opposite) argument
1619 owner->CheckRetainActualFocusedWindow(opposite);
1630 SendWindowEvent(type, opposite);
H A Dawt_Component.cpp4976 void AwtComponent::SendFocusEvent(jint id, HWND opposite) argument
5034 if (opposite != NULL) {
5035 AwtComponent *awtOpposite = AwtComponent::GetComponent(opposite);

Completed in 93 milliseconds