Package Tipos

Examples of Tipos.MiBoton


                    Element nombre =b.getChild("nombre");
//                    System.out.println("nombre elemento: "+ nombre.getText());
                   
                    // obtengo el elemento de ese boton
                    Elemento el= CopiaTablero.elementos.Item(nombre.getText());
                    mc.Add(new MiBoton(el.nombre, j, el.nombreImagen));
                    System.out.println("A�ado boton: " + j + ", : " + el.nombre);
                    j++;   
                }
//                // almaceno los botones
                CopiaTablero.coleccion = new MiColeccion();
View Full Code Here


            // activamos parar
            if (t.parada != null) {
                t.activo = t.parada;
                t.parada.Select(true,true);
            } else
                t.activo = new MiBoton("Parar");
           
            if (!t.BarridoPorFases())
                t.CambiarTitulo(ResourceBundle.getBundle("idiomas.fich_idiomas",t.Idiomas).getString("strParar"));
        }
//        else if ((t.relacionVel==0)&&(t.tipoMovimiento==t.NOMANTENIDOSOLTAR)){
//            // Solo para el movimiento compuesto al Soltar
//            t.moviendo = true;
//        }
       
        else if (t.relacionVel!=0)//Tablero.tipoParada == Tablero.P_DOBLE
        {
            // Doble
            if (!segundoMov){
                System.out.println("Primer mov");
                // activamos la accion barrida
                segundoMov = true;
                t.activo.Select(true,true);
            }
            else {
                System.out.println("Segundo mov");
                //Barrido.dejar=false;
                segundoMov = false;
                if (t.parada != null) {
                    t.activo = t.parada;
//                                    t.parada.setOpaque(true); // probar
//                                    t.parada.setSelected(true);
//                                    t.parada.setBackground(t.colorB);
                    t.parada.Select(true,true);
                    //t.activo = new MiBoton("Parar");
                } else{
                    t.activo = new MiBoton("Parar");
                    t.CambiarTitulo(ResourceBundle.getBundle("idiomas.fich_idiomas",t.Idiomas).getString("strParar"));
                }
            }
        }
       
View Full Code Here

TOP

Related Classes of Tipos.MiBoton

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.