Package me.mabra.hellonzb.listener

Examples of me.mabra.hellonzb.listener.MyWindowListener


    // initialise system tray icon
    initSystemTray(quitAction);

    // add window listener
    MyWindowListener wListener = new MyWindowListener(this);
    jframe.addWindowListener(wListener);
    wListener.setQuitAction(quitAction);

    // drag'n'drop support
    DropTarget target = new DropTarget(this.jframe, new MyDropTargetAdapter(this));
    this.jframe.setDropTarget(target);
View Full Code Here

TOP

Related Classes of me.mabra.hellonzb.listener.MyWindowListener

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.