在复选框上添加鼠标拖动侦听器

时间:2013-10-09 17:46:01

标签: java swing checkbox mouselistener

每次用户尝试拖动CheckBox并将其从一个面板粘贴到另一个面板时,我都需要做一些事情。 我知道Java提供了拖放API,但我并不希望将复选框从一个面板拖到另一个面板。 我想要的是给用户一个拖放的幻觉,在幕后我希望我的代码运行并执行某些操作。我该怎么做?

enter image description here

现在,当我将复选框image1从panelleft拖放到panel_right时,我希望某些代码能够在后台运行用户的拖放动作

for(ResourceListObject currentImage : imageList ){


        imageOnRepositoryCheckBox[checkBoxNumber] = new JCheckBox(currentImage.getName());
        imageOnRepositoryCheckBox[checkBoxNumber].setBounds(6, gapping+checkBoxNumber*26, 368, 23);
        imageOnRepositoryCheckBox[checkBoxNumber].setTransferHandler(new FromTransferHandler());
        if(imagesToBeImported != null){
            if(imagesToBeImported.contains(currentImage)){

                imageOnRepositoryCheckBox[checkBoxNumber].setForeground(Color.GRAY);
                imageOnRepositoryCheckBox[checkBoxNumber].setToolTipText("This image is already on the list of images to be imported and can't be selected again.");

            }
        }
            panel.add(imageOnRepositoryCheckBox[checkBoxNumber]);
            checkBoxNumber++;

    }

并且将运行的第二段代码是

 for(JCheckBox currentCheckBox : imageOnRepositoryCheckBox){
                if(currentCheckBox.isSelected()){
                    Iterator itr = imagesOfCurrentRepository.iterator();
                    while(itr.hasNext()) {
                        ResourceListObject iteratedImage = (ResourceListObject)itr.next();
                        if(iteratedImage.getName().equals(currentCheckBox.getText())){

                           boolean isAdded = imagesToBeImported.add(iteratedImage);
                           descriptionPanel.updateDescription("The image selected for importing is "+currentCheckBox.getText());

                           if(isAdded){
                               currentCheckBox.setForeground(Color.GRAY);
                               currentCheckBox.setToolTipText("This image is already on the list of images to be imported and can't be selected again.");
                           }
                        }

                    }

                    updateImagesToBeImportedPanel(panel_1, imagesToBeImported);
                }
                checkBoxNumber++;
             }

所以我希望用户将其视为拖放,但在后端我会做自己的事情。

0 个答案:

没有答案