复制并粘贴MessageDialog消息

时间:2015-06-03 20:31:34

标签: java eclipse eclipse-plugin

我正在创建一个包含一些信息的MessageDialog。

MessageDialog.openInformation(getShell(), "Success", "Change "+getNumber()+" has been created.");

我希望能够复制对话框中的数字,以便将其粘贴到其他位置。有没有办法设置MessageDialog所以我可以完成这个?

可以找到API here。我在API中找不到任何可以帮助我的东西。

3 个答案:

答案 0 :(得分:2)

不,MessageDialog使用Label来显示消息。为了允许C& P,您需要一个Text小部件。因此,您必须创建自己的org.eclipse.jface.dialogs.Dialog

子类

您可以查看InputDialog的源代码作为示例。为了使文本窗口小部件为只读,请使用SWT.READ_ONLY样式标志创建它。

答案 1 :(得分:0)

只需使用JTextArea

然后

 JTextArea tA= new JTextArea("your message.");
 tA.setEditable(true);

然后你可以添加

MessageDialog.openInformation(getShell(), "Success", "Change "+getNumber()+" has been created.");

之后,通过稍微更改它(您创建JTextArea,然后将其传递给JOptionPane作为您的消息。)

答案 2 :(得分:0)

您可以创建一个派生自MessageDialog的类,并使用以下内容覆盖createMessageArea方法:

public class MessageDialogWithCopy extends MessageDialog
{
  public MessageDialogWithCopy(Shell parentShell, String dialogTitle, Image dialogTitleImage,
                           String dialogMessage, int dialogImageType, String [] dialogButtonLabels, int defaultIndex)
  {
    super(parentShell, dialogTitle, dialogTitleImage, dialogMessage, dialogImageType,
         dialogButtonLabels, defaultIndex);
  }

  @Override
  protected Control createMessageArea(final Composite composite)
  {
    Image image = getImage();
    if (image != null)
     {
       imageLabel = new Label(composite, SWT.NULL);
       image.setBackground(imageLabel.getBackground());
       imageLabel.setImage(image);

       imageLabel.setLayoutData(new GridData(SWT.CENTER, SWT.BEGINNING, false, false));
     }

    // Use Text control for message to allow copy

    if (message != null)
     {
       Text msg = new Text(composite, SWT.READ_ONLY | SWT.MULTI);

       msg.setText(message);

       GridData data = new GridData(SWT.FILL, SWT.TOP, true, false);
       data.widthHint = convertHorizontalDLUsToPixels(IDialogConstants.MINIMUM_MESSAGE_AREA_WIDTH);

       msg.setLayoutData(data);
     }

     return composite;
   }


   public static void openInformation(Shell parent, String title,  String message)
   {
     MessageDialogWithCopy dialog
        = new MessageDialogWithCopy(parent, title, null,  message, INFORMATION,
                                    new String[] {IDialogConstants.OK_LABEL}, 0);

     dialog.open();
   }
}