domingo, 11 de septiembre de 2011

Como Arrastrar y soltar objetos con un JToolbar(Barra de herramientas) en java

Hoy veremos como arrastrar cualquier objeto que este incorporado en una barra de herramientas,como lo hacemos con la ayuda de los eventos delratón,mouseReleased,mousePressed,mouseDragged y con el objetocursor,lo que se hace es extraer laposicióndel objeto y el tamaño del objeto a arrastrar y lasdimensionesdel contenedor a colocarse todo esto se lo hace por medio de un calculo simple(suma y resta), luego se crea unmétodoconstructor el cual va arecibirel objeto y los valores del objetos(lasdimensiones) y listo
métodoque recibe el objeto y lasdimensiones

public Component new_boto(JButton obj, int x, int y)
{
final JButton boto = new JButton(obj.getIcon());
boto.setOpaque(true);
boto.setHorizontalAlignment(SwingConstants.CENTER);
boto.setForeground(obj.getForeground());
boto.setBackground(obj.getBackground());
boto.setBounds(x,y,obj.getWidth(),obj.getHeight());
boto.addMouseMotionListener(new java.awt.event.MouseMotionAdapter() {
public void mouseDragged(java.awt.event.MouseEvent e) {
boto.setLocation( boto.getX() + e.getX() - boto.getWidth() / 2,
boto.getY() + e.getY() - boto.getHeight() / 2);
}
});
return(boto);
}






Si lo imaginas,lo programas



Donate Car To Charity CALIFORNIA DONATE CAR FOR TAX CREDITDONATE CARS IN MADONATE YOUR CAR SACRAMENTOHOW TO DONATE A CAR IN CALIFORNIA DONATE YOUR CAR FOR KIDS,CAR INSURANCE QUOTES COLORADO ,NUNAVUT CULTURE,DAYTON FREIGHT LINESHARDDRIVE DATA RECOVERY SERVICES,DONATE A CAR IN MARYLAND,MOTOR REPLACEMENTS,CHEAP DOMAIN REGISTRATION HOSTING,DONATING A CAR IN MARYLANDMundial Football Los Abogado de lesiones personales en Chicago,FIFA World Cup son muy buenos en chicago y nos ofrecen una Cotizacion de seguro y Cotizacion de Seguro de Vida y Cotizacion de seguro de coches,mesotelioma. Y visitar mesothelioma lawyers o tambien podriamos visitar mesothelioma symptoms y lexington law tambien many people lexington law firm and merlin olsen mesothelioma many people mesothelioma trial lawyers and atlanta mesothelioma lawyers Mesothelioma law firm, massachusetts mesothelioma attorney EEUU,Selling annuity payments for cash,Sell my structured settlement,Sell structured settlement,Structured settlement,Structured settlement companies,Sell my annuity payments lump sum,Car accident lawyer Denver,Accident injury attorneys,Sell my annuity

MESOTHELIOMA LAW FIRMDONATE CAR TO CHARITY CALIFORNIAHARDDRIVE DATA RECOVERY SERVICESDONATE A CAR IN MARYLAND DONATING A CAR IN MARYLAND,DONATE CARS ILLINOIS,CRIMINAL DEFENSE ATTORNEYS FLORIDA ,BEST CRIMINAL LAWYER IN ARIZONASTRUCTURED ANNUITY SETTLEMENT,ASBESTOS LAWYERS,NUNAVUT CULTURE,DAYTON FREIGHT LINES ,Bextra Bankruptcy Dental Plan Private JetMundial Football Mesothelioma law firm,mega life and health FIFA World Cup es un buen servicio en las distintas naciones trans union pero resulto que tenia cancer y fui a asbestos cancer y me dijeron en asbestos mesothelioma que tambien padecia de prostate cancer treatment y un daño tremendo a mi organismo fui a malignant pleural mesothelioma,asi que hice un prestamo en credit repair y otro en chase credit pero de pronto un anti spam software asi que decido un auto en rental car in costa rica me registre en Facebook en internet domain registration y tambien obtuve un domain registration,Selling annuity payments for cash,Selling annuity payments for cash,Sell my structured settlement,Sell structured settlement,Structured settlement,Structured settlement companies,Sell my annuity payments lump sum,Car accident lawyer Denver,Accident injury attorneys,Sell my annuity

2 comentarios:

  1. enque version de java esta echo todo los programas del foro porfa nesecito la informacion ya que no logre abrir ni con eclipse ni netbeans 7.1

    ResponderEliminar
  2. hola que tal, todos estan hechos en Eclipse SDK indigo 3.7 que raro q no te halla salido en eclipse, podrias copiar las clases en un nuevo proyecto hecho en netbeans o en eclipse deberia de funcionarte saludos

    ResponderEliminar