Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/JInternalFrameWrapper.java
41161 views
1
/*
2
* Copyright (c) 2001, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*
23
*/
24
25
package sun.jvm.hotspot.ui;
26
27
import java.awt.*;
28
import java.awt.event.*;
29
import javax.swing.*;
30
import javax.swing.event.*;
31
32
public class JInternalFrameWrapper implements FrameWrapper {
33
private JInternalFrame frame;
34
private boolean hasWindowListener;
35
private ActionListener closingActionListener;
36
private ActionListener activatedActionListener;
37
38
public JInternalFrameWrapper(JInternalFrame frame) {
39
this.frame = frame;
40
}
41
42
public Component getComponent() { return frame; }
43
public Container getContentPane() { return frame.getContentPane(); }
44
public void setVisible(boolean visible) { frame.setVisible(visible); }
45
public void setSize(int x, int y) { frame.setSize(x, y); }
46
public void pack() { frame.pack(); }
47
public void show() { frame.show(); }
48
public void dispose() { frame.dispose(); }
49
public void setBackground(Color color) { frame.setBackground(color); }
50
public void setResizable(boolean resizable) { frame.setResizable(resizable); }
51
public void setClosable(boolean closable) { frame.setClosable(closable); }
52
53
public void setClosingActionListener(ActionListener l) {
54
closingActionListener = l;
55
maybeInstallWindowListener();
56
}
57
58
public void setActivatedActionListener(ActionListener l) {
59
activatedActionListener = l;
60
maybeInstallWindowListener();
61
}
62
63
public void toFront() {
64
frame.toFront();
65
try {
66
frame.setSelected(true);
67
} catch (java.beans.PropertyVetoException e) {
68
}
69
}
70
71
//----------------------------------------------------------------------
72
// Internals only below this point
73
//
74
75
private void maybeInstallWindowListener() {
76
if (!hasWindowListener) {
77
frame.addInternalFrameListener(new InternalFrameAdapter() {
78
public void internalFrameClosing(InternalFrameEvent e) {
79
if (closingActionListener != null) {
80
closingActionListener.actionPerformed(null);
81
}
82
}
83
84
public void internalFrameActivated(InternalFrameEvent e) {
85
if (activatedActionListener != null) {
86
activatedActionListener.actionPerformed(null);
87
}
88
}
89
});
90
hasWindowListener = true;
91
}
92
}
93
}
94
95