Package com.zaranux.os.client.programs

Examples of com.zaranux.os.client.programs.Terminal


  };


  void defaultApps()
  {
    Terminal t = new Terminal();
    run(t);
    t.move(100, 100);

    Explorer e1 = new Explorer();
    run(e1);
    e1.move(400, 270);
   
View Full Code Here


            int keycode = ne.getKeyCode();
            if(ne.getCtrlKey() && ( keycode == 't' || keycode == 'T' ))
            {
              event.cancel();
              ne.stopPropagation();
              run(new Terminal());

            }else if(ne.getCtrlKey() &&  ( keycode == 'e' || keycode == 'E' ))
            {
              event.cancel();
              ne.stopPropagation();
View Full Code Here

TOP

Related Classes of com.zaranux.os.client.programs.Terminal

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.