|
Server : Apache/2.2.2 (Fedora) System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686 User : apache ( 48) PHP Version : 5.2.9 Disable Function : NONE Directory : /proc/self/root/usr/libexec/webmin/bacula-backup/ |
Upload File : |
import java.awt.*;
import java.io.*;
public class FixedFrame extends Frame
{
int mw = 0, mh = 0;
public FixedFrame()
{
Dimension d = Util.tk.getScreenSize();
double rx = Math.random(), ry = Math.random();
move((int)((d.width/2)*rx), (int)((d.height/2)*ry));
}
public FixedFrame(int w, int h)
{
this();
mw = w; mh = h;
}
public boolean handleEvent(Event evt)
{
if (evt.target == this && evt.id == Event.WINDOW_DESTROY) {
dispose();
return true;
}
return super.handleEvent(evt);
}
public Dimension minimumSize()
{
if (mw != 0 && mh != 0) return new Dimension(mw, mh);
else return super.minimumSize();
}
public Dimension preferredSize()
{
return minimumSize();
}
public void setFixedSize(int w, int h)
{
mw = w; mh = h;
}
}