Package com.l2client.gui.dialogs

Examples of com.l2client.gui.dialogs.MinMaxListener


    internalFrame.pack();
    internalFrame.setLocation(0,desktopPane.getHeight()-internalFrame.getHeight());
    desktopPane.add(internalFrame);
   
    // minimize on mouse out maximize on mouse in
    MinMaxListener mima = new MinMaxListener(internalFrame, "Chatwindow", pan, desktopPane);
    pan.addMouseListener(mima);

    wireInputSwitch(new ArrayList<BaseUsable>()/*must pass empty otherwise not overriden*/, pan);

    desktopPane.repaint();
View Full Code Here

TOP

Related Classes of com.l2client.gui.dialogs.MinMaxListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.